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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiohttp-3.12.0b2-cp313-cp313-win_amd64.whl (433.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.0b2-cp313-cp313-win32.whl (407.9 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.12.0b2-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.0b2-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp313-cp313-macosx_11_0_arm64.whl (451.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.0b2-cp313-cp313-macosx_10_13_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.0b2-cp313-cp313-macosx_10_13_universal2.whl (681.8 kB view details)

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

aiohttp-3.12.0b2-cp312-cp312-win_amd64.whl (434.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.0b2-cp312-cp312-win32.whl (408.8 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.12.0b2-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.0b2-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp312-cp312-macosx_11_0_arm64.whl (454.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0b2-cp312-cp312-macosx_10_13_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0b2-cp312-cp312-macosx_10_13_universal2.whl (687.3 kB view details)

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

aiohttp-3.12.0b2-cp311-cp311-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.0b2-cp311-cp311-win32.whl (414.1 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp311-cp311-macosx_11_0_arm64.whl (456.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0b2-cp311-cp311-macosx_10_9_x86_64.whl (469.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0b2-cp311-cp311-macosx_10_9_universal2.whl (696.2 kB view details)

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

aiohttp-3.12.0b2-cp310-cp310-win_amd64.whl (437.3 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0b2-cp310-cp310-win32.whl (414.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp310-cp310-macosx_11_0_arm64.whl (452.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.0b2-cp310-cp310-macosx_10_9_x86_64.whl (466.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0b2-cp310-cp310-macosx_10_9_universal2.whl (689.2 kB view details)

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

aiohttp-3.12.0b2-cp39-cp39-win_amd64.whl (438.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0b2-cp39-cp39-win32.whl (415.4 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-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.0b2-cp39-cp39-macosx_11_0_arm64.whl (453.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.0b2-cp39-cp39-macosx_10_9_x86_64.whl (467.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0b2-cp39-cp39-macosx_10_9_universal2.whl (692.3 kB view details)

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

File details

Details for the file aiohttp-3.12.0b2.tar.gz.

File metadata

  • Download URL: aiohttp-3.12.0b2.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.0b2.tar.gz
Algorithm Hash digest
SHA256 8426bf912827359539078a7679197abafeb1d02f9fab71310651435aff363131
MD5 bda5e622f2435c09ef3f05e4bf8e2aba
BLAKE2b-256 84cd955c9a7889f378bfab0af5f75de791ed6ddb7e52ced4a92e03fa18ccb5cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 433.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.0b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69b638894237ad0402ea00cab76c325086c2d7656aee39e8377bf4837511e36c
MD5 47fbc4ee54bcf3f0dfa866db55cb87b4
BLAKE2b-256 f5db3aeb31df88d88f208d2eea409f766e95d5cb07b2f090ece19d66bd0c6926

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 407.9 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.0b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 51e86f768c71240072ed8f3ea6deef7f7a0f85d8ba8385f4e87306014c966ee5
MD5 b639569457c28a2fcd51472c9a2530c4
BLAKE2b-256 c8b0608b16dc1b388faa746bd8e37800f36c20ce7e1758a9f10787871e2746b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3868d92f7af5a75310fe6aae469a11f9adbf1f26c33b268a434734fcd56eb400
MD5 3d850bf4548fadbc98a52dc79f684ca4
BLAKE2b-256 872891bce65bad8af949e401268540d2db465624bae1d5ce24a2b7ab7d39bf6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 46c15d804bbc040659c3da666607c150d77252be8cd55f8fa633185a78f46dbf
MD5 e720ffcdc7fc0631449b1182c2ae1ae6
BLAKE2b-256 b3d1a80ee3783164609856b99a1e5b5623ab16a33246468847184078ff015ef9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 489856afd54eb828c00779431e81cfe3a65049ca9220f386a2567e1a4b1997f9
MD5 e4435538325c08bfaf7a575eb1dc148e
BLAKE2b-256 e8bb7e6d299b8e0e22031c1c1b1036ef11d1f4d2c453d56fe366a465315440da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e13da3e6af5f7f27c2c975b096ee1ff01990212a45efba0838d9816494c8a10a
MD5 afbf5894abba8586b5fe37585cb99f6c
BLAKE2b-256 a1df0424e05d820ebc2e0f500cf831f9f9ab58e225a2fabb1e8e233edfb1c79d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f97d03487953b552d9ffda710ca4847b6991a9e1ae2fe6ee0677659dbf95af90
MD5 7872cfb7db3db26240a72f4d057c7cc9
BLAKE2b-256 95529791fdf873198d5f5820ca2412030fce1a48ba63bc4b38eedc15ff8eb897

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 712a00e9e4a3e68a351b6a561df8701da47cef3c9a1adab055a5b4be6f0f75b3
MD5 d412295ee5ac55105ea491b30666e00e
BLAKE2b-256 ef1492015b47982a3120c2d4db1fe1fa4793aad8bce31d92273982f82a03fcac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3586bad85365cda218daf92d0c1497828ae99f92820ce41e2791ffe8576c4ac
MD5 a0ed0f430e57a5219d11cc83432370bf
BLAKE2b-256 2ab0661171d541c59ea4cd7b671f907731cb2e9f2e45e627a0cddf402f59102e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab4861fd8e29010696626e676bcd525fcd834919c8338099738f6b2086a01b56
MD5 9b1d8a7f28a0ad280d0ba6ad98d1cb4f
BLAKE2b-256 69ff97601e545c6513aa0592888a409d0461b91fdc76526d1b93e3b02b48190f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 099febac34dd3a3221c1b990cee7353467a04edd13251e832530bb2f19ec4513
MD5 9ebca317a531bb001836b82f28bb8519
BLAKE2b-256 a8739b0f1938fb638431de45b1b0350d783ab41a3beb5440917d8ec881ce6237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 82a47b1acba7f5dcd4cceeed1eb483c03f0b2c73f39c13ed7df2ad0d33eaa4ee
MD5 e00461340eefb1306fd7e2a2b238d22a
BLAKE2b-256 c2ba02302118ace8f17b25619a0bfc102534c8ed26816836a76973cc348e6c04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82e191b2561b1f0c6c3e9754e08437a615a7e731fe75996a9d37017011792935
MD5 031e6a9857fcf7062ee8f333ec2b902d
BLAKE2b-256 27b6fba60500750b1444e33351c4176d4c13a367e885298a85a429d2a6f7824e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d58d4fee6604baea0466186bba019069eec127325516ce116c1c6f9410c66fa6
MD5 5966f61c062987c1a5ea963ddd440a2b
BLAKE2b-256 f6ef457e610ee8ae103b09dfbaa18db5b35be3d0affc47b59606c6aa1261821f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96379620c10ac4c8f9522450be086f44e82407fb634e213416e7b88d47421525
MD5 4937c4a5325d34dbfd8f5c1f27f40145
BLAKE2b-256 828b3f2fc1b1bb37b1010cbb5d0d8cab9ce62ed7d1a8d1618d723657badc2bca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 180346880267082601f729144dc64bfaabc16fb69b471943d90a3eb5c8a34f7d
MD5 f3ecaf8e2edb9e01c806a5ada3b6dbb6
BLAKE2b-256 6d5a44708cda98c23eafcf4195aa6177912bf9084dfb9b198be3db3ca4b519cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4b65861d81d3b4205e6d4e340a3687c160128eaea8b34cc2263130b921c62a3a
MD5 709e49f1517ff8588332c2915fb67c72
BLAKE2b-256 f7d2710ade0e55c6f17915037899363ae46cc22567f86ceefda872ea191a493a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 434.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.0b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29fd14356cf450561e23216b49ba734e827a36d1df8b0535d82c5f26ee5a863d
MD5 b523565e5edec7b8a865d2b5ec64673f
BLAKE2b-256 0e78e384628bf480581998631cb6ce7cad6ed91478cdbeb3d95edd98da67ce1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 408.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b2edc122d9b2d8549884b4d27dddbbc93c2fd4eb2c67b5e36a106692e007ba04
MD5 4c5e5266907386fcfe545a4151503f76
BLAKE2b-256 46437fd3f0d3a1cf0ee9007af7774c9e0846a82e20b3c00a201bb73fea8d41a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 099c52bc9177b76db9c57f6220694c89bc072857715df7ddbc0fcb3005b8576a
MD5 89ff04afbd0368c16df9c123b0366611
BLAKE2b-256 cbe5fbab9859f442fa1d4d9316cef37ce5c0f616152469fcac0fa9c59589ee42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b85230a821bd70720d0066055ad9a86ed16400da7d319566b5abe8323d54ddeb
MD5 fafd1daaf3662f9a65e72e25ac34755b
BLAKE2b-256 9cb4b01d025396cea152eeb16c5e48667988c32b1118fa92f6a639f224505238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f83f3b577832b215286232ce8cbae80d062cf2595bcaa7e607188ca8889acbe0
MD5 7fc5f495773e5c529cd59ad51838ef64
BLAKE2b-256 1aeae2b38171cc785c4549357119ae797fa71bf686078259457554ce2b8749d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69d832ada1095e13924c6737011a7bdb011cdf457370631e71aae3d67fb3aa94
MD5 9f775c9b3b57d8493a7a0177bc723a0e
BLAKE2b-256 78d96da856b609417ae68610fac862a565900d6ff15d43950bc4d8f06f9d3eb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8f7d924b4437e1facb79b2a9378116413c4a6702ece5755f20198d5485320f0
MD5 733b8a893bf6df2b61201f17131c71ac
BLAKE2b-256 4c329687b282a0f825c5f45bc99060123bfc2a663e8a0d4dcced094d32416d30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 648c8f5719b351e585d949075bcc24ad7d26842e6b4e699becbfbed063ee91f6
MD5 86b347a085619bce20651a79ba0eb4e4
BLAKE2b-256 eb052554feac046592fe4f620e74f63af9089ac44a0aab14de12f811530db797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a5417c43a2a573e96864721b59958f3467eb03c7ca9520e8142b004d618abea
MD5 95a00249a6d89e4b69c939798a177d9d
BLAKE2b-256 acba8db045c3758425d08cb06e74bac8893fdb93582bcbe1a500573d88b3ae3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c86f31ec5dc83f684783dd1fb73da1426087db8512b39c86083675d8c1dc706
MD5 af5a01b0ec4549ea314a00dc190b6f04
BLAKE2b-256 a0563cfaf19abef52432ee07781739e2134b1452dd56dbb33790408119ef343b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 796d48001f340b984ee44b96ec5401dd0e0e887aa6382ce4374782b94390381d
MD5 9ef5cccad6cc850d58ae2bc6d0642de2
BLAKE2b-256 9690b80cfec0df249da7b0b8a56ee74a15e1ca4aa16e307eae5924008ff9f2ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 536b2e24f759fc148bc0db379b1200584df434535f2f4069215c4d718a4d49e6
MD5 8155779a5cf28f4272cbafa7af4b99b2
BLAKE2b-256 d304d89cf49cfae9d0e65e3e50a1736b70d571c5a5ff1c9b23c0133980a6bc52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b42b9a2bebf0661c47a91daa4cfa31371d9207a4c764c0edabb83f2af14aa95d
MD5 b35c8c10b0a7008fb03b38409745bb0f
BLAKE2b-256 68f15ba1a1ab2d08887ae4d933e528746814d057706ba14e1babbb5260a1500f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e12dffb2858fcf4c8ad1e091f110148d5ca54c1207149111e39fdb9bf11e25c3
MD5 918bf865c90dc2a76aaea67f41774a4b
BLAKE2b-256 60873cab4cd83bb728fe89f04d1227e37d06fe7e50cb8fe768f8cf2a44762b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abdb245512131ddefcf90d2ed81f9c27ae6b5c8169d609f25e2230f47c1e77e5
MD5 78989cb5898bfd6d48de4ef5538803b8
BLAKE2b-256 b8d594153eb36805eec270f9cc07d8687e9b779e446ccfa06f963b4bfcad3ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 922d4a2da7181078f660bc53f9bad3a183f8bdd32fc76fce31407d9f3a0c4f40
MD5 cf8e15a1f7811428f0e35761a4dc27c7
BLAKE2b-256 b2e5c01a5cedd2bf70733b0ef8dd663d0a915bce4105ad972ba98a2774e34e15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 14ca5151c477e0dc5308dd7048d61a81b32c94f79ad3219f000cefb57c7ea506
MD5 fe6af896d50c6361262705c5dbbfcace
BLAKE2b-256 0598174593ca62b8381ce00c2d1e0de8a0e347285c5f746cab324a261cf0960f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 438.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.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ba1fb27f37eae14e12b330e371ec93678069ec062c3e967ea60a11cdd6c7359a
MD5 c92ff60ed76d6dab2ec716378d5ef1a0
BLAKE2b-256 1b142ca2f25533afcffdbcbbc0e0a30e2c4b9e594737e7bfaebc957539c6d336

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.1 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.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0f780c3c99457a809d510dcd40eae1bcd34e38a9658c6201e5fcebadf60a687
MD5 380f383bbf432764f0d5563967f3b0c3
BLAKE2b-256 f6a4a3480f6f81dd4fa4258d79a83927d5a44259c01f364f3df5782de544a399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9dea71fcbc562b1c8a97779ad02b25c0cd2742c00a71369bd9baba619e080f0
MD5 cef212273087cb11793121ed25f7e19c
BLAKE2b-256 6ec5a15775ef47e8b8989efc07bd4a1b10174fd3f9032da2e7b290099849677e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d53888741e4fa7bd3df9e629e62db050563e48b787aedea23c3ce7ac364239cf
MD5 893a428ae0e3421997daf2918dc0eaa3
BLAKE2b-256 b78517ffbcc4a03af688a44286c409bfb71bc1252dfa331a160288b3b03b530a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ba69bb3b8994ab034312b8ec399d9b333e79f79d01c16e3c5d45488c790be5aa
MD5 e747ab770297b0eb9f76f162f2047c51
BLAKE2b-256 dbce0568cd8f0e6ef9c2c691173cf08521052e882418cde2a427ec4c3fb47705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2104d3e2740d1c060aa12dcf439ac504a8751c054abd8712b6dee51d6c46002b
MD5 234b340d70e5cea8a0530502f8ac7a85
BLAKE2b-256 7e6cdcdc65556630b7263580b407aa3c107400bc78bb450262f2238f4703a05c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f435e238db20466019d6601b5eee133e8e866e8b5e956fa0a512c7bac5bd166b
MD5 10273543e86f29910b60b0729665e629
BLAKE2b-256 d550b8208737bf4e87fef2ac347c724aab4628ca914bc3879a1142ab68661eb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e8e1703da98ecac77f7b3699e1f1fb15c4aaf96d5f6ed14713d059471c10f61
MD5 1281eca3ccdd56f8b548ffcfd2d8d4b1
BLAKE2b-256 27a5a8ce3d76b9623a1aab2e96d3381c12379c47c1f4dedfa822496ec5d02c7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f77635cc860cd8222d1a10e1449c9303bb42ac0fa53db4a121a21e40f9ac98cb
MD5 3dfb5bd2816f6b58ad512c0898cceb23
BLAKE2b-256 865a0888f8400ed41bd6fb16ee4271124bc0b1d5326a4bc86e2eb4d696541701

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 191e236b1c13e209d00a5dce9e5e6df2be1417e222d9221ec156e0c8a45a2a34
MD5 0f9c2a701c28c21fefc7868ad6b950a8
BLAKE2b-256 0a3bc970b34c98e221326ac1c7f940395062e739b15dafa2bda2b8a242e77605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c79e8e2f1e8e25d4e57848fcb375cf88bcb186c86195e578ad1bb9a6316d665
MD5 c6205fa00fbd0f87cf3d35591f1540ca
BLAKE2b-256 953aafb3486acad02574a208971ab0c67d779a42174aac1462cbdc24bf30bb00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4c320f8f63bb28a75b38c95c8b3e8a5cc4c3dc190be0f444663642f7a4be390c
MD5 976db2db62cb8ad998c8fb4cd10ee485
BLAKE2b-256 2551b96ffb3cbe70e7ccacb1c0b4199005728ed13ce51726cc469c6194653ca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c41fa7ad90b4b6ce435c3aa483ca605490aa673c6d15f679cf5032b33827c27
MD5 c11377d0dd5f8a705983dafcb0ddc4b7
BLAKE2b-256 221001c07a3aa55c88faa6f46771a549b156beb373a64cff3690e3561a26098f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ecc53603c0840e001e28fb10db5353e29a392f5032e3df83a01b1b25040b190a
MD5 c34a6604907e838e80a84709eb96a46b
BLAKE2b-256 dbf86b178bea9ac8d524fcba59f435e48ae4a874099e8b2bee50d0c173af3b2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 229d3d4d322e184fcd5c21e374f83c2ecf729ef89fba803b35f68f886be6847d
MD5 29060b3a65d270d92e03e92b7c1c1686
BLAKE2b-256 15baf44d52bf90e4856208dd071cd5442bb9c741a6f12df3406d8c1ac2a9666f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7ea652e995eb69b936863d27c33da8bb5cc6ea0db77047f8d80be15e16c2dfc
MD5 6d6c7944ebf09bda0d70b19a83137bfd
BLAKE2b-256 1b314ce3bf56f1a42e875621d381bd308f7ca6e5f30c8fc7b727abf038f6f65b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 29f1207aecce9e434d65466ed55f854d6d78155c83bc937cb7f2323880b723c9
MD5 d8bf8be6fd8177285774ebe002112e14
BLAKE2b-256 b5f99d01c0f9c22fea9080e2a1b6cc0d4ffa42734173b4e97c02955e84a0ddd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 437.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 def9c587eb9c6efd201eae8fb72513727c57df4b712f1162e5e89514fac5b94a
MD5 af38f0a004dfcc1df9ca1947d9fd65c1
BLAKE2b-256 416e65facaa7247098e1787756d684652ec420b0c1f1605c03301e56d86df30d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.6 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.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f5428285cf821965635442429e53cbf5caf8a8786fde3c94f81b73c32837ffd
MD5 97c7fa57eee047761455ee58b8c72585
BLAKE2b-256 8ac585031b5effe603863bdcec9b0fab6ebead121a2034a01177420913e89cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 350a2cf3546c62ae6b13a055b2989395ca245f3af85f8cfa687cdfc7afe591cb
MD5 411b9a27a490620a166c9b65091e2b91
BLAKE2b-256 2aa50c5e6ebdf80b38e8d3dbd7c2c0932e20d06b34a376ddef7c8c3cc720071f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 1d0eaf0bcad9cb5edbf6868fcefada317094b7f1fbabfdcc9b9e9eba78be0813
MD5 bc0af80caba4e217842f41307f2886ba
BLAKE2b-256 0266dc9c14287951d692e48d08a7b4e8b6d6363e11d47550903fdf3c8452c69a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 32d7ef236b6cacded2ec1769c6491c71fbc869201015eb169e6267e96fd18106
MD5 4033b7aa030ecfb4b6feb43b6beeda8c
BLAKE2b-256 103c937746ea89133f9f597a4a82cd715039b51b511890a94cdc220c8b0214f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1856a3f61db07a02bfe3e38250ec135e682af03d8b798eac319b1cecbcfb8737
MD5 c0c2b8ff1da3d94dbd758fa2b3a9eed0
BLAKE2b-256 f499534c7f488fe1e381d3df025571a044452378804b20ab155b8708adb82268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9d55124b0fbb924c0003e0682133f3c918427c8fbeff9bef94eec71ccfc5abe
MD5 cdcde23f1c2d82cc6f00ccbe7319c55e
BLAKE2b-256 1970bca06ff8cb7529483627e0dab4373392de76da4ce433f73f1abecf83404c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfa19c14dcdc5d07d2446e925d191e91e75ad67cc14925bd8518c71613688fd9
MD5 6137cbf9b594fc208b272767161e8087
BLAKE2b-256 ba16431270c10ac202f0d174acb22bf412bf5f94bf1bdd6e204e1f8f9834667e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0b3c96dce1ba2208e28e9b86ec92011a24cbf509a9e71fd42bef3447806b7e4
MD5 282311f70fb2422172baa4bcfa8600e5
BLAKE2b-256 79fb49bd4922eabcde30e36bf9997f3622b63ecc719a244ca2714b1a172e1f6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c78665628a135898400363db72e77aaa8f1dd3b780184aeaf36c572f1295d681
MD5 23619e77d4893039dcfc7e8d15b3a84d
BLAKE2b-256 e33e89cf8a6b9f33ab36d379557113779db14ee56eca21afe7df0f33315a4eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 399c767e304b5370ba1a4e59c2fce1c0b59345b0dcbf310e461339e5eda1d212
MD5 c4122bfdaa7be2d6d29292d247da7b6b
BLAKE2b-256 3c7379c84ed284e40880574ca56809f826887b4ce04dda83d3fa3424f5f47383

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 841c1fe6e37baca241b5eedd9068d1d507f462def1ae1621e7e2a21ec44eed30
MD5 59d2434767f92037845162fde4fbda16
BLAKE2b-256 85c0c218afa52140be9f7bcef9b812d8d2bada64a1ae9c22491a46f330cfab17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41d4e71bc9cf3810fb74bb11ed1be8f95e9042177421f0cf01569466b154b909
MD5 e0b34f05d260dd35f0c80d48f427182a
BLAKE2b-256 be078e2004b7ea9fe6696638c795aa04ffe7fddb940c22dc5085ff539a474d0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 690001005173a5982fc1dca317860013840fc219e006330ef4675252e3e0f007
MD5 c591831e80f9581f856ae2b529d21b13
BLAKE2b-256 b7b74bf2f79ba1f9fcd66a78ba6e61af93cbfdc7f254a7d0fc2b86e8bb925f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6777679696b04cfc11cf0ffd6c0c27cfd1b12c019d479bb4bd1ad8dac163df6f
MD5 274ac11f57f12e284886c041fa3cc58a
BLAKE2b-256 f00b3301276405710648512e289e639c0dd7f9b5f3ca877c9dc95b4be2288187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fa26abde32afe8f577b2eb1a280f1bfcecc36e00271940c9c206992ead313d1
MD5 1347dedae94c2d36dec38f084b4e11db
BLAKE2b-256 4d71db351bf15b236205ac019e40509afae8111efd816ed5c102f779e23b20e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6a850d7922c425241812d168877f69fde2fecd083e09d0972ce5e8dac9935542
MD5 6ebe302e77e49119387bdcd797e80f9b
BLAKE2b-256 f9c870965ae31ea8f3829f1d9da2ce631ab85408cab7aecb4e58491891c56f10

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 438.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.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bba63fce7538a13ad80788b848e71040197c541a9d1ac0b1fcecb14e30404542
MD5 d5bef0243680ce3733913d598e595acf
BLAKE2b-256 5ba892c3440742276097259d1ca2792704aa6d81271cf147304124db951f0f54

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8661f22ed477831bc30d7d9a0a7b1212e09d2b24cddec3ae74248b2e7565e95f
MD5 92ace1b89b3b9d8a62cc321066a9ec7a
BLAKE2b-256 19699ac21402e50248c80635eada54797e0285874ed10b58d34516a375d2f32f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 983e0afe13b23fa9592974f15b9fe2c165d7338106f9b3acaf8c114c7ea9d36c
MD5 34bd4ff2c8227bd3b7cc3db3b80ee525
BLAKE2b-256 812d59b1291f209a1abbae499c4418efd2dd5c39d1fde8f88b06757590e81851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 46848c4fa269d77aa7348e793c38d872d27fa97cd69ef583d8c31120ac7ba628
MD5 5a1ce21a8c6f09e3cbd4af072458626e
BLAKE2b-256 5bbeef25010847b115781b2ee37944e3c0f52d2867e5ec1c5ee0cee14b7f9526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f06c8a006f14c8a394212e283a102f14b6a194506f7b30c5c9030cdccca39bb
MD5 a4a4543819d384d69a85db00a87d4dfc
BLAKE2b-256 973dd79af2b41abdb617a246d2da289251ce154f47be6700be6dc94b9eb51763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c48a45c30c4277eb6ef551a4c12395cf9414c76b0ce9e87817fb935c05c1d884
MD5 9db18b627e53e1b861e5a4c38c0ae65e
BLAKE2b-256 9de3735e0b7e4c5ac431802992c80fa63f6b96b6870336c85200facecfeb4c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b6cd09f984bd28298e79f9a4f293a518181053efa2e46827aee67c1a83b1d862
MD5 90503d2032682be2cb20c2a5d8450d2c
BLAKE2b-256 2eee2310896c20660376a8bab69e0a1abe7ae8b401c7686358a5bc0e7b9cba72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20146df69ed918f5c05f25c1817869d38c3c06b1a924337b729e3d010d2ab004
MD5 44ad010247b529874e4f91bbdfb239ed
BLAKE2b-256 ab8374c13ed36d738b432db729b46e53448495771548c4d816aed0184c38666b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08f85fcbb003f75292eb3dffadee4c93cbd7c6a77a0b9e9b5c616e639ccf4a39
MD5 a7b37123b8a612abd901b16c9eeaa334
BLAKE2b-256 dbe4091ee851b347afc0b7f7d9f103923cbd3be96740c5f0818d7fed7e83be0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9f239b4977fe5120d8909b471de010de4dee9751d6a53700024a1fea38f431d
MD5 d8a9d90d1ad3087ec2d4cafbb1fc459a
BLAKE2b-256 0a30b9585030edd5937bb75a40e2e139878f274d24994cf32c10723c9ee9d6f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1aecd9407e949ebfff6480323408f7c7fe8d8597da54f582644b2ef0c1dc89ef
MD5 8d3af69b7b88bda243f9faa9399e0c6b
BLAKE2b-256 150864d32b01dcba3598cd6231f442a21625d4379fda8a31ae31209314b242de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 62dbd3863384cb7f4bd047241f319a2e6b70b3a1596cb85549e5cd2ea4e2327c
MD5 64ccec7cb792bebaaed690100800053f
BLAKE2b-256 0c4260318543dfa23c78bfc8249dc37ab5277e86cb66525307ccb26528778972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 620468619e195b8c70ff90bb75fbeb23d83a5d4c57b5bb9046e21d75cdb82e6c
MD5 87326d2267498b39ad664ebd1d303c58
BLAKE2b-256 6548042d31698c2fc79e7bc39fc2d5e9789a587599e1d0193314150c4a5fdc28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfcb4b1faaf8dedddceb21284047cab24a85ca73c0d1fccb335e61bc97e7f52
MD5 077f39c9b5647f97d3f2846c623560f4
BLAKE2b-256 678c2b99a4cc2079e91acecce9d49bc377e61efd4999577e930990c048c9ecd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ff0f02ec78ef88e5a9f72a1c6ae2741017a8cc1d1d349f17be6552eb14c3be
MD5 d520c25f23bb4096a45be4a521885954
BLAKE2b-256 d9031410fc78e030f735ecd755d9b7b5504c02e5885aca347ebd1a4fbbd71d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e85ffad32d5e0af8610e05311e6f1c0d58f3b13908b1e33eeb958f0e58cbc448
MD5 73a1624fd1c964af41546449c3524ec9
BLAKE2b-256 6d64788f0fc952cf98808bd52072bde744eccd07f4c6966be69256bf5d912a31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dcc2c9c40a2218f4ee3b630027dbff75963b4b043b64575c74fe92b21c46a388
MD5 5099df4d4f0230d2f96444939f7cdb55
BLAKE2b-256 01ba32b66e9b7959329622f8db0407dd145cfc2a27f37f33ce66d39cc85cfa34

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.12.0b2-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page