Skip to main content

Async http client/server framework (asyncio)

Reason this release was yanked:

Regression: https://github.com/aio-libs/aiohttp/issues/10617

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.14.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.14-cp313-cp313-win_amd64.whl (437.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.11.14-cp313-cp313-win32.whl (411.0 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.11.14-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.14-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.11.14-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.14-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.14-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.14-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.14-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.14-cp313-cp313-macosx_11_0_arm64.whl (453.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.11.14-cp313-cp313-macosx_10_13_x86_64.whl (461.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.11.14-cp313-cp313-macosx_10_13_universal2.whl (698.8 kB view details)

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

aiohttp-3.11.14-cp312-cp312-win_amd64.whl (438.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.11.14-cp312-cp312-win32.whl (412.2 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.11.14-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.14-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.11.14-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.14-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.14-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.14-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.14-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.14-cp312-cp312-macosx_11_0_arm64.whl (456.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.11.14-cp312-cp312-macosx_10_13_x86_64.whl (464.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.11.14-cp312-cp312-macosx_10_13_universal2.whl (705.5 kB view details)

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

aiohttp-3.11.14-cp311-cp311-win_amd64.whl (443.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.11.14-cp311-cp311-win32.whl (417.2 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.11.14-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.14-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.11.14-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.14-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.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.14-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.14-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.14-cp311-cp311-macosx_11_0_arm64.whl (456.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.11.14-cp311-cp311-macosx_10_9_x86_64.whl (469.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.11.14-cp311-cp311-macosx_10_9_universal2.whl (709.4 kB view details)

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

aiohttp-3.11.14-cp310-cp310-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.11.14-cp310-cp310-win32.whl (417.4 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.11.14-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.14-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.11.14-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.14-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.14-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.14-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.14-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.14-cp310-cp310-macosx_11_0_arm64.whl (456.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.11.14-cp310-cp310-macosx_10_9_x86_64.whl (469.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.11.14-cp310-cp310-macosx_10_9_universal2.whl (709.4 kB view details)

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

aiohttp-3.11.14-cp39-cp39-win_amd64.whl (443.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.11.14-cp39-cp39-win32.whl (417.6 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.11.14-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.14-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.11.14-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.14-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.14-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.14-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.14-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.14-cp39-cp39-macosx_11_0_arm64.whl (456.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.11.14-cp39-cp39-macosx_10_9_x86_64.whl (469.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.11.14-cp39-cp39-macosx_10_9_universal2.whl (710.3 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.14.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.14.tar.gz
Algorithm Hash digest
SHA256 d6edc538c7480fa0a3b2bdd705f8010062d74700198da55d16498e1b49549b9c
MD5 7835f28e41adf6f09467533e8de0c199
BLAKE2b-256 6c9691e93ae5fd04d428c101cdbabce6c820d284d61d2614d00518f4fa52ea24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14.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.14-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 437.0 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.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a29be28e60e5610d2437b5b2fed61d6f3dcde898b57fb048aa5079271e7f6f3
MD5 16f8339a5632d86e4806cd0ba52963c2
BLAKE2b-256 4ae02f9e77ef2d4a1dbf05f40b7edf1e1ce9be72bdbe6037cf1db1712b455e3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 411.0 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.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b9c60d1de973ca94af02053d9b5111c4fbf97158e139b14f1be68337be267be6
MD5 9301594394128e9fb8dadc8691cd58be
BLAKE2b-256 f0865c075ebeca7063a49a0da65a4e0aa9e49d741aca9a2fe9552d86906e159b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b86efe23684b58a88e530c4ab5b20145f102916bbb2d82942cafec7bd36a647
MD5 be7f2780655b7fc932be6146078881ad
BLAKE2b-256 8da7d0de521dc5ca6e8c766f8d1f373c859925f10b2a96455b16107c1e9b2d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 69bb252bfdca385ccabfd55f4cd740d421dd8c8ad438ded9637d81c228d0da49
MD5 61080d70da8ad2b5c3e13fd26c691d4e
BLAKE2b-256 2de271d12ee6268ad3bf4ee82a4f2fc7f0b943f480296cb6f61af1afe05b8d24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dc311634f6f28661a76cbc1c28ecf3b3a70a8edd67b69288ab7ca91058eb5a33
MD5 3b9ac1f9d0e90630e974d892829e9b64
BLAKE2b-256 fa3dd46ccb1f361a1275a078bfc1509bcd6dc6873e22306d10baa61bc77a0dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04eb541ce1e03edc1e3be1917a0f45ac703e913c21a940111df73a2c2db11d73
MD5 c3994b8d7819cbd810e1b46f61fd0670
BLAKE2b-256 2f2db6211aa0664b87c93fda2f2f60d5211be514a2d5b4935e1286d54b8aa28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86135c32d06927339c8c5e64f96e4eee8825d928374b9b71a3c42379d7437058
MD5 072d2a95369b67143e82e3a5f1aec161
BLAKE2b-256 565b1a4a45b1f6f95b998c49d3d1e7763a75eeff29f2f5ec7e06d94a359e7d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b41693b7388324b80f9acfabd479bd1c84f0bc7e8f17bab4ecd9675e9ff9c734
MD5 323f8645a06f4da40bbc7de5586ce5de
BLAKE2b-256 0021fc9f327a121ff0be32ed4ec3ccca65f420549bf3a646b02f8534ba5fe86d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dd9766da617855f7e85f27d2bf9a565ace04ba7c387323cd3e651ac4329db91
MD5 a87f02a077e4d3b82cdd22280215c3ea
BLAKE2b-256 e6ca6ce3da7c3295e0655b3404a309c7002099ca3619aeb04d305cedc77a0a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20412c7cc3720e47a47e63c0005f78c0c2370020f9f4770d7fc0075f397a9fb0
MD5 d0c8ab7e7fb2773eb64c8a0e92252750
BLAKE2b-256 5bea0ee73ea764b2e1f769c1caf59f299ac017b50632ceaa809960385b68e735

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad1f2fb9fe9b585ea4b436d6e998e71b50d2b087b694ab277b30e060c434e5db
MD5 d22383b366e78fdfca50410817207a3b
BLAKE2b-256 7c22913ad5b4b979ecf69300869551c210b2eb8c22ca4cd472824a1425479775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a7169ded15505f55a87f8f0812c94c9412623c744227b9e51083a72a48b68a5
MD5 17090aaefa2e92e4a927608ac6be3b5c
BLAKE2b-256 6d0861c2b6f04a4e1329c82ffda53dd0ac4b434681dc003578a1237d318be885

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 599b66582f7276ebefbaa38adf37585e636b6a7a73382eb412f7bc0fc55fb73d
MD5 c33462c4d028c2eee94e8ff3c290a190
BLAKE2b-256 b1b13a13ed54dc6bb57057cc94fec2a742f24a89885cfa84b71930826af40f5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4edcbe34e6dba0136e4cabf7568f5a434d89cc9de5d5155371acda275353d228
MD5 ffe069581c4502662e42abeebcbdc112
BLAKE2b-256 2b5c19c84bb5796be6ca4fd1432012cfd5f88ec02c8b9e0357cdecc48ff2c4fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f30fc72daf85486cdcdfc3f5e0aea9255493ef499e31582b34abadbfaafb0965
MD5 c635bfd408a72e1c02799bf405738054
BLAKE2b-256 d552097b98d50f8550883f7d360c6cd4e77668c7442038671bb4b349ced95066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8d14e274828561db91e4178f0057a915f3af1757b94c2ca283cb34cbb6e00b50
MD5 6da129e710b1f50fa960e97fef76e649
BLAKE2b-256 c58ed7f353c5aaf9f868ab382c3d3320dc6efaa639b6b30d5a686bed83196115

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.5 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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b420d076a46f41ea48e5fcccb996f517af0d406267e31e6716f480a3d50d65c
MD5 ffe858149dba1d53466e648ff2f2b260
BLAKE2b-256 3f5f1737cf6fcf0524693a4aeff8746530b65422236761e7bfdd79c6d2ce2e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 412.2 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.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 948abc8952aff63de7b2c83bfe3f211c727da3a33c3a5866a0e2cf1ee1aa950f
MD5 c1c3451ac4c8abb6d795c4b928745849
BLAKE2b-256 1c78627dba6ee9fb9439e2e29b521adb1135877a9c7b54811fec5c46e59f2fc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41cf0cefd9e7b5c646c2ef529c8335e7eafd326f444cc1cdb0c47b6bc836f9be
MD5 df7de39e2d443a3d847542bf746ffcac
BLAKE2b-256 037f145e23fe0a4c45b256f14c3268ada5497d487786334721ae8a0c818ee516

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d1dd75aa4d855c7debaf1ef830ff2dfcc33f893c7db0af2423ee761ebffd22b
MD5 bdc7db8058588281cd7512e2a1b3fa40
BLAKE2b-256 09f511b2da82f2c52365a5b760a4e944ae50a89cf5fb207024b7853615254584

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 51ba80d473eb780a329d73ac8afa44aa71dfb521693ccea1dea8b9b5c4df45ce
MD5 479282ca0d37bf53cf06faed0f395707
BLAKE2b-256 a5c2c27061c4ab93fa25f925c7ebddc10c20d992dbbc329e89d493811299dc93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e73fa341d8b308bb799cf0ab6f55fc0461d27a9fa3e4582755a3d81a6af8c09
MD5 7cc186949708ea3823fea732093801db
BLAKE2b-256 68b75216590b99b5b1f18989221c25ac9d9a14a7b0c3c4ae1ff728e906c36430

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0df3788187559c262922846087e36228b75987f3ae31dd0a1e5ee1034090d42f
MD5 c7fd6c68b64f9f58e5c4faf8da59e939
BLAKE2b-256 81f0ce936ec575e0569f91e5c8374086a6f7760926f16c3b95428fb55d6bfe91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28a3d083819741592685762d51d789e6155411277050d08066537c5edc4066e6
MD5 3c10f8285035efe8d05ec790c65b073b
BLAKE2b-256 87755bd424bcd90c7eb2f50fd752d013db4cefb447deeecfc5bc4e8e0b1c74dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc9253069158d57e27d47a8453d8a2c5a370dc461374111b5184cf2f147a3cc3
MD5 8033b88bb08c962c2130d83fc63221b8
BLAKE2b-256 cc393f65072614c62a315a951fda737e4d9e6e2703f1da0cd2f2d8f629e6092e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b512f1de1c688f88dbe1b8bb1283f7fbeb7a2b2b26e743bb2193cbadfa6f307
MD5 8afbe268f40dc19141dc87ca00f1dcb3
BLAKE2b-256 f510204b3700bb57b30b9e759d453fcfb3ad79a3eb18ece4e298aaf7917757dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8aa5c68e1e68fff7cd3142288101deb4316b51f03d50c92de6ea5ce646e6c71f
MD5 5aa35e7a24c2265bb022e476c131bba5
BLAKE2b-256 5e0d8bf0619e21c6714902c44ab53e275deb543d4d2e68ab2b7b8fe5ba267506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca9f835cdfedcb3f5947304e85b8ca3ace31eef6346d8027a97f4de5fb687534
MD5 4d84a5f85390998ed60a24a3daf4105d
BLAKE2b-256 28dbf7deb0862ebb821aa3829db20081a122ba67ffd149303f2d5202e30f20cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b2501f1b981e70932b4a552fc9b3c942991c7ae429ea117e8fba57718cdeed0
MD5 9e1f16704da228a8a707049f1bc1a416
BLAKE2b-256 7377cc06ecea173f9bee2f20c8e32e2cf4c8e03909a707183cdf95434db4993e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a8a0d127c10b8d89e69bbd3430da0f73946d839e65fec00ae48ca7916a31948
MD5 5ca89cf271fa7a54101dd9fb710df339
BLAKE2b-256 7cf0dc417d819ae26be6abcd72c28af99d285887fddbf76d4bbe46346f201870

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 602d4db80daf4497de93cb1ce00b8fc79969c0a7cf5b67bec96fa939268d806a
MD5 9385f4b932859317e9e1108fae4b7145
BLAKE2b-256 84d5dcf870e0b11f0c1e3065b7f17673485afa1ddb3d630ccd8f328bccfb459f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 70ab0f61c1a73d3e0342cedd9a7321425c27a7067bebeeacd509f96695b875fc
MD5 74b934d3b61511e079f243add6654c56
BLAKE2b-256 9ccae4acb3b41f9e176f50960f7162d656e79bed151b1f911173b2c4a6c0a9d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.6 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.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bccd2cb7aa5a3bfada72681bdb91637094d81639e116eac368f8b3874620a654
MD5 de340dcc71890347fde4567fb591f7ee
BLAKE2b-256 073caa468550b7fcd0c634d4aa8192f33ce32a179ecba08b908a0ed272194f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 417.2 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.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 92868f6512714efd4a6d6cb2bfc4903b997b36b97baea85f744229f18d12755e
MD5 8e0366536d2c8beedecdde0c9508ca6d
BLAKE2b-256 040faaaf3fc8533f65eba4572a79a935b9033e663f67f763b10db16f1c40a067

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12c5869e7ddf6b4b1f2109702b3cd7515667b437da90a5a4a50ba1354fe41881
MD5 ecd669d3bed2d84fb3d6e795f2fecdba
BLAKE2b-256 e95979d37f2badafbe229c7654dbf631b38419fcaa979a45c04941397ad7251c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 05582cb2d156ac7506e68b5eac83179faedad74522ed88f88e5861b78740dc0e
MD5 9e4be5c2117aee16697ac4cb5755b3e6
BLAKE2b-256 d9e2e244684266722d819f41d7e798ce8bbee3b72420eb684193a076ea1bf18f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 daf20d9c3b12ae0fdf15ed92235e190f8284945563c4b8ad95b2d7a31f331cd3
MD5 12258e913a14e26c9f8edb1978d049b7
BLAKE2b-256 74c48b1d41853f1ccd4cb66edc909ccc2a95b332081661f04324f7064cc200d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59a05cdc636431f7ce843c7c2f04772437dd816a5289f16440b19441be6511f1
MD5 1966bc6966d868c2330f6da4dec6f60c
BLAKE2b-256 25aca211dd149485e7c518481b08d7c13e7acd32090daf1e396aaea6b9f2eea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 321238a42ed463848f06e291c4bbfb3d15ba5a79221a82c502da3e23d7525d06
MD5 cd38520f781cc31ac58b298e3126080d
BLAKE2b-256 f54bb369e5e809bdb46a306df7b22e611dc8622ebb5313498c11f6e1cb986408

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65c75b14ee74e8eeff2886321e76188cbe938d18c85cff349d948430179ad02c
MD5 f4cbc765f95cfdafb23bc3aac54bfbd0
BLAKE2b-256 c95a455a6b8aea18ec8590f0a5642caf6d0494152de09579a4fd4f9530a4a111

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d173c0ac508a2175f7c9a115a50db5fd3e35190d96fdd1a17f9cb10a6ab09aa1
MD5 dfb68d1e00e1e2b83d7495e0b72810e8
BLAKE2b-256 516630b217d0de5584650340025a285f1d0abf2039e5a683342891e84f250da9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b0a200e85da5c966277a402736a96457b882360aa15416bf104ca81e6f5807b
MD5 4b3d3434cb769189c418a672c71fa42f
BLAKE2b-256 1519a510c51e5a383ad804e51040819898d074106dc297adf0e2c78dccc8ab47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99b8bbfc8111826aa8363442c0fc1f5751456b008737ff053570f06a151650b3
MD5 fd656fb3f843341156edb2214c873e8d
BLAKE2b-256 a8e9737aef162bf618f3b3e0f4a6ed03b5baca5e2a9ffabdab4be1b756ca1061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c68e41c4d576cd6aa6c6d2eddfb32b2acfb07ebfbb4f9da991da26633a3db1a
MD5 becca502f52cfc454a9d552940905006
BLAKE2b-256 d8fe849c000be857f60e36d2ce0a8c3d1ad34f8ea64b0ff119ecdafbc94cddfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 413fe39fd929329f697f41ad67936f379cba06fcd4c462b62e5b0f8061ee4a77
MD5 c013fcf90c2cdb0f9edcf46516b7ed17
BLAKE2b-256 27909f61d0c7b185e5a413ae7a3e206e7759ea1b208fff420b380ab205ab82b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 572def4aad0a4775af66d5a2b5923c7de0820ecaeeb7987dcbccda2a735a993f
MD5 2ea8aa9c3e48c7e20ca20a9b63ad336a
BLAKE2b-256 ea3f03c2f177536ad6ab4d3052e21fb67ce430d0257b3c61a0ef6b91b7b12cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec6cd1954ca2bbf0970f531a628da1b1338f594bf5da7e361e19ba163ecc4f3b
MD5 fb73fa25862b8488a1851a3c869e5359
BLAKE2b-256 2feba0e118c54eb9f897e13e7a357b2ef9b8d0ca438060a9db8ad4af4561aab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f296d637a50bb15fb6a229fbb0eb053080e703b53dbfe55b1e4bb1c5ed25d325
MD5 57d400532daba0423d0394b27ae8147c
BLAKE2b-256 b3f55e2ae82822b1781f828bb9285fb585a4ac028cfd329788caf073bde45706

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.9 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.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5409a59d5057f2386bb8b8f8bbcfb6e15505cedd8b2445db510563b5d7ea1186
MD5 93593e5caf854bae352ba542affc7601
BLAKE2b-256 91f7533384607d35a8c7a9dbe4497cee7899aa7c3b29c14cd83373c0f415bdcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 417.4 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.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a0d2c04a623ab83963576548ce098baf711a18e2c32c542b62322a0b4584b990
MD5 d3360493baa25affc019a5b6237ea4da
BLAKE2b-256 6f086b061de352a614461a4a19e60a87e578fe28e1d3fca38315484a17ff484f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d0b46abee5b5737cb479cc9139b29f010a37b1875ee56d142aefc10686a390b
MD5 672cc19b6f2ddd340b8a02e6afb732bd
BLAKE2b-256 3fe3bb454add253f939c7331794b2619c156ef5a108403000221ff2dc01f9072

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4848ae31ad44330b30f16c71e4f586cd5402a846b11264c412de99fa768f00f3
MD5 0818c0888159a2b23dc66b9622d7f97d
BLAKE2b-256 020b5fcad20243799e9a3f326140d3d767884449e293fb5d8fca10f83001787c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7e7abe865504f41b10777ac162c727af14e9f4db9262e3ed8254179053f63e6d
MD5 5cffe8b71c212b78cd6f1afb692c489b
BLAKE2b-256 da4b77b170ae7eb9859d80b9648a7439991425663f66422f3ef0b27f29bde9d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9faafa74dbb906b2b6f3eb9942352e9e9db8d583ffed4be618a89bd71a4e914
MD5 9d37c38bc0d27b9abf3bd615a6502e63
BLAKE2b-256 087193e11c4ef9a72f5f26d7e9f92294707437fae8de49c2019ed713dea7625b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e2e8ef37d4bc110917d038807ee3af82700a93ab2ba5687afae5271b8bc50ff
MD5 e0358cab79683a0dc1bb3b951a227055
BLAKE2b-256 aa3e60af2d40f78612062788c2bf6be38738f9525750d3a7678d31f950047536

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b05774864c87210c531b48dfeb2f7659407c2dda8643104fb4ae5e2c311d12d9
MD5 95b58b046a77eb436e71b649a05dedbe
BLAKE2b-256 6a7c3f82c2fdcca53cc8732fa342abbe0372bbbd8af3162d6629ac0a7dc8b281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b59d096b5537ec7c85954cb97d821aae35cfccce3357a2cafe85660cc6295628
MD5 4af384662e595c27069d41975d1d4f54
BLAKE2b-256 c721f3230a9f78bb4a4c4462040bf8425ebb673e3773dd17fd9d06d1af43a955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7571f99525c76a6280f5fe8e194eeb8cb4da55586c3c61c59c33a33f10cfce7
MD5 75289e88c48725973fd2bf757b4e1500
BLAKE2b-256 8b92b6bd4b89304eee827cf07a40b98af171342cddfa1f8b02b55cd0485b9d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8b2df9feac55043759aa89f722a967d977d80f8b5865a4153fc41c93b957efc
MD5 c5eb92dd2f6c3e00dd86e1f6d1e61b2b
BLAKE2b-256 7ff4e50ef78483485bcdae9cf29c9144af2b42457e18175a6ace7c560d89325e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4e7c7ec4146a94a307ca4f112802a8e26d969018fabed526efc340d21d3e7d0
MD5 4f1d15a342e3bd76aa78e7bec860a615
BLAKE2b-256 68a6c96cd5452af267fdda1cf46accc356d1295fb14da4a7a0e081567ea297af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b42dbd097abb44b3f1156b4bf978ec5853840802d6eee2784857be11ee82c6a0
MD5 5e018aa877ce282f900d1f86d3a49ae7
BLAKE2b-256 8e12e4fd2616950a39425b739476c3eccc820061ea5f892815566d27282e7825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c32593ead1a8c6aabd58f9d7ee706e48beac796bb0cb71d6b60f2c1056f0a65f
MD5 21cedfec66358956c4c3ddcb4a183703
BLAKE2b-256 46023a4f05e966c2edeace5103f40d296ba0159cee633ab0f162fbea579653e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e365034c5cf6cf74f57420b57682ea79e19eb29033399dd3f40de4d0171998fa
MD5 99377e99dec3308a1495d5cd3029b3c5
BLAKE2b-256 807d195965f183a724d0470560b097543e96dc4a672fc2714012d1be87d6775c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e2bc827c01f75803de77b134afdbf74fa74b62970eafdf190f3244931d7a5c0d
MD5 edf846f934f36469fc9c68c2c5ebea6d
BLAKE2b-256 6ae1f1ccc6cf29a31fb33e4eaa07a9d8e4dff00e23b32423b679cdb89536fe71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.1 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.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 22a8107896877212130c58f74e64b77f7007cb03cea8698be317272643602d45
MD5 0daf9ebc0652089176bbbfb285b29608
BLAKE2b-256 583e99092de6c652874fcdf296c411a6df3642111950d834dc5e3701429fa5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 417.6 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.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 95d7787f2bcbf7cb46823036a8d64ccfbc2ffc7d52016b4044d901abceeba3db
MD5 e24fed5dd2e9baf03e33eafe10317b00
BLAKE2b-256 ba3e428f510526f1cf4cd45abc6abfae6c9929342fb9c783902c28ff4eb0a870

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a40087b82f83bd671cbeb5f582c233d196e9653220404a798798bfc0ee189fff
MD5 e52ffe4890c9300bce31a40fb7139dff
BLAKE2b-256 b72d0f06db6633c8dc23d8669da3debda9818449c7eef64b1d7a52bf4de3bcbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ced66c5c6ad5bcaf9be54560398654779ec1c3695f1a9cf0ae5e3606694a000a
MD5 128d2c0d6d79952ce99fe4c373f7876c
BLAKE2b-256 d2ce27920fe6e1bf8b87f96ba20aa41d8a4d3417f3f93890c2989868f3c3973c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fe846f0a98aa9913c2852b630cd39b4098f296e0907dd05f6c7b30d911afa4c3
MD5 c052f9a5f1ec3c7c30b25c7cac1ea78c
BLAKE2b-256 17a0f46cafcb51d21bd928b1bdab08c517b9cb5ea067cc5379ee277d0b8255ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f2dadece8b85596ac3ab1ec04b00694bdd62abc31e5618f524648d18d9dd7fa
MD5 891b0fc5af85a918b6ce752bd7caaf93
BLAKE2b-256 1cc1cd540107bb5b2c960028717b8b2265f4bdade016391ceb238666d0e91365

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.14-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.14-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87f0e003fb4dd5810c7fbf47a1239eaa34cd929ef160e0a54c570883125c4831
MD5 31fd8b9f1bf56777988382f250bc76c6
BLAKE2b-256 4b9c52fd48bd0f8c8643af02e9b1ce8f2a74c2490601de775a2a70faa2eced7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e906da0f2bcbf9b26cc2b144929e88cb3bf943dd1942b4e5af066056875c7618
MD5 b9bc4ed223ba38ea1606f059dd9339a8
BLAKE2b-256 ee9e5528ca4d8b41bc28403fce7047b1121aa2b611bf9616aa9eeb9a69923f5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a8b0321e40a833e381d127be993b7349d1564b756910b28b5f6588a159afef3
MD5 387e0de9ecc885f2f0a9d6758d427e6d
BLAKE2b-256 218c3da36639320781833559718605031b8aca381ee0e66e1f962b7732cfe0ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 997b57e38aa7dc6caab843c5e042ab557bc83a2f91b7bd302e3c3aebbb9042a1
MD5 6fbb818e0d93a629786036de58cfd60b
BLAKE2b-256 fa2da05edc67d1a4573521a6b6ae61e9ad89a7c06813c237ea9d37da194251f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 781c8bd423dcc4641298c8c5a2a125c8b1c31e11f828e8d35c1d3a722af4c15a
MD5 4027997a0e0f32c42054a337d6dd2e68
BLAKE2b-256 ad2cb3d1104832329bfeac3034ce189245c4e2372e3d31fe9f1c609a79b60ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 749f1eb10e51dbbcdba9df2ef457ec060554842eea4d23874a3e26495f9e87b1
MD5 ef34da1c8b4e8e2f5ead4a0f5ec43bd7
BLAKE2b-256 6041b0cc33b757afc93356b9a37c1ea53a0c066117a4d80d1fa957afdd2efa51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8778620396e554b758b59773ab29c03b55047841d8894c5e335f12bfc45ebd28
MD5 e42d3d56b077e9b7a9d6df7375f6db60
BLAKE2b-256 9d67c3aa4c7ad257556bd329fb7be0849fcd116f4ca4c0bbc676640030ac7b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d3986112e34eaa36e280dc8286b9dd4cc1a5bcf328a7f147453e188f6fe148f
MD5 4affc930b28ac36d14c900e70cd5b486
BLAKE2b-256 8180d5ae44cbbbcba647b01f45183aeabecc3270b306a8381d027705e1306a55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 92007c89a8cb7be35befa2732b0b32bf3a394c1b22ef2dff0ef12537d98a7bda
MD5 4f26f76b16fe473822e74517b90ab7c4
BLAKE2b-256 e1c34348829df228a27ad962492ab46c7bf70a01373f37af0b6ef65f83564ca5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.14-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 14fc03508359334edc76d35b2821832f092c8f092e4b356e74e38419dfe7b6de
MD5 b6d1d4310fa566aecb4d71543f9b8ae2
BLAKE2b-256 62bd5da3e2bd319f7d2e4035acbe4aaf44bcdf8e1960e2f45e99b10e88f26232

See more details on using hashes here.

Provenance

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