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

Uploaded Source

Built Distributions

aiohttp-3.12.13-cp313-cp313-win_amd64.whl (446.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.13-cp313-cp313-win32.whl (420.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.13-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.13-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.13-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.13-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.13-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.13-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.13-cp313-cp313-macosx_11_0_arm64.whl (464.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.13-cp313-cp313-macosx_10_13_x86_64.whl (472.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.13-cp313-cp313-macosx_10_13_universal2.whl (694.9 kB view details)

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

aiohttp-3.12.13-cp312-cp312-win_amd64.whl (447.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.13-cp312-cp312-win32.whl (421.8 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.13-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.13-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.13-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.13-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.13-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.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (467.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.13-cp312-cp312-macosx_10_13_x86_64.whl (475.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.13-cp312-cp312-macosx_10_13_universal2.whl (700.5 kB view details)

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

aiohttp-3.12.13-cp311-cp311-win_amd64.whl (451.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.13-cp311-cp311-win32.whl (427.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.13-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.13-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.13-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.13-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.13-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.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (469.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.13-cp311-cp311-macosx_10_9_x86_64.whl (481.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

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

aiohttp-3.12.13-cp310-cp310-win_amd64.whl (450.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.13-cp310-cp310-win32.whl (427.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.13-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.13-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.13-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.13-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.13-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.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (466.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.13-cp310-cp310-macosx_10_9_x86_64.whl (478.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.13-cp310-cp310-macosx_10_9_universal2.whl (702.1 kB view details)

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

aiohttp-3.12.13-cp39-cp39-win_amd64.whl (451.7 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.13-cp39-cp39-win32.whl (428.4 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.13-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.13-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.13-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.13-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.13-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.13-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.13-cp39-cp39-macosx_11_0_arm64.whl (467.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.13-cp39-cp39-macosx_10_9_x86_64.whl (480.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.13-cp39-cp39-macosx_10_9_universal2.whl (705.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.13.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.13.tar.gz
Algorithm Hash digest
SHA256 47e2da578528264a12e4e3dd8dd72a7289e5f812758fe086473fab037a10fcce
MD5 66aea7da5ab519e48d7bc6be43b01cc7
BLAKE2b-256 426eab88e7cb2a4058bed2f7870276454f85a7c56cd6da79349eb314fc7bbcaa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 446.7 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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5a178390ca90419bfd41419a809688c368e63c86bd725e1186dd97f6b89c2706
MD5 cdfadba51652612c4fe4997f46b2bebc
BLAKE2b-256 9d47b11d0089875a23bff0abd3edb5516bcd454db3fefab8604f5e4b07bd6210

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 420.8 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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7d7e68787a2046b0e44ba5587aa723ce05d711e3a3665b6b7545328ac8e3c0dd
MD5 f3eed9cc4592bae90284d6c3154247f8
BLAKE2b-256 1fab561ef2d8a223261683fb95a6283ad0d36cb66c87503f3a7dde7afe208bb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69fc1909857401b67bf599c793f2183fbc4804717388b0b888f27f9929aa41f3
MD5 e6e77037d455e9f430a50d0e2bb7900b
BLAKE2b-256 380daabe636bd25c6ab7b18825e5a97d40024da75152bec39aa6ac8b7a677630

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 60f2ce6b944e97649051d5f5cc0f439360690b73909230e107fd45a359d3e911
MD5 7ec465a2c914ec2ef0e1bf39f9458484
BLAKE2b-256 fdac81acc594c7f529ef4419d3866913f628cd4fa9cab17f7bf410a5c3c04c53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d4f5becd2a5791829f79608c6f3dc745388162376f310eb9c142c985f9441cc1
MD5 feded5602422c0d164c7b33b657cdf3d
BLAKE2b-256 38e8f5a0a5f44f19f171d8477059aa5f28a158d7d57fe1a46c553e231f698435

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b28ea2f708234f0a5c44eb6c7d9eb63a148ce3252ba0140d050b091b6e842d1
MD5 d43c0c4a373e0daedebdc7609dbc1b4d
BLAKE2b-256 efc439af17807f694f7a267bd8ab1fbacf16ad66740862192a6c8abac2bff813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0c4725fae86555bbb1d4082129e21de7264f4ab14baf735278c974785cd2041
MD5 eacffa8a0df9a9bcca73db8e4f45c944
BLAKE2b-256 3ffe74e5ce8b2ccaba445fe0087abc201bfd7259431d92ae608f684fcac5d143

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a946d3702f7965d81f7af7ea8fb03bb33fe53d311df48a46eeca17e9e0beed2d
MD5 0f1b837c381d8f2e6577bcdd5d43b927
BLAKE2b-256 99ab00ad3eea004e1d07ccc406e44cfe2b8da5acb72f8c66aeeb11a096798868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a0b9170d5d800126b5bc89d3053a2363406d6e327afb6afaeda2d19ee8bb103
MD5 2a7229ae0dd5455d5aee9ff970ad600b
BLAKE2b-256 48190377df97dd0176ad23cd8cad4fd4232cfeadcec6c1b7f036315305c98e3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8ed8c38a1c584fe99a475a8f60eefc0b682ea413a84c6ce769bb19a7ff1c5ef
MD5 497cb7e6b39ea90ca47e821928e24535
BLAKE2b-256 0d678a7eb3afa01e9d0acc26e1ef847c1a9111f8b42b82955fcd9faeb84edeb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a95cf9f097498f35c88e3609f55bb47b28a5ef67f6888f4390b3d73e2bac6177
MD5 c17eedab59338c1006dc756c918d3472
BLAKE2b-256 37724c237dd127827b0247dc138d3ebd49c2ded6114c6991bbe969058575f25f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6af355b483e3fe9d7336d84539fef460120c2f6e50e06c658fe2907c69262d6b
MD5 906d59f8d4acca09eb28980f8555cd56
BLAKE2b-256 ec53d5513624b33a811c0abea8461e30a732294112318276ce3dbf047dbd9d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad7c8e5c25f2a26842a7c239de3f7b6bfb92304593ef997c04ac49fb703ff4d7
MD5 26019d0ef02f13aa22f860da1dacf6f4
BLAKE2b-256 267f32ca0f170496aa2ab9b812630fac0c2372c531b797e1deb3deb4cea904bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 372feeace612ef8eb41f05ae014a92121a512bd5067db8f25101dd88a8db11da
MD5 7c93b724e662befe07eba70366f3ddea
BLAKE2b-256 6197ade1982a5c642b45f3622255173e40c3eed289c169f89d00eeac29a89906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7eea18b52f23c050ae9db5d01f3d264ab08f09e7356d6f68e3f3ac2de9dfabb
MD5 5a48dcebf2ab4f970dbd219b8b330341
BLAKE2b-256 343f6b7d336663337672d29b1f82d1f252ec1a040fe2d548f709d3f90fa2218a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 532542cb48691179455fab429cdb0d558b5e5290b033b87478f2aa6af5d20ace
MD5 b29c8e9b165fa20c4858bfd386780d5b
BLAKE2b-256 d5810ab551e1b5d7f1339e2d6eb482456ccbe9025605b28eed2b1c0203aaaade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d4a18e61f271127465bdb0e8ff36e8f02ac4a32a80d8927aa52371e93cd87938
MD5 a23dd6a24ee1e401c6e06e906c1dd972
BLAKE2b-256 110fdb19abdf2d86aa1deec3c1e0e5ea46a587b97c07a16516b6438428b3a3f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 447.9 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 671f41e6146a749b6c81cb7fd07f5a8356d46febdaaaf07b0e774ff04830461e
MD5 24a0254890988917e1efda3d540b58ac
BLAKE2b-256 52663ce877e56ec0813069cdc9607cd979575859c597b6fb9b4182c6d5f31886

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 421.8 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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ac941a80aeea2aaae2875c9500861a3ba356f9ff17b9cb2dbfb5cbf91baaf5bf
MD5 32f624fe530f16f0050417dad5f1fec7
BLAKE2b-256 e79e07bb8aa11eec762c6b1ff61575eeeb2657df11ab3d3abfa528d95f3e9337

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e986067357550d1aaa21cfe9897fa19e680110551518a5a7cf44e6c5638cb8b5
MD5 47851f003cc58afcfe2c2a30e9603bcb
BLAKE2b-256 ac98c193c1d1198571d988454e4ed75adc21c55af247a9fda08236602921c8c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2637a60910b58f50f22379b6797466c3aa6ae28a6ab6404e09175ce4955b4e6a
MD5 8de94014ddd1e674d89dce9fc9a01cc1
BLAKE2b-256 c38de04569aae853302648e2c138a680a6a2f02e374c5b6711732b29f1e129cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 050bd277dfc3768b606fd4eae79dd58ceda67d8b0b3c565656a89ae34525d15e
MD5 fb4af2cbd058bbe6b8c0ea5189cd3b07
BLAKE2b-256 5e0b26ddd91ca8f84c48452431cb4c5dd9523b13bc0c9766bda468e072ac9e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54fbbe6beafc2820de71ece2198458a711e224e116efefa01b7969f3e2b3ddae
MD5 5aaad73bd7924646d295979c86021654
BLAKE2b-256 eaf333192b4761f7f9b2f7f4281365d925d663629cfaea093a64b658b94fc8e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8605e22d2a86b8e51ffb5253d9045ea73683d92d47c0b1438e11a359bdb94462
MD5 50b90d6d8ba3aa94cdbeb64f97c2cc46
BLAKE2b-256 82c80e56e8bf12081faca85d14a6929ad5c1263c146149cd66caa7bc12255b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3062d4ad53b36e17796dce1c0d6da0ad27a015c321e663657ba1cc7659cfc710
MD5 7d545ad8ea5ceaf098784b1b1e1c5fd3
BLAKE2b-256 3a5bf3413f4b238113be35dfd6794e65029250d4b93caa0974ca572217745bdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 177f52420cde4ce0bb9425a375d95577fe082cb5721ecb61da3049b55189e4e6
MD5 7eefc04e523d1ab569bb42202c77fe93
BLAKE2b-256 f39d666d856cc3af3a62ae86393baa3074cc1d591a47d89dc3bf16f6eb2c8d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a94daa873465d518db073bd95d75f14302e0208a08e8c942b2f3f1c07288a75
MD5 68853d879da57a9f324baa39e9e7fc91
BLAKE2b-256 f7e1affdea8723aec5bd0959171b5490dccd9a91fcc505c8c26c9f1dca73474d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dc507481266b410dede95dd9f26c8d6f5a14315372cc48a6e43eac652237d9b
MD5 6bc1cb1637e8cbd91c7de860266ec0f5
BLAKE2b-256 d89fbd08fdde114b3fec7a021381b537b21920cdd2aa29ad48c5dffd8ee314f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d640191016763fab76072c87d8854a19e8e65d7a6fcfcbf017926bdbbb30a7e5
MD5 a15eb129dbc119839e47e2afaa341051
BLAKE2b-256 92a62552eebad9ec5e3581a89256276009e6a974dc0793632796af144df8b740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29c955989bf4c696d2ededc6b0ccb85a73623ae6e112439398935362bacfaaf6
MD5 6e6a69cf2f47625e34a6c865f71e4e23
BLAKE2b-256 993b06f0a632775946981d7c4e5a865cddb6e8dfdbaed2f56f9ade7bb4a1039b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f7df1f620ec40f1a7fbcb99ea17d7326ea6996715e78f71a1c9a021e31b96b8
MD5 4a86d9420a070fdd8b02aa19ab526237
BLAKE2b-256 f3ce3c185293843d17be063dada45efd2712bb6bf6370b37104b4eda908ffdbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f64e748e9e741d2eccff9597d09fb3cd962210e5b5716047cbb646dc8fe06f
MD5 a9507708e0ef412aedaba7be3bff81ba
BLAKE2b-256 f891d42ba4aed039ce6e449b3e2db694328756c152a79804e64e3da5bc19dffc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b103a7e414b57e6939cc4dece8e282cfb22043efd0c7298044f6594cf83ab347
MD5 b1c18772b262f0432b9812a85cf8c68f
BLAKE2b-256 28d97150d5cf9163e05081f1c5c64a0cdf3c32d2f56e2ac95db2a28fe90eca69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0aa580cf80558557285b49452151b9c69f2fa3ad94c5c9e76e684719a8791b73
MD5 6906b98793c35a26d56ab7d3ccae67b1
BLAKE2b-256 b46ace40e329788013cd190b1d62bbabb2b6a9673ecb6d836298635b939562ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 451.4 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a27da9c3b5ed9d04c36ad2df65b38a96a37e9cfba6f1381b842d05d98e6afe9
MD5 f3c6789fd7c2f9386dc5ef964eae13f2
BLAKE2b-256 f8b698518bcc615ef998a64bef371178b9afc98ee25895b4f476c428fade2220

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 427.0 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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fef8d50dfa482925bb6b4c208b40d8e9fa54cecba923dc65b825a72eed9a5dbd
MD5 fd50657b90e1cc0df7f8d14770753af5
BLAKE2b-256 fd202de7012427dc116714c38ca564467f6143aec3d5eca3768848d62aa43e62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5734d8469a5633a4e9ffdf9983ff7cdb512524645c7a3d4bc8a3de45b935ac3
MD5 0f45ba60bd1e3c6335299f5ed8bf4c49
BLAKE2b-256 2165cd37b38f6655d95dd07d496b6d2f3924f579c43fd64b0e32b547b9c24df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6a83797a0174e7995e5edce9dcecc517c642eb43bc3cba296d4512edf346eee2
MD5 af5fb06f4c8025f1e3dd8d7331544c28
BLAKE2b-256 a66b6986d0c75996ef7e64ff7619b9b7449b1d1cbbe05c6755e65d92f1784fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 81b0fcbfe59a4ca41dc8f635c2a4a71e63f75168cc91026c61be665945739e2d
MD5 7624c317f34e7dc4d84f6c9f0dab03f2
BLAKE2b-256 1dfd0d2e618388f7a7a4441eed578b626bda9ec6b5361cd2954cfc5ab39aa170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6548a411bc8219b45ba2577716493aa63b12803d1e5dc70508c539d0db8dbf5a
MD5 3b14854696960f407a924423a904d776
BLAKE2b-256 e315a94c05f7c4dc8904f80b6001ad6e07e035c58a8ebfcc15e6b5d58500c858

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6383dd0ffa15515283c26cbf41ac8e6705aab54b4cbb77bdb8935a713a89bee9
MD5 1b518cc9460159f3723b880b13ed1a34
BLAKE2b-256 21b2fb5aedbcb2b58d4180e58500e7c23ff8593258c27c089abfbcc7db65bd40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03d5eb3cfb4949ab4c74822fb3326cd9655c2b9fe22e4257e2100d44215b2e2b
MD5 19d91db0f83dc0d666a0ac956ed25cb9
BLAKE2b-256 7a77ec80912270e231d5e3839dbd6c065472b9920a159ec8a1895cf868c2708e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6946bae55fd36cfb8e4092c921075cde029c71c7cb571d72f1079d1e4e013bc
MD5 94c9b69412f13384e12c39da9400dc1c
BLAKE2b-256 75a5472e25f347da88459188cdaadd1f108f6292f8a25e62d226e63f860486d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a77b48997c66722c65e157c06c74332cdf9c7ad00494b85ec43f324e5c5a9b9a
MD5 79c42e4113fea47692cd9f565d3cb171
BLAKE2b-256 b93dd81b13ed48e1a46734f848e26d55a7391708421a80336e341d2aef3b6db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0653d15587909a52e024a261943cf1c5bdc69acb71f411b0dd5966d065a51a47
MD5 da994e643d7c584ef721b72ab5edc810
BLAKE2b-256 ade4556fccc4576dc22bf18554b64cc873b1a3e5429a5bdb7bbef7f5d0bc7664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e72d17fe0974ddeae8ed86db297e23dba39c7ac36d84acdbb53df2e18505a013
MD5 9f312fc51ef5988b6054780695eae6fd
BLAKE2b-256 6f49a3f76caa62773d33d0cfaa842bdf5789a78749dbfe697df38ab1badff369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 921bc91e602d7506d37643e77819cb0b840d4ebb5f8d6408423af3d3bf79a7b7
MD5 3a3db1d49b2f67db33776bbf6951ac07
BLAKE2b-256 41c9c5269f3b6453b1cfbd2cfbb6a777d718c5f086a3727f576c51a468b03ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4f95db8c8b219bcf294a53742c7bda49b80ceb9d577c8e7aa075612b7f39ffb7
MD5 9bc93a7426ab216dd5c38297e62e8a0f
BLAKE2b-256 b9fe322a78b9ac1725bfc59dfc301a5342e73d817592828e4445bd8f4ff83489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55683615813ce3601640cfaa1041174dc956d28ba0511c8cbd75273eb0587014
MD5 70cbb30919db22b849258e2a7c23233a
BLAKE2b-256 044fe3f95c8b2a20a0437d51d41d5ccc4a02970d8ad59352efb43ea2841bd08e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04076d8c63471e51e3689c93940775dc3d12d855c0c80d18ac5a1c68f0904358
MD5 b8298bf6132e18162b39d8d25a0174bd
BLAKE2b-256 14b548e4cc61b54850bdfafa8fe0b641ab35ad53d8e5a65ab22b310e0902fa42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c229b1437aa2576b99384e4be668af1db84b31a45305d02f61f5497cfa6f60c
MD5 2309c39ed5d125cb9bf849b99e554eea
BLAKE2b-256 6a655566b49553bf20ffed6041c665a5504fb047cefdef1b701407b8ce1a47c4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 450.7 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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fcc30ad4fb5cb41a33953292d45f54ef4066746d625992aeac33b8c681173178
MD5 29afffd365ae1f1f17eb4d0e362d3027
BLAKE2b-256 17de34d998da1e7f0de86382160d039131e9b0af1962eebfe53dda2b61d250e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 427.5 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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a0be857f0b35177ba09d7c472825d1b711d11c6d0e8a2052804e3b93166de1ad
MD5 7796e48940ff393ab740d248aeb40104
BLAKE2b-256 862e7d4b0026a41e4b467e143221c51b279083b7044a4b104054f5c6464082ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1561db63fa1b658cd94325d303933553ea7d89ae09ff21cc3bcd41b8521fbbb6
MD5 6e7f643db49dd2fc08876c2dc258b695
BLAKE2b-256 2d240aa03d522171ce19064347afeefadb008be31ace0bbb7d44ceb055700a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2332b4c361c05ecd381edb99e2a33733f3db906739a83a483974b3df70a51b40
MD5 c7cd73b5002a0cfc34d198d4d2c413e6
BLAKE2b-256 0f7a359974653a3cdd3e9cee8ca10072a662c3c0eb46a359c6a1f667b0296e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3854fbde7a465318ad8d3fc5bef8f059e6d0a87e71a0d3360bb56c0bf87b18a
MD5 b9f8e681a5845797f48dbf95272e2765
BLAKE2b-256 31807fa3f3bebf533aa6ae6508b51ac0de9965e88f9654fa679cc1a29d335a79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09c4767af0b0b98c724f5d47f2bf33395c8986995b0a9dab0575ca81a554a8c0
MD5 83c7fb0a7bd2729cc571f6c73dae30db
BLAKE2b-256 192170629ca006820fccbcec07f3cd5966cbd966e2d853d6da55339af85555b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9445c1842680efac0f81d272fd8db7163acfcc2b1436e3f420f4c9a9c5a50795
MD5 b6ff6f15122c7bffcfe47c0529dfff77
BLAKE2b-256 4c3426cded195f3bff128d6a6d58d7a0be2ae7d001ea029e0fe9008dcdc6a009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06b07c418bde1c8e737d8fa67741072bd3f5b0fb66cf8c0655172188c17e5fa6
MD5 3869383e2ad499f584cb842b71524ade
BLAKE2b-256 2f55c913332899a916d85781aa74572f60fd98127449b156ad9c19e23135b0e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1582745eb63df267c92d8b61ca655a0ce62105ef62542c00a74590f306be8cb5
MD5 36a1d24bcfcef0e0444f2545f8dac3fe
BLAKE2b-256 e67ad85866a642158e1147c7da5f93ad66b07e5452a84ec4258e5f06b9071e92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0f8f6a85a0006ae2709aa4ce05749ba2cdcb4b43d6c21a16c8517c16593aabe
MD5 529bb0b9b45da4bb48210fe368eb3c56
BLAKE2b-256 3f15328b71fedecf69a9fd2306549b11c8966e420648a3938d75d3ed5bcb47f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 663d8ee3ffb3494502ebcccb49078faddbb84c1d870f9c1dd5a29e85d1f747ce
MD5 ec94eb032a2ab4470f55f2c8ab3d4c3c
BLAKE2b-256 0401caef70be3ac38986969045f21f5fb802ce517b3f371f0615206bf8aa6423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 893a4639694c5b7edd4bdd8141be296042b6806e27cc1d794e585c43010cc294
MD5 1269b7850215f551d2c6d4c42167eb6a
BLAKE2b-256 3131e00122447bb137591c202786062f26dd383574c9f5157144127077d5733e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34ebf1aca12845066c963016655dac897651e1544f22a34c9b461ac3b4b1d3aa
MD5 1ffa4090e78a724a37b5a1f012e967c7
BLAKE2b-256 a73dd23e5bd978bc8012a65853959b13bd3b55c6e5afc172d89c26ad6624c52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d59227776ee2aa64226f7e086638baa645f4b044f2947dbf85c76ab11dcba073
MD5 abd0830361399f3e6abf6a4096005c48
BLAKE2b-256 14573588800d5d2f5f3e1cb6e7a72747d1abc1e67ba5048e8b845183259c2e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cd71c9fb92aceb5a23c4c39d8ecc80389c178eba9feab77f19274843eb9412d
MD5 1e7d353a4a59b3fdab77a5d4f04969ec
BLAKE2b-256 b9c82086df2f9a842b13feb92d071edf756be89250f404f10966b7bc28317f17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fcda86f6cb318ba36ed8f1396a6a4a3fd8f856f84d426584392083d10da4de0
MD5 1b867b0d5bce2369cc2bf1fb52812458
BLAKE2b-256 100b4a8e0468ee8f2b9aff3c05f2c3a6be1dfc40b03f68a91b31041d798a9510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5421af8f22a98f640261ee48aae3a37f0c41371e99412d55eaf2f8a46d5dad29
MD5 621f1089196c6e229fdf7885cf61d5ae
BLAKE2b-256 8b2d27e4347660723738b01daa3f5769d56170f232bf4695dd4613340da135bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 451.7 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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 29e08111ccf81b2734ae03f1ad1cb03b9615e7d8f616764f22f71209c094f122
MD5 b469d5f6d233ae1ccf6b517ac2651bec
BLAKE2b-256 e5cbaaa022eb993e7d51928dc22d743ed17addb40142250e829701c5e6679615

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 428.4 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.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0022de47ef63fd06b065d430ac79c6b0bd24cdae7feaf0e8c6bac23b805a23a8
MD5 f39bf572083104fafeb42c407732c7aa
BLAKE2b-256 a47b44b77bf4c48d95d81af5c57e79337d0d51350a85a84e9997a99a6205c441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb18f00396d22e2f10cd8825d671d9f9a3ba968d708a559c02a627536b36d91c
MD5 0713cd37c9f985f5e3ad7d5a55cc2134
BLAKE2b-256 2fbcb8d14e754b5e0bf9ecf6df4b930f2cbd6eaaafcdc1b2f9271968747fb6e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 119c79922a7001ca6a9e253228eb39b793ea994fd2eccb79481c64b5f9d2a055
MD5 ee1c4f7486e59d64467febcf3b648d1e
BLAKE2b-256 cd0ac103fdaab6fbde7c5f10450b5671dca32cea99800b1303ee8194a799bbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64d1f24ee95a2d1e094a4cd7a9b7d34d08db1bbcb8aa9fb717046b0a884ac294
MD5 42aacea1ab5c049387ff12fb6cb8e24b
BLAKE2b-256 91d7526f1d16ca01e0c995887097b31e39c2e350dc20c1071e9b2dcf63a86fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5304d74867028cca8f64f1cc1215eb365388033c5a691ea7aa6b0dc47412f495
MD5 661674cc4e881da97711c85e08d6d4e7
BLAKE2b-256 fbfef9540bf12fa443d8870ecab70260c02140ed8b4c37884a2e1050bdd689a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a1ecce0ed281bec7da8550da052a6b89552db14d0a0a45554156f085a912f48
MD5 9c3ed335975108a7bbee0e809b481473
BLAKE2b-256 3a01c68f2c7632441fbbfc4a835e003e61eb1d63531857b0a2b73c9698846fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d6c85ac7dd350f8da2520bac8205ce99df4435b399fa7f4dc4a70407073e390
MD5 811dfe64186c4e5908c672a31dc74c96
BLAKE2b-256 e19909520d83e5964d6267074be9c66698e2003dfe8c66465813f57b029dec8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3fea41a2c931fb582cb15dc86a3037329e7b941df52b487a9f8b5aa960153cbd
MD5 046f856bad30507ccaede720b2f245b5
BLAKE2b-256 550107b980d6226574cc2d157fa4978a3d77270a4e860193a579630a81b30e30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c332c6bb04650d59fb94ed96491f43812549a3ba6e7a16a218e612f99f04145e
MD5 a19e8d61a7c084c3e88591b9602eed6f
BLAKE2b-256 45e714d09183849e9bd69d8d5bf7df0ab7603996b83b00540e0890eeefa20e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b6f46613031dbc92bdcaad9c4c22c7209236ec501f9c0c5f5f0b6a689bf50f3
MD5 6acd1e07813869f2f398b93eb828f7c3
BLAKE2b-256 f2ff909193459a6d32ee806d9f7ae2342c940ee97d2c1416140c5aec3bd6bfc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 003038e83f1a3ff97409999995ec02fe3008a1d675478949643281141f54751d
MD5 67b51ccadbda44c2f83c8c6db7474838
BLAKE2b-256 555df0277aad4d85a56cd6102335d5111c7c6d1f98cb760aa485e4fe11a24f52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eabded0c2b2ef56243289112c48556c395d70150ce4220d9008e6b4b3dd15690
MD5 2d12bcf5e21be62f9216d8cb32823d31
BLAKE2b-256 7b4e327a4b56bb940afb03ee45d5fd1ef7dae5ed6617889d61ed8abf0548310b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 846104f45d18fb390efd9b422b27d8f3cf8853f1218c537f36e71a385758c896
MD5 99959a5e626b523dab2f9f3aff82183b
BLAKE2b-256 73cf20a1f75ca3d8e48065412e80b79bb1c349e26a4fa51d660be186a9c0c1e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8b27b2d414f7e3205aa23bb4a692e935ef877e3a71f40d1884f6e04fd7fa74
MD5 6e8119ba7cb37ddae98adddf57d5bfc0
BLAKE2b-256 9d0a62f1c2914840eb2184939e773b65e1e5d6b651b78134798263467f0d2467

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6cbfc73179bd67c229eb171e2e3745d2afd5c711ccd1e40a68b90427f282eab1
MD5 d179709cfb90876bfdc2f40a81577500
BLAKE2b-256 5238d51ea984c777b203959030895c1c8b1f9aac754f8e919e4942edce05958e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.13-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 36f6c973e003dc9b0bb4e8492a643641ea8ef0e97ff7aaa5c0f53d68839357b4
MD5 f101c33c5efd99a9a085394db8598581
BLAKE2b-256 057e0f6b2b4797ac364b6ecc9176bb2dd24d4a9aeaa77ecb093c7f87e44dfbd6

See more details on using hashes here.

Provenance

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