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

Uploaded Source

Built Distributions

aiohttp-3.12.7-cp313-cp313-win_amd64.whl (444.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.7-cp313-cp313-win32.whl (418.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.7-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.7-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.7-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.7-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.7-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.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (462.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.7-cp313-cp313-macosx_10_13_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.7-cp313-cp313-macosx_10_13_universal2.whl (692.7 kB view details)

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

aiohttp-3.12.7-cp312-cp312-win_amd64.whl (445.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.7-cp312-cp312-win32.whl (419.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.7-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.7-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.7-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.7-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.7-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.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (465.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.7-cp312-cp312-macosx_10_13_x86_64.whl (472.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.7-cp312-cp312-macosx_10_13_universal2.whl (698.3 kB view details)

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

aiohttp-3.12.7-cp311-cp311-win_amd64.whl (449.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.7-cp311-cp311-win32.whl (424.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.7-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.7-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.7-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.7-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.7-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.7-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.7-cp311-cp311-macosx_11_0_arm64.whl (467.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.7-cp311-cp311-macosx_10_9_x86_64.whl (479.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.7-cp311-cp311-macosx_10_9_universal2.whl (707.2 kB view details)

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

aiohttp-3.12.7-cp310-cp310-win_amd64.whl (448.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.7-cp310-cp310-win32.whl (425.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.7-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.7-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.7-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.7-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.7-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.7-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.7-cp310-cp310-macosx_11_0_arm64.whl (464.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.7-cp310-cp310-macosx_10_9_x86_64.whl (476.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.7-cp310-cp310-macosx_10_9_universal2.whl (699.9 kB view details)

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

aiohttp-3.12.7-cp39-cp39-win_amd64.whl (449.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.7-cp39-cp39-win32.whl (426.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.7-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.7-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.7-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.7-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.7-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.7-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.7-cp39-cp39-macosx_11_0_arm64.whl (465.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.7-cp39-cp39-macosx_10_9_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.7-cp39-cp39-macosx_10_9_universal2.whl (702.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.7.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.7.tar.gz
Algorithm Hash digest
SHA256 08bf55b216c779eddb6e41c1841c17d7ddd12776c7d7b36051c0a292a9ca828e
MD5 39b5455cf0549cb9f0821ce3d50bf51a
BLAKE2b-256 eb6295588e933dfea06a3af0332990bd19f6768f8f37fa4c0fe33fe4c55cf9d0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 93317649d65cc895ba1fe5384353cb6c44638db39ebb55dabe3dade34a1b1177
MD5 c280fba1431673450da0c1c3eac36a67
BLAKE2b-256 867a944963ccf6651dd593a00370423dd74fad745b439fc89502f81620cd93c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 418.5 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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4acec2b5de65adc469837260be8408d5f53d4c8ae60631be868e9d7eb8563167
MD5 21de3d6219c5486c49ca7e7abaca7226
BLAKE2b-256 ff6aa956e2634f9c3af533a60b2c001a484edd52fea05572d144d5efbf8c313e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cd6e299292ba085a3642cb4085b393f45bbca45c067182d15e33c2e3473283c
MD5 7590481abdf0574d9501aec20a2cfc41
BLAKE2b-256 6d84e0e010286781187e3bce69ac9e2b51d3264293a9295db5791ffa084aeaf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 82a59cf086396a409d6d2350c122aada07f1f56bb529734994d37bcafc8cf101
MD5 1691974de7578ff175e085b3a8d0e11f
BLAKE2b-256 29928ef582e9c286cf285f1788fef10b95a8b9178ee68759071ff5ef3a7c2aa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 38dc536059cc0624e22273905a1df74b231ac903d73af59ee6e6e3139f05a28b
MD5 0ddd1f15a7666d1342c0acbcef48a74a
BLAKE2b-256 8f37f2f30aceb3b6977033deab11f54728e46c990950e3206dfc91677219d3e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e7741c53d473204f89dd26f3b087a5883c742add8d6504d0d7d3ad3ff1cd1b7
MD5 518976c337b65353cb680fffb2f5a9b3
BLAKE2b-256 3c90a4585fa7b8603dd5c6778d4471245c50048c13b41f95e9e855d7ce1bd6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29ff7876ff7e4a8029642334a81891cb5a842f1e405195c2946f697102756670
MD5 a63668e6279b71e580d5b867d8e36220
BLAKE2b-256 219105864e93472dcc52e95cb33c808c212cb248069d11d730c1c726aefd42d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6357abdc7a2cfb113274c4f4a7f086bdca36905924953bf7a9e3f6add3aec7c5
MD5 6faaa0df849b249941ee56ba8e3be7a6
BLAKE2b-256 5e3945d2ca30a6275445764cfefecebcc9ec41461a3b41c3beebff33ba080fe3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc8086515dd1016b67db9ccebb7159234226dba99fb6a895a0c9270b644cf525
MD5 fcb9e35f323bb2381c611e7810e0b05b
BLAKE2b-256 ce2f5692c1d0bce47c733beca21e30da28a9fa9b9013c777be5537b81924ef9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffa9928fd37061c8e35b85d3f1b4a256d0c3e8cbd421c1d8bd0ab45461b6a838
MD5 25f02959b11e36aeb4240bf117aa10d6
BLAKE2b-256 978721eca23f8c3f2fcf96661029533596a520a44a47707040782762bc948588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7b83c829be3cddaf958dee8108e09b1502c215e95064d3045015298dbded54a
MD5 553fbd9e52e47a461e54279f0d437863
BLAKE2b-256 c5b3b4830455bcbac491904c0fbfc9e1cd70445f3ed745ba3b2b5e196964249e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6600550593c440ef29ca2a14b8a52ac91b9f494d85f75294409ec6ad5637476f
MD5 3bc9af706a8e667ffdb173a29529ecfa
BLAKE2b-256 6a3743adcb8e2940b888a743acfa54e754b1932b5665a0728944928e8bda93a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b19763f88f058e9c605f79cde8a800660f7e259162b80982111cc631dfc54bf0
MD5 3cc05ff6da6ba5724952f68fe7a3cb32
BLAKE2b-256 101e20ff25b33d39a604094e6d0f9e32c110d63b48a0f8394fa33fd6228ea0dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c19b1de25703560fa64f998dfc3685040b52996056e048b3406c8e97dcfa1e3
MD5 8f8485e8c77ed853da6a6656183a0d38
BLAKE2b-256 a040bb2ae33973c23cb7d96676c2c342d55a46e718906c267b05368b063420bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f04af3bf040dc8fd9b2bc0e465f5aca6fc5349fa08bd7f08142974a2ded21bf
MD5 169b772d15d5640263e682a6addf88ce
BLAKE2b-256 350361318657ba49899defd70dde622e85fa2fc69dcbafe20bc26ce10dbbcfe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 76392cbadc1ccc0a8c02098b74c0240d53c644b10a81e1addbc1666dce3cd62a
MD5 3a01140f63f31e778d1e0093553cbeab
BLAKE2b-256 c130afc2b7c23fccdb1efd056bc6a9aa62077dee59448551631cb80ed3c893dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 adbb2046600a60e37a54ea9b77b0ddef280029b0a853624a8e9b2b71a037c890
MD5 b2ee83a0bd563da93636df3d90b112ed
BLAKE2b-256 fba0c6b01de500e6a115c185bd892d41fcad47b680cc3383c3a01f1f6ab44335

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4aed5233a9d13e34e8624ecb798533aa2da97e7048cc69671b7a6d7a2efe7e8
MD5 34fa8a98cfdfb676cb16fe684aa7ad02
BLAKE2b-256 e834ad5225b4edbcc23496537011d67ef1a147c03205c07340f4a50993b219b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 419.4 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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0e1c33ac0f6a396bcefe9c1d52c9d38a051861885a5c102ca5c8298aba0108fa
MD5 872b928149f14535696e756711ff33e3
BLAKE2b-256 19f28899367a52dec8100f43036e5a792cfdbae317bf3a80549da90290083ff4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c9f52149d8249566e72c50c7985c2345521b3b78f84aa86f6f492cd50b14793
MD5 15aa1af8dfd7d6fabbdfbf5969bf28a5
BLAKE2b-256 6c397a9b706bf42f293415584d60cf35e80d0558929ab70e72cb40b747f0dfc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e85c6833be3f49cead2e7bc79080e5c18d6dab9af32226ab5a01dc20c523e7d9
MD5 5fd97d139557dd15b4dc67bd0a795e55
BLAKE2b-256 43bd96d12318c0f82ac8323bd4459ee26291ad220f688988077a21e538b0872c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ad01793164661af70918490ef8efc2c09df7a3c686b6c84ca90a2d69cdbc3911
MD5 62a62ab48e737ef95d2a1da37cb72785
BLAKE2b-256 48300ca82df423ee346206bc167852c825cd210c11d2f1fa0064a2a55d7f60d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a46fe4a4c66b2712059e48a8384eb93565fbe3251af4844860fed846ef4ca75
MD5 5d5bb0baf56724d3a520dc1e96b95ddd
BLAKE2b-256 5d4d9b8b8f362e36392939019340321f7efcc1807bb2c4cdea8eb1019d3398ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb3f3dcb59f3e16819a1c7d3fa32e7b87255b661c1e139a1b5940bde270704ab
MD5 74139209e091e4d2d226f062adc4b0ea
BLAKE2b-256 ff9dae7103bb8c73c3521e38ae8cde301ddc937024b1681ce134bb1ef01be7d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43e93987fe9df4349db8deae7c391695538c35e4ba893133c7e823234f6e4537
MD5 e5700bbfb7d9f655bf39a12f2eb27563
BLAKE2b-256 4634554220592f8ade7f3cabebfb9325e95078f842140f293ced3ab977fd13ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94f98e0e5a49f89b252e115844f756c04fc8050f38252a32a3dd994ce8121f10
MD5 d5d3d1ad1a0fc9ed8307393620f683f8
BLAKE2b-256 e0ff51ae87efce9b53aafd384179f58923bf178f561897cf80054a440fdf8363

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf981bbfb7ff2ebc1b3bfae49d2efe2c51ca1cf3d90867f47c310df65398e85e
MD5 319673f7cb9cee3a8af3e99564e9076b
BLAKE2b-256 2c5eb832ff59737d99cc5ae51b737c52976d19990ccee922ba6fe811f615e7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b780b402e6361c4cfcec252580f5ecdd86cb68376520ac34748d3f8b262dd598
MD5 0448a2ad5ddad4d68d45ca8bebee10fb
BLAKE2b-256 79ece847fdfe2b1c1f1a2b0ba5343a9b2bd033a0545f8eaf1f7894a6614473ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e506ae5c4c05d1a1e87edd64b994cea2d49385d41d32e1c6be8764f31cf2245c
MD5 5127121115a5908d1b1114c7598ae747
BLAKE2b-256 4d4ac06d3ce0dc5f96338cc8d18da57d74608585a3751234eeef5952e4f48ade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a5938973105cd5ff17176e8cb36bc19cac7c82ae7c58c0dbd7e023972d0c708
MD5 aa3f696cc022eb9d9eb96d57f8567cec
BLAKE2b-256 39b0bddc489288a0e3b05fa05387db9caebc38577204a17db0d5428abae524ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 410e96cc6824fc4ced9703fb2ac2d06c6190d21fc6f5b588f62b1918628449c1
MD5 f65ed39c77f7001b8404394b6cb233c1
BLAKE2b-256 b1545a77116498f84d2503f5588e687eccfa43a85aa2450bc195ee6e5bb75695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97fd97abd4cf199eff4041d0346a7dc68b60deab177f01de87283be513ffc3ab
MD5 ff065e4049e7a35e0a22530c575f70f5
BLAKE2b-256 7de4994bc56a7d7733e9cd1f45db8b656e78d51d7a61cefff8043ec4f7d4a23f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3091b4883f405dbabeb9ea821a25dec16d03a51c3e0d2752fc3ab48b652bf196
MD5 e9877191fdcd54a79c64541f0ea39b8e
BLAKE2b-256 9964a48a8abc4e684fb447d1f7b61e7adcb19865b91e20b50595f49b2942fbb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9b9345918f5b5156a5712c37d1d331baf320df67547ea032a49a609b773c3606
MD5 256ba6647111f399f0c1f0e6adea6314
BLAKE2b-256 5d650bd8ccbffa33ee69db9f5c43f3f62fb8b600b607388e9a8deab8962d0523

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 449.1 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7a3691583470d4397aca70fbf8e0f0778b63a2c2a6a23263bdeeb68395972f29
MD5 1e093ca521451cfdc8d7589df8ff7d7d
BLAKE2b-256 4fab6b82b43abb0990e4452aaef509cf1403ab50c04b5c090f92fb1b255fb319

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 424.7 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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41f686749a099b507563a5c0cb4fd77367b05448a2c1758784ad506a28e9e579
MD5 997e7f1cd155d2ceba4b1c4671d9b73c
BLAKE2b-256 dead0574964387d8eed7fcd0c2fe6ef20c4affe0b265c710938d5fffdb3776b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 372f2237cade45f563d973c2a913895f2699a892c0eb11c55c6880b6f0acf219
MD5 c028ce54048bb690c0d19406a971c240
BLAKE2b-256 4fdd6a75eaaac93b5552090e42c38a576062028ce4af50f0b50ac550332d332c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8493a42d5b2a736c6804239b985feebeea1c60f8fcb46a3607d6dce3c1a42b12
MD5 82a3346cf802972f305362029f265f1a
BLAKE2b-256 92516350a4c485c7d2fb794101d46085c3830485ec1c37738d8af6c9c5ed8e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6055f53c70938498884e71ca966abe8e9e7558489e13a7e40b6384dee7230d1d
MD5 ce3d9894e6432cf621882278d424a21e
BLAKE2b-256 d5750b85f30ba9eb1dbdb5d3a53d3a0db29990220f69187acb24d06903686c5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7b3b9cbe83e3918a1918b0de274884f17b64224c1c9210a6fb0f7c10d246636
MD5 2ea390bc8904321c7f195c1f70772cd1
BLAKE2b-256 8548bb97ef3a694df852b70e6f5c1aaf3621a3a26b35f0a0d90481f3fdb1ce8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 77cb9dba16486ecfeac8076763600b9714941e0ff696e53a30e8d408d9a196ca
MD5 b49bf4d972784f972628cb64e0afc5f9
BLAKE2b-256 e19cc21fd0ba87772f3d1d43cdbfcfd40fe29f37d36a5d73997a8a4d4d1485c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74ff39445f94923cf595e9e6dd602ecbe66b12364e2207e61342b8834417f8da
MD5 f6d493928b3db190fb153d777b2b8d2a
BLAKE2b-256 15d5971d1b277e6a3d5b679f0c9ba076c343a5125ea2eacc51c23ea7d875d43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 519f5454b6018158ae0e789b8f6a88726c47dd680982eb318ef3ca4dee727314
MD5 71e6c761b2d1f444882d75b6f4f3c418
BLAKE2b-256 c14179506d76da96399b6b700acbe10b14291547a3b49a1cc7ed2c5edaa199ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d741923905f267ad5d5c8f86a56f9d2beac9f32a36c217c5d9ef65cd74fd8ca0
MD5 ff1468e511856653ca2ff50e9da8611e
BLAKE2b-256 f9360521398a69c40ac24c659b130597e2544cde1d7dd00291b8a6206bb552d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b6a660163b055686dbb0acc961978fd14537eba5d9da6cbdb4dced7a8d3be1a
MD5 9912c5a67a41edf3855dcb9afd23ef48
BLAKE2b-256 5c4e29a5b35ca9a598f51dc7deff4e8403bf813988f30a8b250e25a8442641b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b058cf2ba6adba699960d7bc403411c8a99ab5d3e5ea3eb01473638ae7d1a30e
MD5 7c7f6c70d1f97760437ecc107bde7703
BLAKE2b-256 4bf87a8a000bc63de3c79aaa8f03b0784e29e9982276f4579c5e2e56d560e403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2be095a420a9f9a12eff343d877ae180dd919238b539431af08cef929e874759
MD5 eeebb13eff2a88836e0661d3737d17fb
BLAKE2b-256 83f1f61d8573d648e17347ab9a112063e4363664b5b6100792467fbb26028bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e4eebfe470e22cc4b374d7e32c07e96d777a5c0fa51f3824de68e697da037ec
MD5 07452e1ab67c4e052f3147ed9510d324
BLAKE2b-256 32d1d59ed16962934b46c7569d04af2dc9638a38ae5812680b9d6c7ee42d770e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f466ae8f9c02993b7d167be685bdbeb527cf254a3cfcc757697e0e336399d0a2
MD5 be9710e24a0314525c3c5913f232a572
BLAKE2b-256 cf7d119f3e012c75a3fe38f86ac1d77f1452779e0e940770d5827d4e62aa5655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9ed5af1cce257cca27a3e920b003b3b397f63418a203064b7d804ea3b45782af
MD5 7e7710425c911eee6f73dd4ecaf7a0cf
BLAKE2b-256 b91829bbefb094f81a687473c1d31391bf8a4c48c7b5b8559c3679fc14e67597

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 388b5947aa6931ef4ce3ed4edde6853e84980677886992cfadcf733dd06eed63
MD5 648ecd004762666547be28a588dd2fe0
BLAKE2b-256 af1937560cc111d6fd95ff6c4bd14445e3c629269fce406c89cc7a69a2865ecf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 448.4 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 362832e0b7c46c7ad3cf2f693061e17f1198f8d7fa4e907c304b3208241161c8
MD5 0b2ea7455c580473fa1d853607ec4e79
BLAKE2b-256 ed3d971b0daa69e8836d78b305db8135b5d81514747c7981fce249a471b08aba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 425.2 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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d909d0b217e85f366bfff45298966ea0dc49d76666fef2eb5777adc5b7aaa292
MD5 63c3d8560e0d98085d270dff39a63c07
BLAKE2b-256 99c0296414a85a6e9832488581404e543baff5587fb86720f4294b72fecd4839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66605ac59c9fbcd4159b0c0cfa239173ab77abc18cf714a1d0569cbabe3c836d
MD5 2935841d1a4aa19882160c1fb2a1b6ce
BLAKE2b-256 2ee0d8d471a0adb252101c3d32917398c9779100435c2b85755c14e97aac0760

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 777663011746b37b5df13df7826cb28ebc447b21ac8aa8278b7825404897dd5f
MD5 c557bc99f8d61c91388d1806eada1cf9
BLAKE2b-256 32e45ace3a1e0e6d25b05078807a4e08815d1122a6ed64543b9637d938a6fe65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ed109a3eef13620c8ce57c429119990be08782c346465c265a23052e41e2cf42
MD5 1b80ddc56d5509a643f90699ccdface6
BLAKE2b-256 9b4a77d2ed27815c47b71adb3e3cd2523bc71adc66678616cef85053a7882365

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4e7155fbdf89084abde1b33f05d681d8ffa0d5d07698d5d76a03ebdeb062848
MD5 3cb5bf23e0814208e0edee1d0c25065f
BLAKE2b-256 f343c736bb1aad4e742eba734486c4749bc8b05c5a9cf2a13dd8299def2cb7bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1a478d055c77fa549251d8b2a8a850918edbbf9941245ef6edbbb65d924edd7
MD5 8717eceddf061cffc293fcfe48eed3ca
BLAKE2b-256 c988a5cde3d1c97053663d375070bdc7aa613bd5d5452a80d15c3f471a063468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eb5d60790ca3563a376ef297dfac3c4c5ec7a7e180b9fe0314f238813fd2ab0
MD5 afad64ae7e5483c51cbf5f2b8b67b7ef
BLAKE2b-256 95acf9740cc22c4946decc500581ce19a8474086da5ee4ecb58574288a46e4eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b56a4fb31fe82ee58cd8cc157e4fc58d19fba2580b46a62fe7808353bb9b82df
MD5 cb90cfd64a11c374e78f23cfa18b6189
BLAKE2b-256 ace81df5816c1c3bd394fcb90fb4d0d422b607470718e126fbbbc247b8ae25d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c7c848ad08722bfc9da0b9fe5f44cde4fa6499d34ece11462c5b7b1f75a5a1b
MD5 fccd690956c8685d2a3f9263c62fdf44
BLAKE2b-256 2e62266662520e5fd1762af3edf1ea8b6cb540366d4b2e53cac21d5d3a634aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56d0f622b3595f3aeaefd07aca9d425748fc8bf5e9e502f75a2dad15f2b875b2
MD5 7a0bf2eabc2dba9a354d404d40cfa59b
BLAKE2b-256 fff5c9c576418af1de60a0f37f792d165e19ec3b6f57efc1ee174cba5f0e633b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0d6575df942e7991e1450b731ad9a5726a1116668471a07d749bd9b2cb1f30a7
MD5 46c7fa225a02dc0e7ff63348706af34a
BLAKE2b-256 7315026c45844ce924a41ab920023471454c4d532c44f0ed5b1a25d3495acf9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53ae6140303ab04a7203f8fcb9ca5b2c5abea46e12e8d6f65575d0f197812e22
MD5 980c4d0eeeb7d3c5fec27427789b9a38
BLAKE2b-256 9c27ce02c0bfd62e6b1ac7570284e8a936d384d58ce44c0672a09a945c375abc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbdb60ab46f696a5e52d98a830b11c034d601bbe2496a82a19d94268257ac63b
MD5 a0a52aab9b13614dbea5b75c77045cb7
BLAKE2b-256 16356399c88bdaa4475803266a073a655f4065e9b71fcad6b8a169ea1406cc03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de89889df856101176ccaf570075b73b62ea9d86e11e642d0f20ecd62a34ce8
MD5 92547b08c01f38edc5bfc5d76669ff2a
BLAKE2b-256 2e72670abce5fc2f52b2b83cdd19c9d03135d8857421de33bcaa7fdc9a8b6412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67759acb11673c1b976a516f2d69a73433aad70ed04e44ce79eaf0e58219535e
MD5 a9fec0be08f5363786bf03e2d86cbee3
BLAKE2b-256 87642da0d3f0f24beb6b5f655d4ec0936381a7447a6b0c9e2663b8941d5fc3d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4486f399573c94b223411bc5686b5cdc661f4dd67daece800662356e46b3a2b5
MD5 de81aab74a28cbb128f0c8e0300972be
BLAKE2b-256 4fa6f919d756cfe13e6baebcf3ea1ea75094e4a7fd3539e2c70bf790f85b2923

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1496c9e785d0432a4eae6c059f1d68423fb6264cbdacaff2d9ab1859be66c5bb
MD5 23ded5702a9a4a5baf3ba49751db657e
BLAKE2b-256 72e6aa1e59eed559c7ac07a258a2cece2a4e722262c4606c3bda66afcc39e8e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 426.0 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.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c8d9b576aa4e1359fcc479532b8a21803840fd61013eec875746b29c3930f073
MD5 7c17b91099260faeaa6ae581116ef084
BLAKE2b-256 4d9c27358395faa808261f05f8bf97e6b03bbc74c9367f86e10d288fdc186e70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2804245093897b77736540f75826d35587819e143f0f95e951bfea8eb312bf09
MD5 05908248dd14524b0888282612f7beae
BLAKE2b-256 9ffffd6ad360933e89209cb08b16ac5ab65dd9d3c362626ed1e512a276ec125d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a4ee037aec7ccc8777b0f9603085a2c53108368443624f7dc834028b16591541
MD5 25c3c04bca0081de8bb113c1cd92f4a3
BLAKE2b-256 80d8aee10d640e0a1203d9b4b069c5fe33e6234b0e28b9b0f4dfa1208640f17e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ca179427f7cbd3476eca3bfc229087c112b0418242c5b56f9f0f9c0e681b906
MD5 fae933c7c7c519b0abea2b5ee15a5842
BLAKE2b-256 881503ad7093fb6cc9a09357cbb7a83237a70470b53f83c89a7e61dd48b0a0a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81a1ca045593149d3366286c30c57ebb63d2f28feca8ca3fae049c22ed8520c4
MD5 08d9c94a6965119b6d4721540b2995e8
BLAKE2b-256 f069799a5b583ca7a0fa8b10e1431101713792cb1c7172ff263daece45239009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8fa7c8ee01b54367cafb7e82947e36e57f9cb243d7c4d66e03fb96661b082ae
MD5 effd06c7b001615069361eca816e4d4a
BLAKE2b-256 6c2fa5763f146feaa12419c370781cf9be234ed0a0c534143969ca48910c8550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1f532d312a42397e6f591499acf707cece6462f745c5670bb7c70d1bb963882
MD5 3f2c0554e07cee23e7b4582e7a6b7e6d
BLAKE2b-256 3cc9118eb892b01149be30cdde9557aba10b87dc527aa0c373371223b8dff9b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ea0db720f2996f9b799c8ba6fbdd12063add509a81a398cd31a3fb152efae0d
MD5 27ecddc3d74fe6c4bc133d05072dada9
BLAKE2b-256 329957d2ba336d10104091fd3899454104902a45473c87fc59b6781e1dfa560b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 838a091be15ce619a83896c8485e814215f3383952dd58aec932d0f9ae85a02b
MD5 471f7d98a98654d25b3c8aab1faaf6eb
BLAKE2b-256 a448dec7692cdf8e3f06ac06ebea873536b1379132370007b3223180b209329b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a1a280e27b2c772a9d69dfd0744929f8628a6b8b6e6e87c0125c8c417501a21
MD5 670053007559bdae384497c50242cf6a
BLAKE2b-256 d8606a4675934c24893488250b3ee96547f7f6e18b1c49327e9b52bb180c5a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 845a67d26ee9578d20738975591dccd0fcae7104c89cc112316787f9fdfe8b61
MD5 90a2553771afaec1a3bcfaa43134836c
BLAKE2b-256 dfc6cf3874d72f156288b19f59f5ba6d1f2f25ebf8ef6142941f58b76a565251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2e1f6e7825d3830ee85ddf5d322300d15053e94c66ff8b3d5e8ef0f152c0f1a
MD5 fb5afdae0c255952fc9150d6ad4f8ccc
BLAKE2b-256 c1a3e1ef869a075ee1666f5674bd5207b6165fab08937003677d093bf47064f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ccd1e07b61c26532f1a7908430c30d687425bbf2d4da26f09bc1f2acf06a5f9
MD5 ef1dff8b45de3029b3eef010375e3222
BLAKE2b-256 677d0f343e92fdd8a587c1b99056dcebf3ce631d305f90170a6f5941344f8292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e80ef94a0993c7124b69bf1a95b5d26f22f24e5fdc6af22ca143105edde22ed
MD5 0e3f195dabfdb04da3384994fc0628eb
BLAKE2b-256 faf24801555d5e2ab2ccba88eb6b713f288e0105a81b75fe5db5512cd8dbf468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bca9329faa73c42061a67b8b53e6b1d46b73e3411636bfe1d07c58d81067b902
MD5 83f7a6adcbfd71ae5ba2d80fd25a3fdd
BLAKE2b-256 3bf7ffc6f2b89dfe6ad79a1446c95d2b745dd1ccdf1f469337f8a24946b33468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f85e48970aff5b00af94a5f6311ee0b61eca8bbc8769df39873fc68d747ca609
MD5 46f048440460424573881722457b1fee
BLAKE2b-256 af31ea69b91dcf101cbec18bda49458bf8a3705661bc8de21f1116f33c32304d

See more details on using hashes here.

Provenance

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