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

Uploaded Source

Built Distributions

aiohttp-3.12.1rc0-cp313-cp313-win_amd64.whl (439.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.1rc0-cp313-cp313-win32.whl (413.0 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-cp313-cp313-macosx_11_0_arm64.whl (457.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.1rc0-cp313-cp313-macosx_10_13_x86_64.whl (464.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.1rc0-cp313-cp313-macosx_10_13_universal2.whl (687.3 kB view details)

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

aiohttp-3.12.1rc0-cp312-cp312-win_amd64.whl (440.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.1rc0-cp312-cp312-win32.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-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.1rc0-cp312-cp312-macosx_11_0_arm64.whl (460.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.1rc0-cp312-cp312-macosx_10_13_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.1rc0-cp312-cp312-macosx_10_13_universal2.whl (692.9 kB view details)

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

aiohttp-3.12.1rc0-cp311-cp311-win_amd64.whl (443.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.1rc0-cp311-cp311-win32.whl (419.3 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-cp311-cp311-macosx_11_0_arm64.whl (462.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.1rc0-cp311-cp311-macosx_10_9_x86_64.whl (474.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.1rc0-cp311-cp311-macosx_10_9_universal2.whl (701.8 kB view details)

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

aiohttp-3.12.1rc0-cp310-cp310-win_amd64.whl (443.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.1rc0-cp310-cp310-win32.whl (419.8 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-cp310-cp310-macosx_11_0_arm64.whl (458.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.1rc0-cp310-cp310-macosx_10_9_x86_64.whl (470.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.1rc0-cp310-cp310-macosx_10_9_universal2.whl (694.4 kB view details)

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

aiohttp-3.12.1rc0-cp39-cp39-win_amd64.whl (443.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.1rc0-cp39-cp39-win32.whl (420.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-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.1rc0-cp39-cp39-macosx_11_0_arm64.whl (459.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.1rc0-cp39-cp39-macosx_10_9_x86_64.whl (472.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.1rc0-cp39-cp39-macosx_10_9_universal2.whl (697.4 kB view details)

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

File details

Details for the file aiohttp-3.12.1rc0.tar.gz.

File metadata

  • Download URL: aiohttp-3.12.1rc0.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.1rc0.tar.gz
Algorithm Hash digest
SHA256 2fe218d80d1820aa509549db3266ec2f2c5994318b2f3156448134a71a59f6a3
MD5 5a68c60950c81ae931e41efa6d2495c6
BLAKE2b-256 fe0b74f8664fb7a7d51a151ae49f6dcaf40bf55203929212a0099b5fd5599883

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c1228b997bd0187f2662ce51839fcde0f0ed5a1beb399ae900c70aceabeca335
MD5 896b014892386e9e0b142a16144f03a6
BLAKE2b-256 318add20be1c557a8b744a648bdb59afe45ce58099f40c0d7c5af74d63cda019

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f6d9342c164af5261e90ab848d819e8306bc3de25b624f8b290174195f4e0c05
MD5 b66769026644eaa4bbd21cb8b34cbdd7
BLAKE2b-256 71d11369b35969a569e2adc456a3fe76c5b2cf9956ca8f6066e60db99cc9adb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c5a4e4c6f1ebe6d9f72bc9ecccf725c11233d462833114e6cb4c261c0e24bb7
MD5 5dd2a5a599fafd159f55ac443bd9f4cd
BLAKE2b-256 1378d6f10e45ec01fd6b6333eddae9691995846c4aab1bc13c8c43a76ce67e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ef37c7b4043876819c6e26491a83802fa70217b88393c9fc2d472d6c4d803f5
MD5 b8ff54985ca0ee5c8c3cd22f5f8aae07
BLAKE2b-256 b05939fe942419572903891362593f855ce9bd3e7876db654c5abbbce34b3cc3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d91e7cd221e064c5805b917d6a056210dbff5946e9fa56fa041669cd5c0739dd
MD5 c785ad3d21419af2f09bf0ee5293f4fb
BLAKE2b-256 ce82f7dd65562603b0544ee1008c6125f6394f94a3079c04b9714088ac13a18c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59046970149e898c074ab30de48049014ccbf46bedce3605136a9ec543924bed
MD5 9866700d6129c95239a116c4b1ba13a3
BLAKE2b-256 34adf91301b23a0c6527289f76ae52eb9b2d68a5f9836f37a42cb472e321ac46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 70244f82ce92eb85498f59a5bfe758bf54453daddd03651434422bbb2b01e0b7
MD5 78f4aed5e03605e1fe4f9ef7f2f17470
BLAKE2b-256 b72ec760c098a50d49b59a4859c9bb5ff683bc96bc9b3193afe1d0d39aafca73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa98e0c3785be6fa63073fb4bddcb63557877b512a1f8b8066f924babea8e32b
MD5 f1fd40a0cfdd25293acbc94517dc2331
BLAKE2b-256 a466a6bbe90055724b4b44fd205c3e9c275dbe26db368c3157e5d55f6a0347cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b4c44d579e365427050ddaa7cf11584c4c1a349269f90aa717ce2993c948a9
MD5 22cad91e144b976d87fc375b65a634c9
BLAKE2b-256 6b7a35082b1dcfd02084c47771a435217e9f56594a77f9ab9a5f1730486ad691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b898d0ef09a9fbeff4b60b9b222b2d191ed6741d9487fbe84aa3d5964f3b553
MD5 c9444d10ad5bff069de746017c4084bc
BLAKE2b-256 58b71cc0f1a43a1de95a9f28d939dbeb5265cd323632afb7c30436f9d2340b67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b76f6b71255698e24774fb44840619521a2b89e9ab62d1dbd94c7c50e0c4f3f
MD5 c043d3670f5693f64d1e91d2a6976c3e
BLAKE2b-256 4b172b4213657788fea5d5565cacd7b122e8b879a257d7579228ebb6b4fa022c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f338af0c27fe60da57b703a74d33d4fe7a99cc904413b90fe29313bc861e51d2
MD5 71c27ec1f15036af87f79a33b83977e7
BLAKE2b-256 24e6f560c536a726284722142e5e10d5e98ec758aee84ba74ccc94d3b2b0a838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e2e796b51516e512b213c37b664b5edf857cae4e263da130e222f62c003a810
MD5 11183234c9d0c8589f1c2b4d6d4b2093
BLAKE2b-256 9caf529b2b1c5b3c7928406f7568bfcb112afeed5265dc530dd10635f4fcf271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d736f64d5161b8515dd10839435111d7cecf98036733a9347c5d77dc7f4c6d0
MD5 74252da17b3496e6ac79970c456d648b
BLAKE2b-256 7960fb9a772b17fea7d7a6e8ae9c8413af78e40d75790661f350a01e4e1e88e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97a2558acb30b4ce0bb67faaa3a25ece5f89d9166dc71f38482d30e6ec5e354d
MD5 e39e1b2f8cea3ab02cd15527677a403a
BLAKE2b-256 3a9fc45cd1ffa493495836417c80a12dc0bccba632888fad4f97a8a5a1d48f92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d4b2fd7fd387ec59ec3be3cccfe3c4cfcfd0e1b38a8bf3d425375746f2e553b3
MD5 6cad6dc2f8ec85114881818811af90f3
BLAKE2b-256 09c83c1f3519f6863aae7f4279c38e24bce929ab7ec7a7999dbc6562ddad1f9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 cfe04411e05a58d7af40ccc6472e19a8953a15ebdc9d48b3cb0507ecb8ee1cea
MD5 d2e73514d60b65e523754aa1ed66187f
BLAKE2b-256 f3e9c5fdf956bb6ceaf91e8edcc88fd927e31404de8dd4d9dfa5adc5e2bc29e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 440.1 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.1rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 622ec9b7e35b291166db9c1f601176a52079544af1dac8ab31d72d75b605ed03
MD5 dbefa1488825699c8fd981ba30cc8a71
BLAKE2b-256 658c1531894601823b5d4c45f206d01f4fe41457c0ff1f619c4638d0557030f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 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.1rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bc1e82f8ef0d1b6d06d0be094fbdd368e140e3693a3042dd87a881eb0289c27e
MD5 65fcd962ddd6f0e2e3aeef60dfcd0b9b
BLAKE2b-256 181b8a7f4c267850fa514da67391ee9a5e479d47b27549c11cd26ff345705fe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4a02c484b2ba1d7be49d16bee50dfc6a257332555118189d0933a8971c66040
MD5 face179ed9eb0477c6b143d0d5201f9e
BLAKE2b-256 657c10791ae16d761982cb5d7d0c012fb7941bd24867ce0061ad33e35f31c3ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 923507251a92046ff9d42e643c3fa7124ce60db445a50289b3dea11715420940
MD5 13a352a31c23b98b79aec8c65eb03f01
BLAKE2b-256 e77472169733385cd55c00ba02d628955c143a85a110e807ede424c36970dbaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9f0dcacbe21d7740d45c8d8f0ba8d98379ba73079ebafbea6a31199415f28ba9
MD5 42dcb0bf83ebb0d721eaa8738bb72233
BLAKE2b-256 257481f760313c3cc9935ac78cd7b0237c2334909aa7b0107a5404205edb4241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 471bcaa0d15a351f05ed6851aac17a6cc964bb792df537a5f7e9a3ecf339cb43
MD5 d4eb68097d16076037d3be57e1febbb1
BLAKE2b-256 e32e8463710afb0b3d829be7d794cfcda3dbd25f35ba32aec9c7ddb0f8036e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 246cae7ac4094c013b449a8e89e4fbbc3fa95d6184088468d6e3a7eda261a473
MD5 e2e3f5b74e873a610c3092368e0ab14a
BLAKE2b-256 a4f8fbf587fbc47ae76fdb06fed4deac70cb623e80bc09f63bd8c0dc05087631

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a265dc98c3707c57cddc055e09296c533038b7d53b34b9ab4a47e74218e0517f
MD5 60cbfec3bee2ad0879d7bb4a7dbd5d38
BLAKE2b-256 977ab1957fb4ae767817aeff8634adbbc8192144a73f942f16eca4b02b532e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cbf166f32df7eb28c90abf863db053dcbbcb759b3dced92127beba303fe3ba
MD5 b40d07042bbe74c4cab16a5f546005ae
BLAKE2b-256 3f09797518d4a8cee6ef6bcf5fa9beef78c4e7148b0c524df48b25e0e2cf357a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5218e540179a0b04f46bfa8b2b66e0f5102da920a420e851257754cf45f0914
MD5 fc786da6f912753ca463866288fe3c2b
BLAKE2b-256 61f02e2fe4948077db8da312699e92557a113857e9040851ae21807c80567efb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 391730ab45c5a1bfd5d1e14ad544fa237dba5431559baeb0da0ed3eb62a76922
MD5 993d830c3f00c806eed2a58cabf38ccf
BLAKE2b-256 01fe0817003c12d013d2bbfccb3e25d6d96c6175b4b1a1b6ce4d948f59da96e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4cf31ac08cb523a92cd01b52731358f68d401beebd712c2e1c4df1555d95c9d0
MD5 77f05151442075fe7c172cb0a604544f
BLAKE2b-256 8d3586e9906a0101aa7b4a7d9e8440377ae512850054ef719757022bdb33c0f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98d32bc31f5f79adbc24512a2794ffeeecc492adb82c981841c277590fd79613
MD5 6b2d5696701ad4ed00cd839e5c76b815
BLAKE2b-256 de39971625d3e15aa387aed8d2f9cda4b6f7deb4fd7cc4b4b0e7da5e08f61e05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 24e1583ff33838fa5f84db2fa9912b73d5e82566c03b8adfb394a8f0d5768019
MD5 be06bf4a237ad1b6d120e8a327dae54e
BLAKE2b-256 1758ec519c0c69953abcd7a3d246583e4e16984642a9d17bf845744dbb07dd65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5cfbffaa52f7f5f28dc888335e4a4596c1ab6f278c9e5fe0cd0d0149a9433c8
MD5 e23600de36bc0157fb86209baa3576ea
BLAKE2b-256 2ed66710b3331dc6aaeed5a7962a7ff5378b8f7a7a22e6f627e3d0a4661c0201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 787db0f9a6d5ffc3006543b1145196edc584816ca73433640e38889c1caa477b
MD5 b19f7738098e7ee0faeea2eb2baeb641
BLAKE2b-256 376f3a3bf8ae71ffc702c54bb0b8f59d1139edb24edc411810ede24947de79c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 24c16ef8819bc02eca6fa954ca1a15f7c6924127b362f19177003242593bf791
MD5 e87797f7ce4366c250cdb8f2ef9d07cb
BLAKE2b-256 13d4f8bed8e5bd18c64258ea5ecbe55bfbe8edb657bd6365924db9b6c035cd60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 443.7 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.1rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7067cbeab7b109d09635d1d69136d2dd3a02c85a5158a6ab3024ca4a12da86c0
MD5 d5ce22c1a29af100591f1b6575b9d52e
BLAKE2b-256 3613f4c1887405ae07ccc2e6e97f0605b7f2fb0343f066d662a1b4e5fd80fc75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 419.3 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.1rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ffe1eaafa25978f58f3cd7829ad8945709b5426053d76823f8e895e6c9373239
MD5 3597f6bc8902d84e2596b54d0c83d8e6
BLAKE2b-256 ef631a142448655e35b84c6074150f565464f4ea2e0d01a174b8ee4aa39642bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4b289b7cf680d249d9ef40db4fee8cc109ac6536631d51bd0d3ca4cb93b8a6e
MD5 9ddf861e839e0e79bcdef8f02806d00e
BLAKE2b-256 259f5f7a78f488cdfb297746b9433b7c3ef39d50b9a1c385fff8ff3f3d5b1893

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4ea8f89677ad93f39308fe0811191ae28588bf417cddf91ef98d8b43abab759e
MD5 fbede546fa4b67153cfae9206bad4942
BLAKE2b-256 86de0b7237feb41ebde5619099dce0036fc4360d04fd99c847430df4a8f220c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 49e1c4db0446cc20a838c9f73dd8b1381baaa19a0ab58f5de5ea6dd95b3f2e91
MD5 62b47bcd7a1c17e0cf7cf5973153df51
BLAKE2b-256 4f5b521ce91f44a73c5341d608d4f7dca31d6d61b921f5c3c7969d867a23823b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d754992f97f30c50a8a9bd4d060b66ea628e941c94bf088914285414e61c4b3
MD5 3b7280210c48b267f0b59fa42d9b2935
BLAKE2b-256 afb6cfa80a8d1cea19d04912802b585226f3d7d83681b4b6bd00c30eb22f1fb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 830f462b404b815e836edad333bdb66aa01db64c271a1c15075dadae2252a042
MD5 0d16f18bcc269cbdebd67cba447def71
BLAKE2b-256 9f26cf353d1ae9e3819219419a5712beeea62445a8d974bb12ab4a2b1cee38af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50ccce466bd1dbc093a42e9b8d79047c0582317de3f51dcc43098674724895c7
MD5 0f8374e5b542c68a3e9a1f3b26f9ec98
BLAKE2b-256 27a4dc9f248ca1d6029d15063a331a920bf2185bbcadb2010521f09971b1e239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b9958d598157c718017ba74435bd58e4feb2138f61ad29cfc852a04eab336e3
MD5 a6e7f838eedaea963ec831eeb2eb0f5e
BLAKE2b-256 9d6d1ad97b83b66e70f6665858f566e29fc695e3088d3653fc5b4ad08dbc07ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 886e18d7a90184d21f60399c741d24d35e422ac1f2df022e8e8bd88cbdf3cf00
MD5 0d60ad321c5a472869c79730e0692085
BLAKE2b-256 58e0fbc06063baa15e69f366d66f68e2d20be2ea30d5d6556b8609c800f16f81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a57a435376260d205643a97ad54104a0ef22b14758504c463d8560d7677b444
MD5 cb3ec0712e6f2ca1df8759f127e55996
BLAKE2b-256 4c721255e7f393908358744812cdb7a7450a4c9c6d49be52196dc8de315e365e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cb79d7354d42545aae2e1139f1942033b5d07328291e23ff55bf5000734086dc
MD5 5bf15eb3115f66e057d12a21d3f81979
BLAKE2b-256 29c8836760bccc7431eea62ceb5d71e7666cf9cd84f8768cd657888c43503706

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f5cf43bdd59fbe1d7038fc8389b2a2134e5b7fafbaa5f515b0025f7ee1ba729
MD5 09af7a231a3099eb8fcd9f182200c3a0
BLAKE2b-256 3f511d6bf2489a0c7af517d1ebbf214b4bcd3c4ac9106e916656693162d87e2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 836b44328ed440b870fcc92ac492866fff39d7b53443fc5fefeacee85c31846e
MD5 7d7282506b36df3db5f78e4f8daa8c13
BLAKE2b-256 429c79cbfd1f7532bc92f9995a3fdf15ca163f19a2e6e91c9ddbb556ea7258be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e6506a7e1d8f696fb368d14fdebdf56c597a24ce051e01f9ea73ef5a118c701
MD5 20303b36f3ef70002ac2bdd27c7fddb9
BLAKE2b-256 5ca250b7e4ce580a92dc9ddf1ab2dfb33349584f2ad1c3d90a445a19646c6aaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b7c2ed52fb00136c1090199ab935842b0ab49b3ee46a30ad4f937a6cfbcec2b
MD5 63a56ace72c6cd7f4e7fed08ee128e75
BLAKE2b-256 ad3efa2c444be37f9061749f69a5692bd4b36d3872109a91c17fe86d15ce9d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0c59f06a5940f33ba07f7b3b2e1332cfb20b719976a50a7c18be53477cc6acb7
MD5 d2d55fcd60176f82ac36e44dccaaa57c
BLAKE2b-256 e147a84f9f890afd824d5d2ea4d0b5739685505868dbdb646ebec78507ccfeef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.0 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.1rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09c4783901c069ec043eaba264f7ac2d7e333f2223b4ffa023899e894a507b69
MD5 038316a8db89a7795368be354d8cf997
BLAKE2b-256 1152aaf36f83012d2cdd0f8b9691069c5f83492b03a6e440f97286a7a8068327

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 419.8 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.1rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e57940197dd48671b5f669efd7531269d3dcab5ac6e6e26d711e36a4111c4a8
MD5 1b2afd25c764d1181349755607bd4a59
BLAKE2b-256 63b19c2d2ba1ded9216ceacf930f4dc8a53dd482952ba1552ef8a22213b0fde6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5886909919882eacc63ab59a4c95a92875c75421b4ea36d21b1acd0db48ce740
MD5 4c34b0b4097639e7fe4f7afadd8f4d07
BLAKE2b-256 a0f25a5fc95fc0897f84b35bcd0377b0836957fb7e43fbcd8487453fd3694f3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ee6f48328ce0e1b4503ab508bc22427aac211fb1b16092e7bc78a1b89a941e0a
MD5 b32f2c60a1d6dc1cfeb7c866cb6f8a58
BLAKE2b-256 119fca9426a36ce976f4c93ed8c6fcfa68cfc2641ec67fe82723283c84d06d2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88f3e0668fc3076be225979c6e012fa95990ada1aa3e4b91f71cbefa0479561b
MD5 6f8514b8d1ab5e412c745bc9f461101c
BLAKE2b-256 33c87713efeb0a92822f699b13e2d8cfcb278fe8ab2172c25e9c90bcdad789df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a376e23761fe969ab27ca8bdd7ba809bac531a133998a5945b6e64bf1fb4036f
MD5 45214b4196aa735d7354b5be4c494898
BLAKE2b-256 bfeff6eaaa02f5975f6ca10b88325d1aeae7e9a3bb84d8b830205dca97c1d08f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e1929304682902e50f867f18e444fa37cb8dc1106f60ec7facf1520a29dbfee
MD5 67d5dc4c351eeee5efe0d7d6f15f94b0
BLAKE2b-256 b7cb3a63ca3523204ed381642e641657a25a63edb881af5a2641f276a9431b8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad72afbfa75ea24243026c86f4a901c380a241aec552bc5409b4b9c426f6da4a
MD5 7e61f04ff7228c83d53ff98d3907aeef
BLAKE2b-256 9e9c452905dbec1a6e7242c843200f0639134b82a1cadae9fc743f8b67e1dc2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e044c6dc4b94c89f409dbf50446c84cad161f56b1e9234e2258eb423ee776e56
MD5 59514a09b3fabbc11560a651e3286795
BLAKE2b-256 d6b37fc9a8fabaeeee908f8191a02d6be923bd79c8c2b03f6e463a1bb7f5e5b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62c4babeeda26b73172f74ef77fd53618b9b4164cd983d35fd0472a294189137
MD5 7269449915dc76a2f92a364be4dba6cc
BLAKE2b-256 ac89ce2dc952595a51a43118d654ddbfb7b918c33b46388a206e7a5fd8a45b20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5741a0a5274ab01d6a61f7032ddf6ba566d134fec5f33ebdcbcd5105a9b4c489
MD5 f3c997507ff1c1e6b621bc1373348a20
BLAKE2b-256 910f7ef65aaa35c9a4b5e41f6487c52ba5750463813ebc17abf8ae643c1c439c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 332524a17ddb7b640c71b8f26d0eefd60ae8fbff3f7b8a1db05b3483e13eea34
MD5 72c5b49496518c33d7bdf4215d3028f7
BLAKE2b-256 9fe2cb847ed37ca5c73c3521a0cafbf620819035e68639e73de13cbc60e4f1c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34cd0a57a1a29416d7e942d5180fa7fd18502b84a14b7d910bbb7ddede4b7ba8
MD5 8046ba1f326a57303ea9d8eb81d8a548
BLAKE2b-256 69f21a14cfb3bd3ad090f00c63c80146a102bff8c01c44390cc617fc06767bb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 96fe443f8a8b6dc5630a7b9270cb32f696754ae616ac517ec170ca3eb60fd0e8
MD5 2fb2b18def5147e3f2807b2ffea84943
BLAKE2b-256 a20f3cca9f2318654be2fd669030a65765c37422338b704ced9c9e102ec50463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 256136b97e35627364e970c7a3a48e58ec84b410c5f89622d1017f76c6340fd2
MD5 820db1049821763ac28cded716907bc7
BLAKE2b-256 bb3a515c9b93a7f210ca91b0089bbb1826261417914bc848f3f6c2a7940bec13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc1e5162bb1b295b98403454855dc783ff753a52c663b27103430e46805d6c5f
MD5 fcf2da8dd7d9103bde45886447050f33
BLAKE2b-256 1b89416c87f4ee14eaa4212552010fdd952888aab67a94a491bfe5c9ea8fba36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b34080442c18c5814502eceba9cad93d4c722e6a72e1d34372aab047b8cbfb5
MD5 4a43d9b192418b147f4fb250a7591d53
BLAKE2b-256 981c25b9edd77910b46ab3d5dc1bcc2efefd1717b9f761059536511d62fdd3cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.1rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.9 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.1rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e5b6b8e43c1c42fd25bddb9b1a2dff57e60a0625c69fdd4dc31bd7d02050cfc
MD5 e5371b820e9eb4fd417caeba7183da5a
BLAKE2b-256 4fbc4971cb9820cfe8ee10fe074655f69f0915dcc28cc87255adbbc4391fec11

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6cf19988b3ee1c95ae4db65e6c7170b462a730f46772b2c13d9f43f239281f98
MD5 526b83f03ac6bdd8e5e9bc6d4652e4fd
BLAKE2b-256 fb9657f34d0fc0043c20c0f5213d88ec7e35f6a6dab8f334adabae8fa097de84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7998db07e4a5fd667527676839e0660c5f32eeb65551216dd4f703878d2491c
MD5 1bd04a2c1cfa4edf47b7e4250976a4c1
BLAKE2b-256 f1aa933ebe0ed13235950be492cdc4b90060fbc70ec2d5f9ad74ffe10a2251b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2aaa255af2600c93587e2ceb873b06c98e277561e4e5c6ed4f0f03ea66e50c72
MD5 858861b95ec69a3f6740b94148bc1010
BLAKE2b-256 4165e077cbb8e28d46e4f9e21e8fcf47cbbeb73126fcb803fa2113feb4d02df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7f770aa2d91d6336b3cbe5661c1b80a92f50652af554322268ac656fc76f0241
MD5 8498954e0f01407fa569cf914ad0ab3f
BLAKE2b-256 b1dc56fcd9cf5472c6725858e8c281036116d9a998f30c9542cf90ed3a0cc0e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 308973d879114dc8bb5b591a682cc3d7a9f7803b20dab140cfe28d4d8d5a7e72
MD5 fb05b395f08ec6d05c41dfa251e31eb4
BLAKE2b-256 711ac17608f681752ecb94ee2d85d065fe860abbc5d4f0483f87919d5d765f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5275f9088fb5b373b8a46f9d3b1fa71a4cc52a8fab4b03f250a7c2c809aee6c3
MD5 9d3f66c643b21e5a7d99bb8a90b1f326
BLAKE2b-256 23e504bf7016129635e27f236cad62fa4cf411afda5b9ac5d329e81637611d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 703e8e900b0c83b48ad90b34ee91fbdbbce7a0ca5c004f952b58e8b25562e5d9
MD5 31ab53f42ed8b1ede9644258315e2063
BLAKE2b-256 83837801a7c3fce9655eaedc84dc414ab73fdc40ca3e8c8086e5fa3c85af3691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ea0ac1455fa4e49d09ca61c267a2ecd454cdeb8237d5fa3eff990209088da5
MD5 cf17f910425370f07f56276a1b580171
BLAKE2b-256 59f04b708ed41b8a6cbd613602605f830914afdd411d4c7b8e7a05a87d9e97c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac25cc732c6bf8027352e78e4013026779c40e5f4f8276d69b44dc981004c423
MD5 5b2a49c279da13483fa7d2cd80b2028f
BLAKE2b-256 3cb25151e5992ec48ffc2e012285aacd507a10b0cfc7920e823adb9073c430d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf9019a6f6842a95a4003f5324f131bd764b617fa836f5b52a8c0540b3fcdb78
MD5 e58a6a227453b657ac5071c7ed0bbb86
BLAKE2b-256 0f2285161042c921bf922d8a3675ca43e5b5be29dbacf241fc7d87a70af7859d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 17ce7326393aa078a72f0b4f0a08813ea30904a9ae85c968352098fb53d71154
MD5 9f045bbe1f8834ef80f0004f63c2b9dd
BLAKE2b-256 5e1c591ddbb589b35ad61333465c05de84d05458c39adb752f9d0bf167d37bd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0b70de451ab5da13b1e905777122f0d782d3641cdc794a108e607b812e1e71f
MD5 419f29a6081900d92c82982a8d16f160
BLAKE2b-256 b01e3e1f36cd2d41d5d919ce028d0ea439342db00f7e50d9924ff0b94ea6c833

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 279310447ecb3208056e9c925f88f58e47e63bbd022702cc95aa6b31a19d42e1
MD5 37d33f9722524034491b295e2dfec629
BLAKE2b-256 b0327621bfaa22f14385ec11c8240fc0bd35bd76c9ad04067fe5060968f75f12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbe4692c3cac4f9fa7354f990e524dcce2043093bc3e0c169aa8ab1cb1fb99fb
MD5 19c0e3b99e0e760355162ac6b5300db0
BLAKE2b-256 c5ddb2c800c78e161461a54b30298eecceb0f48520a390a97006b41777b6b508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f94ea8fe9f9d8c4eecfd65b78138be002edb515ace3cb25af1b20ca95431e93
MD5 0b84a1f29b835b56319189a2f7245732
BLAKE2b-256 79e0ca8d257e70aa659abd888a555f482e9815240e5bd71dd31324f1e70a747f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.1rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f36832af5d0b74b8d48e2a44eabeaec7eec82d65432f587a9edfc5f26598efc
MD5 3b647f9a5e82a0772485c62aba029c4d
BLAKE2b-256 e52920b662f7488e1a41a1f70cb957b858209536d4b9e91cf329853e3a679835

See more details on using hashes here.

Provenance

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