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

Uploaded Source

Built Distributions

aiohttp-3.12.14-cp313-cp313-win_amd64.whl (448.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.14-cp313-cp313-win32.whl (421.7 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.12.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.12.14-cp313-cp313-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

aiohttp-3.12.14-cp313-cp313-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.14-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.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.12.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.12.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.12.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.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.12.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.12.14-cp313-cp313-macosx_11_0_arm64.whl (465.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.14-cp313-cp313-macosx_10_13_x86_64.whl (473.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.14-cp313-cp313-macosx_10_13_universal2.whl (695.5 kB view details)

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

aiohttp-3.12.14-cp312-cp312-win_amd64.whl (449.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.14-cp312-cp312-win32.whl (422.6 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.12.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.12.14-cp312-cp312-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.14-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.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.12.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.12.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.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.12.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.12.14-cp312-cp312-macosx_11_0_arm64.whl (468.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.14-cp312-cp312-macosx_10_13_x86_64.whl (475.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.14-cp312-cp312-macosx_10_13_universal2.whl (701.1 kB view details)

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

aiohttp-3.12.14-cp311-cp311-win_amd64.whl (452.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.14-cp311-cp311-win32.whl (427.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

aiohttp-3.12.14-cp311-cp311-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.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.12.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.12.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.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.12.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

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

aiohttp-3.12.14-cp311-cp311-macosx_11_0_arm64.whl (470.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.14-cp311-cp311-macosx_10_9_x86_64.whl (482.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.14-cp311-cp311-macosx_10_9_universal2.whl (710.0 kB view details)

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

aiohttp-3.12.14-cp310-cp310-win_amd64.whl (451.3 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.14-cp310-cp310-win32.whl (428.3 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.12.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.12.14-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.12.14-cp310-cp310-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

aiohttp-3.12.14-cp310-cp310-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.14-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.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.12.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.12.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.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.12.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.12.14-cp310-cp310-macosx_11_0_arm64.whl (466.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.14-cp310-cp310-macosx_10_9_x86_64.whl (479.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.14-cp310-cp310-macosx_10_9_universal2.whl (702.6 kB view details)

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

aiohttp-3.12.14-cp39-cp39-win_amd64.whl (452.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.14-cp39-cp39-win32.whl (429.2 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.12.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.12.14-cp39-cp39-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.12.14-cp39-cp39-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

aiohttp-3.12.14-cp39-cp39-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aiohttp-3.12.14-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.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.12.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.12.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.12.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.12.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.12.14-cp39-cp39-macosx_11_0_arm64.whl (467.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.14-cp39-cp39-macosx_10_9_x86_64.whl (480.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.14-cp39-cp39-macosx_10_9_universal2.whl (705.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.14.tar.gz
Algorithm Hash digest
SHA256 6e06e120e34d93100de448fd941522e11dafa78ef1a893c179901b7d66aa29f2
MD5 4ed66dcec63108ae3a7c01d0415b4dd9
BLAKE2b-256 e60be39ad954107ebf213a2325038a3e7a506be3d98e1435e1f82086eec4cde2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 448.1 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.12.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f8aad695e12edc9d571f878c62bedc91adf30c760c8632f09663e5f564f4baa
MD5 ba40fba016d001a7619594574ddbb01e
BLAKE2b-256 665f8427618903343402fdafe2850738f735fd1d9409d2a8f9bcaae5e630d3ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 421.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.12.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3c99ab19c7bf375c4ae3debd91ca5d394b98b6089a03231d4c580ef3c2ae4c5
MD5 ad8a99d055f74b79618658c52187ff91
BLAKE2b-256 ed91228eeddb008ecbe3ffa6c77b440597fdf640307162f0c6488e72c5a2d112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f88d3704c8b3d598a08ad17d06006cb1ca52a1182291f04979e305c8be6c9758
MD5 aed592e3a8cd6ed28421e7e1c80f70f7
BLAKE2b-256 957853b081980f50b5cf874359bde707a6eacd6c4be3f5f5c93937e48c9d0025

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f68d3067eecb64c5e9bab4a26aa11bd676f4c70eea9ef6536b0a4e490639add3
MD5 a838590190209fe751fe4ad6316c0cdf
BLAKE2b-256 8c17884938dffaa4048302985483f77dfce5ac18339aad9b04ad4aaa5e32b028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7442488b0039257a3bdbc55f7209587911f143fca11df9869578db6c26feeeb8
MD5 4a21f665974791f037e0e9081b3b003e
BLAKE2b-256 22e581682a6f20dd1b18ce3d747de8eba11cbef9b270f567426ff7880b096b48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e4c972b0bdaac167c1e53e16a16101b17c6d0ed7eac178e653a07b9f7fad7151
MD5 005fae5c04952b7927aa4c9a20001777
BLAKE2b-256 0a19929a3eb8c35b7f9f076a462eaa9830b32c7f27d3395397665caa5e975614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b3b15acee5c17e8848d90a4ebc27853f37077ba6aec4d8cb4dbbea56d156933
MD5 603b264b49752bd02a6ded3d93327721
BLAKE2b-256 d8b31e6c960520bda094c48b56de29a3d978254637ace7168dd97ddc273d0d6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ab5b38a6a39781d77713ad930cb5e7feea6f253de656a5f9f281a8f5931b086
MD5 dd8e7c4c89efbcab969387fce2744b42
BLAKE2b-256 83bae0cc8e0f0d9ce0904e3cf2d6fa41904e379e718a013c721b781d53dcbcca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdea089caf6d5cde975084a884c72d901e36ef9c2fd972c9f51efbbc64e96fbd
MD5 dcc3a5feb0389c0eb59de98bf0cd547f
BLAKE2b-256 30a881e237f89a32029f9b4a805af6dffc378f8459c7b9942712c809ff9e76e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0a2cf66e32a2563bb0766eb24eae7e9a269ac0dc48db0aae90b575dc9583026
MD5 a53c5de898d9e96d77cfd5af309ca53e
BLAKE2b-256 a53a18991048ffc1407ca51efb49ba8bcc1645961f97f563a6c480cdf0286310

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b8ce87963f0035c6834b28f061df90cf525ff7c9b6283a8ac23acee6502afd4
MD5 0248637502e13bf4c5d2217b74b441e3
BLAKE2b-256 b30693669694dc5fdabdc01338791e70452d60ce21ea0946a878715688d5a191

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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.12.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d8c35632575653f297dcbc9546305b2c1133391089ab925a6a3706dfa775ccab
MD5 79ed54d27b8e232c702aaabfc37a98b7
BLAKE2b-256 d8b101e542aed560a968f692ab4fc4323286e8bc4daae83348cd63588e4f33e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 077b4488411a9724cecc436cbc8c133e0d61e694995b8de51aaf351c7578949d
MD5 865650a73706dfe89a318291fe2b9d28
BLAKE2b-256 dedd525ed198a0bb674a323e93e4d928443a680860802c44fa7922d39436b48b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a7865f27db67d49e81d463da64a59365ebd6b826e0e4847aa111056dcb9dc88
MD5 ed081c95d7bb271d65b3434b04cdbad7
BLAKE2b-256 8ce3bd67a11b0fe7fc12c6030473afd9e44223d456f500f7cf526dbaa259ae46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48e43e075c6a438937c4de48ec30fa8ad8e6dfef122a038847456bfe7b947b63
MD5 263751ec77ae251ebe43896a988859fa
BLAKE2b-256 dfe24dd00180be551a6e7ee979c20fc7c32727f4889ee3fd5b0586e0d47f30e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3d62ac3d506cef54b355bd34c2a7c230eb693880001dfcda0bf88b38f5d7af7e
MD5 553a1d32e29da7b0044a1f0e27bfca8b
BLAKE2b-256 8de7f73206afa33100804f790b71092888f47df65fd9a4cd0e6800d7c6826441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3143a7893d94dc82bc409f7308bc10d60285a3cd831a68faf1aa0836c5c3c767
MD5 0de70ac08fd5917835bc561cdc857bf8
BLAKE2b-256 0648e0d2fa8ac778008071e7b79b93ab31ef14ab88804d7ba71b5c964a7c844e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 449.3 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.12.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3b66e1a182879f579b105a80d5c4bd448b91a57e8933564bf41665064796a338
MD5 deead62e1ec4488d01a9508bd187c347
BLAKE2b-256 98d57ac2464aebd2eecac38dbe96148c9eb487679c512449ba5215d233755582

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 422.6 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.12.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 15f5f4792c9c999a31d8decf444e79fcfd98497bf98e94284bf390a7bb8c1729
MD5 5d828a308021f66e1ab1c3402d2a818a
BLAKE2b-256 06af28e24574801fcf1657945347ee10df3892311c2829b41232be6089e461e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2785b112346e435dd3a1a67f67713a3fe692d288542f1347ad255683f066d8e0
MD5 3d6d96e530d024c2ab14822f4c66947e
BLAKE2b-256 22325501ab525a47ba23c20613e568174d6c63aa09e2caa22cded5c6ea8e3ada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 791504763f25e8f9f251e4688195e8b455f8820274320204f7eafc467e609425
MD5 7c22b3edaa210873787b2c3bb249af9e
BLAKE2b-256 49e8ca01c5ccfeaafb026d85fa4f43ceb23eb80ea9c1385688db0ef322c751e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88167bd9ab69bb46cee91bd9761db6dfd45b6e76a0438c7e884c3f8160ff21eb
MD5 162695dad03e3c92e76ee1dbf6f9001b
BLAKE2b-256 0753da018f4013a7a179017b9a274b46b9a12cbeb387570f116964f498a6f211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04c11907492f416dad9885d503fbfc5dcb6768d90cad8639a771922d584609d3
MD5 db7106a78f9543fd3d557e3d165176dc
BLAKE2b-256 ba0284406e0ad1acb0fb61fd617651ab6de760b2d6a31700904bc0b33bd0894d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39b94e50959aa07844c7fe2206b9f75d63cc3ad1c648aaa755aa257f6f2498a9
MD5 4c8f61b0fd684eba37039fd039700f55
BLAKE2b-256 b5669c7c31037a063eec13ecf1976185c65d1394ded4a5120dd5965e3473cb21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa8ec5c15ab80e5501a26719eb48a55f3c567da45c6ea5bb78c52c036b2655c7
MD5 49c5397a489b431d7f01b48fccc05086
BLAKE2b-256 ff4b08b83ea02595a582447aeb0c1986792d0de35fe7a22fb2125d65091cbaf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9888e60c2c54eaf56704b17feb558c7ed6b7439bca1e07d4818ab878f2083660
MD5 95545c4079bd56a99ed77e6d216ca3a1
BLAKE2b-256 73122530fb2b08773f717ab2d249ca7a982ac66e32187c62d49e2c86c9bba9b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0a568abe1b15ce69d4cc37e23020720423f0728e3cb1f9bcd3f53420ec3bfe7
MD5 a91c79c19e424a0590864f759cb0c910
BLAKE2b-256 26d91d3744dc588fafb50ff8a6226d58f484a2242b5dd93d8038882f55474d41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c748b3f8b14c77720132b2510a7d9907a03c20ba80f469e58d5dfd90c079a1c
MD5 96d37ddda7dc58efbe3feebc8fc51a66
BLAKE2b-256 bb9418457f043399e1ec0e59ad8674c0372f925363059c276a45a1459e17f423

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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.12.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ca39e433630e9a16281125ef57ece6817afd1d54c9f1bf32e901f38f16035869
MD5 353a60b5f87ca629f7cba2292c771f0c
BLAKE2b-256 5344af6879ca0eff7a16b1b650b7ea4a827301737a350a464239e58aa7c387ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27f2e373276e4755691a963e5d11756d093e346119f0627c2d6518208483fb6d
MD5 2aa9b38ab922c5d88c40fb725d966d3d
BLAKE2b-256 23e5d11db8c23d8923d3484a27468a40737d50f05b05eebbb6288bafcb467356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3006a1dc579b9156de01e7916d38c63dc1ea0679b14627a37edf6151bc530088
MD5 b680f43c2e391cf0e7ef186a38d8057f
BLAKE2b-256 b9348d6015a729f6571341a311061b578e8b8072ea3656b3d72329fa0faa2c7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56809fed4c8a830b5cae18454b7464e1529dbf66f71c4772e3cfa9cbec0a1ff
MD5 30d74deb2953cb7518ad9f7c55b696c5
BLAKE2b-256 29e85202890c9e81a4ec2c2808dd90ffe024952e72c061729e1d49917677952f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0400f0ca9bb3e0b02f6466421f253797f6384e9845820c8b05e976398ac1d81a
MD5 cbfa7b71421c05474d15ef48d9c6a836
BLAKE2b-256 0ab8a5e8e583e6c8c1056f4b012b50a03c77a669c2e9bf012b7cf33d6bc4b141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a0ecbb32fc3e69bc25efcda7d28d38e987d007096cbbeed04f14a6662d0eee22
MD5 e52e2a9a923fed83fcd3e85714ffe09a
BLAKE2b-256 c30d29026524e9336e33d9767a1e593ae2b24c2b8b09af7c2bd8193762f76b3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 452.3 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.12.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b8a69acaf06b17e9c54151a6c956339cf46db4ff72b3ac28516d0f7068f4ced
MD5 525212ce67b70640ddec3a19dd2605b8
BLAKE2b-256 0624a6bf915c85b7a5b07beba3d42b3282936b51e4578b64a51e8e875643c276

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp311-cp311-win32.whl
  • Upload date:
  • Size: 427.9 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.12.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a289f50bf1bd5be227376c067927f78079a7bdeccf8daa6a9e65c38bae14324b
MD5 8ac89c1d0ff3eba9fef649e4797d797d
BLAKE2b-256 51e17f1c77515d369b7419c5b501196526dad3e72800946c0099594c1f0c20b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c779e5ebbf0e2e15334ea404fcce54009dc069210164a244d2eac8352a44b28
MD5 b7e424daa05c98614ac35fbd34a93aa5
BLAKE2b-256 7ee539635a9e06eed1d73671bd4079a3caf9cf09a49df08490686f45a710b80e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 16260e8e03744a6fe3fcb05259eeab8e08342c4c33decf96a9dad9f1187275d0
MD5 adef3a7180b2bb1b69ad6a893352e035
BLAKE2b-256 4f45f639482530b1396c365f23c5e3b1ae51c9bc02ba2b2248ca0c855a730059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a194ace7bc43ce765338ca2dfb5661489317db216ea7ea700b0332878b392cab
MD5 7f75bc84063d43759f7a4ce8be28d432
BLAKE2b-256 0886b21b682e33d5ca317ef96bd21294984f72379454e689d7da584df1512a19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76ae6f1dd041f85065d9df77c6bc9c9703da9b5c018479d20262acc3df97d419
MD5 9e42ff80c46c67953a57c7e29f780cf5
BLAKE2b-256 2f0a46599d7d19b64f4d0fe1b57bdf96a9a40b5c125f0ae0d8899bc22e91fdce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4f1205f97de92c37dd71cf2d5bcfb65fdaed3c255d246172cce729a8d849b4da
MD5 bb57cd414ed760cb96ebdb7d22cb2667
BLAKE2b-256 7b2446dc0380146f33e2e4aa088b92374b598f5bdcde1718c77e8d1a0094f1a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 798204af1180885651b77bf03adc903743a86a39c7392c472891649610844635
MD5 5a398e7a3a58f5173ea7818b87916c56
BLAKE2b-256 6b4d35ebc170b1856dd020c92376dbfe4297217625ef4004d56587024dc2289c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad5fdf6af93ec6c99bf800eba3af9a43d8bfd66dce920ac905c817ef4a712afe
MD5 706250f112097c2a1a839fba8a0a4fcc
BLAKE2b-256 e030aadcdf71b510a718e3d98a7bfeaea2396ac847f218b7e8edb241b09bd99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4699979560728b168d5ab63c668a093c9570af2c7a78ea24ca5212c6cdc2b641
MD5 6468153d71cba910d2764dec7fce7b42
BLAKE2b-256 fab226f4524184e0f7ba46671c512d4b03022633bcf7d32fa0c6f1ef49d55800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 565e70d03e924333004ed101599902bba09ebb14843c8ea39d657f037115201b
MD5 61644b68aa7c5843ce6c6410c2f62b91
BLAKE2b-256 1810431cd3d089de700756a56aa896faf3ea82bee39d22f89db7ddc957580308

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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.12.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1d6f607ce2e1a93315414e3d448b831238f1874b9968e1195b06efaa5c87e245
MD5 ef0d4b34a8fdd449d4d65680c083421c
BLAKE2b-256 4ac8ce6c7a34d9c589f007cfe064da2d943b3dee5aabc64eaecd21faf927ab11

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b413c12f14c1149f0ffd890f4141a7471ba4b41234fe4fd4a0ff82b1dc299dbb
MD5 a36904122aff2eb618ed34b17368d3b8
BLAKE2b-256 38782c1089f6adca90c3dd74915bafed6d6d8a87df5e3da74200f6b3a8b8906f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ac76627c0b7ee0e80e871bde0d376a057916cb008a8f3ffc889570a838f5cc7
MD5 33a0d0d865392bd69947e79c1b520f2a
BLAKE2b-256 677f7ccf11756ae498fdedc3d689a0c36ace8fc82f9d52d3517da24adf6e9a74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 040afa180ea514495aaff7ad34ec3d27826eaa5d19812730fe9e529b04bb2179
MD5 4fcc6a7f5067a5714bb55a6549ec9a0d
BLAKE2b-256 d60f2a580fcdd113fe2197a3b9df30230c7e85bb10bf56f7915457c60e9addd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8283f42181ff6ccbcf25acaae4e8ab2ff7e92b3ca4a4ced73b2c12d8cd971393
MD5 af5e71177769d82ba9df985e189c66cf
BLAKE2b-256 96bd4f204cf1e282041f7b7e8155f846583b19149e0872752711d0da5e9cc023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f4552ff7b18bcec18b60a90c6982049cdb9dac1dba48cf00b97934a06ce2e597
MD5 7dd369b9c601a050fc5f86bc3ec263f5
BLAKE2b-256 53e18029b29316971c5fa89cec170274582619a01b3d82dd1036872acc9bc7e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 451.3 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.12.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf4f05b8cea571e2ccc3ca744e35ead24992d90a72ca2cf7ab7a2efbac6716db
MD5 cdbddd30c17fb20b47d6c954ff2c3d52
BLAKE2b-256 a2c48aec4ccf1b822ec78e7982bd5cf971113ecce5f773f04039c76a083116fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp310-cp310-win32.whl
  • Upload date:
  • Size: 428.3 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.12.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee580cb7c00bd857b3039ebca03c4448e84700dc1322f860cf7a500a6f62630c
MD5 e5ad26452e2d9a3bac11dbbdfcce8c8e
BLAKE2b-256 813c72477a1d34edb8ab8ce8013086a41526d48b64f77e381c8908d24e1c18f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbad68a2af4877cc103cd94af9160e45676fc6f0c14abb88e6e092b945c2c8e3
MD5 ade08b1f231a558fd44562862c76998e
BLAKE2b-256 e3b3751124b8ceb0831c17960d06ee31a4732cb4a6a006fdbfa1153d07c52226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 dec9cde5b5a24171e0b0a4ca064b1414950904053fb77c707efd876a2da525d8
MD5 d937c4a8bb59fa2eac3081a10f1e056a
BLAKE2b-256 083afa73bfc6e21407ea57f7906a816f0dc73663d9549da703be05dbd76d2dc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e387668724f4d734e865c1776d841ed75b300ee61059aca0b05bce67061dcacc
MD5 976434d8d587084cea6e6a9cc553b485
BLAKE2b-256 48ae2f66edaa8bd6db2a4cba0386881eb92002cdc70834e2a93d1d5607132c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 224d0da41355b942b43ad08101b1b41ce633a654128ee07e36d75133443adcda
MD5 b8772aa0ae18f008abbcf1d853ceb588
BLAKE2b-256 2289205d3ad30865c32bc472ac13f94374210745b05bd0f2856996cb34d53396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dcd1172cd6794884c33e504d3da3c35648b8be9bfa946942d353b939d5f1288
MD5 de1d51ae0b2f7e47fff8d7c59a33969c
BLAKE2b-256 7960ec90782084090c4a6b459790cfd8d17be2c5662c9c4b2d21408b2f2dc36c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02fcd3f69051467bbaa7f84d7ec3267478c7df18d68b2e28279116e29d18d4f3
MD5 b0981a9c98fcd88ad35ff1cfdc4a9a76
BLAKE2b-256 715c29c6dfb49323bcdb0239bf3fc97ffcf0eaf86d3a60426a3287ec75d67721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abe53c3812b2899889a7fca763cdfaeee725f5be68ea89905e4275476ffd7e61
MD5 1eb3cbd8c2745691c4abe01be461b662
BLAKE2b-256 d64fef6d9f77225cf27747368c37b3d69fac1f8d6f9d3d5de2d410d155639524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eab9762c4d1b08ae04a6c77474e6136da722e34fdc0e6d6eab5ee93ac29f35d1
MD5 e94c3e41b1d15966a52fdd5d80205048
BLAKE2b-256 2000aab615742b953f04b48cb378ee72ada88555b47b860b98c21c458c030a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e532a25e4a0a2685fa295a31acf65e027fbe2bea7a4b02cdfbbba8a064577663
MD5 12298a6638d42b6441e5afc1c4731d7e
BLAKE2b-256 736663942f104d33ce6ca7871ac6c1e2ebab48b88f78b2b7680c37de60f5e8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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.12.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 aaf90137b5e5d84a53632ad95ebee5c9e3e7468f0aab92ba3f608adcb914fa95
MD5 11da68768d8680d7e74787b7822edfe2
BLAKE2b-256 be04ddea06cb4bc7d8db3745cf95e2c42f310aad485ca075bd685f0e4f0f6b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38e360381e02e1a05d36b223ecab7bc4a6e7b5ab15760022dc92589ee1d4238c
MD5 b49909ed1302f89759dbb65c5e613209
BLAKE2b-256 36963ce1ea96d3cf6928b87cfb8cdd94650367f5c2f36e686a1f5568f0f13754

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5760909b7080aa2ec1d320baee90d03b21745573780a072b66ce633eb77a8656
MD5 684531c41a1ef91591d018eecfd7d692
BLAKE2b-256 37e1e98a43c15aa52e9219a842f18c59cbae8bbe2d50c08d298f17e9e8bafa38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb284d15c6a45fab030740049d03c0ecd60edad9cd23b211d7e11d3be8d56fd
MD5 399ec10db2f1b605fa4730b2bf340bc6
BLAKE2b-256 0967fda1bc34adbfaa950d98d934a23900918f9d63594928c70e55045838c943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c875bf6fc2fd1a572aba0e02ef4e7a63694778c5646cdbda346ee24e630d30fb
MD5 426950b6837369a19bd15132b1b3a978
BLAKE2b-256 feb524fa382a69a25d242e2baa3e56d5ea5227d1b68784521aaf3a1a8b34c9a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 906d5075b5ba0dd1c66fcaaf60eb09926a9fef3ca92d912d2a0bbdbecf8b1248
MD5 87730f00fc8f6bc15f844d84217f58cc
BLAKE2b-256 0c88f161f429f9de391eee6a5c2cffa54e2ecd5b7122ae99df247f7734dfefcb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 452.4 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.12.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 196858b8820d7f60578f8b47e5669b3195c21d8ab261e39b1d705346458f445f
MD5 1108400775cabb38df893c6fd46823ae
BLAKE2b-256 a0c02f1cefb7b077bf5c19f01bdf0d82b89de0bf2801b441eda23ada0b8966ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 429.2 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.12.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a3416f95961dd7d5393ecff99e3f41dc990fb72eda86c11f2a60308ac6dcd7a0
MD5 1e796360ff664eb72f5779d247898206
BLAKE2b-256 54bbb4226f4fd0597d5245f284d10be48bf1ef610ab4f57d4239686fb03d1814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bc784302b6b9f163b54c4e93d7a6f09563bd01ff2b841b29ed3ac126e5040bf
MD5 608e536b048d57b26a5c7b74b30cbee3
BLAKE2b-256 24f35d21196abf74dee66c5809e764cc27a2275e54c9355019c21be3bf77dd77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 938bd3ca6259e7e48b38d84f753d548bd863e0c222ed6ee6ace3fd6752768a84
MD5 07f6364746155ca507656391b936958c
BLAKE2b-256 460dcaee8733fbe511c34a54e93ee26c4b8d505e12785444d31f772a610df7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b07ccef62950a2519f9bfc1e5b294de5dd84329f444ca0b329605ea787a3de5
MD5 b85bafe718fde05f78f16a9732ad399c
BLAKE2b-256 1bf739c3570434bb7e81601155ba71327735b26548473cca2d5c7f5badabb140

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7a1b4302f70bb3ec40ca86de82def532c97a80db49cac6a6700af0de41af5ee
MD5 8730388e191be5b4251d86277ef39b88
BLAKE2b-256 9b55f90e3eb25330f8a564a6e6b4d3cc15d3630bd28b0795a025e397e3279411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a564188ce831fd110ea76bcc97085dd6c625b427db3f1dbb14ca4baa1447dcbc
MD5 eca3cc35f9eb7e9b038ac0786eb68612
BLAKE2b-256 2be86864b7812351821168e80ca102d7fa244a78fefe9690995a40e8b5c19f4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23e1332fff36bebd3183db0c7a547a1da9d3b4091509f6d818e098855f2f27d3
MD5 cb33cd7ce6c4d53e6f8fb149acb7307d
BLAKE2b-256 0f361b36ae47b9d6afdd39072373bb7157b464996376d562d3c50950ddf6d10e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f9c8d55d6802086edd188e3a7d85a77787e50d56ce3eb4757a3205fa4657922
MD5 7a3e82a80e27550302f07ba87c5df10d
BLAKE2b-256 090dd18e2d2754497bf91b9559425e8c4286af61bdbe42d49c43d955c7269680

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3e9f75ae842a6c22a195d4a127263dbf87cbab729829e0bd7857fb1672400b2
MD5 1c6963c2ca92aef5a60242e7cb4a89fc
BLAKE2b-256 0bc5bb8b29ef079d3ecb5960ec1b547b56bc52ee5ffc43c8a30ef21f9afeb67b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4710f77598c0092239bc12c1fcc278a444e16c7032d91babf5abbf7166463f7b
MD5 cb5c2f4907ad6b54a475b03a36d934b2
BLAKE2b-256 68cffffc2a9edacbd475cfb508075bad052426ce0b9100f1045536ee1b683872

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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.12.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b5dd3a2ef7c7e968dbbac8f5574ebeac4d2b813b247e8cec28174a2ba3627170
MD5 629ad62174f0ebd0e16b280ca1ce46c2
BLAKE2b-256 b82626ef03e6cc4b7fb275eaa76b33c128f72729e8833e512b6770f877560b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_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.12.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 717a0680729b4ebd7569c1dcd718c46b09b360745fd8eb12317abc74b14d14d0
MD5 4675249cc0604db4055f059ddc5674a2
BLAKE2b-256 489e2f14e4780a461351325d7821fb64e9107189315dd8f6e8a67e7afdbf875c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79b29053ff3ad307880d94562cca80693c62062a098a5776ea8ef5ef4b28d140
MD5 a41f183476094fd3e7dfeace902be28e
BLAKE2b-256 33c82c32cd25deb9f590cb8d50ff33fb3bb2cc8d1761958989f6f64cf00ef1cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3779ed96105cd70ee5e85ca4f457adbce3d9ff33ec3d0ebcdf6c5727f26b21b3
MD5 8f7d9356e1f241223853f0d4f5695ea4
BLAKE2b-256 10669d51ec40613aca2f38d6ac527b592686a302197109aa1c0fe045040835ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1dcb015ac6a3b8facd3677597edd5ff39d11d937456702f0bb2b762e390a21b
MD5 266fe8330ac6f5553b2863f1c06b5059
BLAKE2b-256 d02365a82d33841c790178aed8aa6b5e720e37f08bdf7256936fa3bc86f03257

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.14-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b8cc6b05e94d837bcd71c6531e2344e1ff0fb87abe4ad78a9261d67ef5d83eae
MD5 c6668b08196cd4c87d16beeaaec6346a
BLAKE2b-256 cf548a65095784f5c8b2a60a8baa2baabb15b8d507efb0911d59f94af04ba908

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page