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.0b0.tar.gz (7.7 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.0b0-cp313-cp313-win_amd64.whl (429.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.0b0-cp313-cp313-win32.whl (404.3 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.0b0-cp313-cp313-macosx_10_13_x86_64.whl (456.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.0b0-cp313-cp313-macosx_10_13_universal2.whl (678.2 kB view details)

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

aiohttp-3.12.0b0-cp312-cp312-win_amd64.whl (430.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.0b0-cp312-cp312-win32.whl (405.3 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0b0-cp312-cp312-macosx_10_13_x86_64.whl (459.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0b0-cp312-cp312-macosx_10_13_universal2.whl (683.7 kB view details)

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

aiohttp-3.12.0b0-cp311-cp311-win_amd64.whl (434.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.0b0-cp311-cp311-win32.whl (410.6 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.12.0b0-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.0b0-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.0b0-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.0b0-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.0b0-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.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

aiohttp-3.12.0b0-cp311-cp311-macosx_11_0_arm64.whl (452.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0b0-cp311-cp311-macosx_10_9_x86_64.whl (465.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0b0-cp311-cp311-macosx_10_9_universal2.whl (692.6 kB view details)

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

aiohttp-3.12.0b0-cp310-cp310-win_amd64.whl (433.8 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0b0-cp310-cp310-win32.whl (411.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.0b0-cp310-cp310-macosx_10_9_x86_64.whl (462.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0b0-cp310-cp310-macosx_10_9_universal2.whl (685.6 kB view details)

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

aiohttp-3.12.0b0-cp39-cp39-win_amd64.whl (434.7 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0b0-cp39-cp39-win32.whl (411.8 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.0b0-cp39-cp39-macosx_10_9_x86_64.whl (464.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0b0-cp39-cp39-macosx_10_9_universal2.whl (688.7 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.0b0.tar.gz
  • Upload date:
  • Size: 7.7 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.0b0.tar.gz
Algorithm Hash digest
SHA256 d9af91b23a6920dea0c37b30105199c3bb4dfe24649bc1a51ff0ef31e3854de6
MD5 69d180cc3cd580b9e3620dc780195fe4
BLAKE2b-256 6825000792b567d00bc16226d2bb0578686b79c95933d06f3f6941140fc38807

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 429.8 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.0b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1d676971aedef2fd33d893ddc6c98c2e2fb67eb2cc4ef7ccd9bcc435c39d635
MD5 2adcb2bd14fec313b98c78c72036e469
BLAKE2b-256 f71f7f0f946e86839b4c048bd7d437fb351e268c68b863191d6dd62e73cda752

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 404.3 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.0b0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 904839edc38d6897b9ced448d9574a2aad7b4b29c3010a9977eff921d0fe98ff
MD5 dbd10a901d826eb558487cdafb7dde0f
BLAKE2b-256 2fc09090f9c4363c1e46a9b90ef8bb2ce6b412f5e6452db37b7a14d7157147b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79fd0dbbcfd84a9ea247378b3f2c1f1e89f94a594abb0a8207fa2718c6d6699a
MD5 a8ba663ece7c7a635845b5b3e7e6ae97
BLAKE2b-256 857dd774a7eb92de87f65dc8ab7797161900099f8f1e2b9e18a4a2db41f8686e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 146224257974749c05d432c592c4d3d5e7ce54c3729e6f400ac6241f20652895
MD5 100878853719913ef0d933aec415945f
BLAKE2b-256 44e928786507da6dc06da6c4ccaf4ec9166dd5d14329b2c2adcf1da8a1fc8f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a0bf4ea89b4152a9b1f0646c4c01c7d6a948a24c344c673c7cab558e1810b6f0
MD5 63da3d78f71daec12975e8e86991504c
BLAKE2b-256 026b878eaa7942e2ecf39d8d7771deee211b43ffcd991400a720ba44f813851f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 260e84b530ed337ef87248fc67eddec18e76cb03d5e865a956c48808c754c159
MD5 f999d7be6f51d7612181c48be7ae0a3c
BLAKE2b-256 9d65934349aa535d97c308d79bbe545551aec3a1c105b0c9bdcd8561f980e0e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5574e30f8b1d6d269d6304e8d6ff015c79b329aac595230eae2349b22f1d40b
MD5 8f97bca1338a54d4228eda54b929f194
BLAKE2b-256 ea3c7fce2fbe604ef7609d875757740e93e3091c866857ae160682676dd7dd8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4952e623846a15ac3f95ef40146c68eb3b2932b379ffc668f16a62bf21eeeb82
MD5 1e5881b2bbaa5944d0e8f1c92786a8f2
BLAKE2b-256 8326475a3210e27cb7624ce63568939d90307a5019cae5bcb0b9b5fdfe6b1211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2489082e382bce887ef9d8eb63cacf889cbea81781c51fbb8ac7bb7c6eb3588f
MD5 88ebd9df50a9a7fcca731d1e94ef8b72
BLAKE2b-256 3ce98af8f6b19d9018c5754105f5fb58f3783b2fc0b7831c4ffd2f3343ad44b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f3d8c615a429ca0704eb0af07ac66a66d841c760691f3f2b0e0ee163fab7074
MD5 1ab4c46b391e256827795f8323f83705
BLAKE2b-256 d61006837800ec7dea00d978f3cacb879d2068bd31e499c17adde98133b6a680

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cfb4ad758b5db936b88bb46b00c7e9359aecbd15bf18c82291decc480467ace
MD5 608d8e272031c1010fa46526af71bce8
BLAKE2b-256 1b4e76ca6896dd4096e3049d454f2650c6f5eb0c0c1c93c3921b01f009edff2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 70199a04cccb1607edce040436ca11d888b763a563cdb2cf50e8566b431ec3ef
MD5 0db708709345b4d140064964415ce7c6
BLAKE2b-256 d266b21095d89801807c3c95a1cd0bdc1054476cb8c27038bb7cdeecc11873ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee385b569e9e9ac53ae05a1b6d2f75b2a5cb4e0fa6e5df353b69e7de53ec99c6
MD5 c2502d6e88954f5628f337595fca8022
BLAKE2b-256 436e0499d6f1ddeb443e86ee1a34514781e2fd9e85f849da71b8a130184976ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 63685414890ec144c7eff253ce73be8d336aa486257dd6371077758e3c0583c6
MD5 fa2eb420a7a5d0c52da3b90dd2202a2f
BLAKE2b-256 4a21b876dd42944c0a0e37a3c43412ebf8f24f5e0d91202befbc3da61dd012e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d3c1fbd67a8a0a59ff76f288157461d7287c149ebe75030a47df279c7e00512
MD5 ef0a12655c9a948838126279da135a00
BLAKE2b-256 42d3047f97d2fbb66c6e7e061e402307ba35b94f1706a093e8f4a1d11abe5efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d4fa253bbf20b2ded2d8f0261ac0224409e7ee5c55ed2bc6dd63959f1222bd4
MD5 f8a2f0bdcf0114c6e9b906b887c86a7d
BLAKE2b-256 787806217fd7a1633bcd111ca84f23555446999e60c2c1aeced0224b0fe5d1f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3afa90bd791310fb18159c49b40986c0d0bade8c2f0a28382f701040061b9d92
MD5 b2b782990c54a7199382c36e07957e60
BLAKE2b-256 6cb7aa5e9cbde175bbc6001c74444bccb533eb9e148217a1bf812f144f7599bb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dce81664f9f84f5729faf7c3326285f9ec8583bac9756aac2b846f5d3d089187
MD5 13036576eb4fa61d4321fc3fc39fed0f
BLAKE2b-256 ae7aee2a4b9cc8514aa2b631fdcfffb4bc085186a97d9ae7bfb60f6035a98073

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 405.3 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.0b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 170f4c4e82b81a48bbf369097719c4a390d8d3d8ffd90a586f16e511c35afa35
MD5 65cf4cb22c69a2881d5c79f1c5945504
BLAKE2b-256 df72cc0d48673c8e4e1c35a6f449905f308006e0ef41733b3275ef1011202731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae3fd47b3bd5c11f4f60b869f4537a1a45e8ca03c78e043b56b269420c6c4455
MD5 fd6386bf714844e0f2db8b5eebb7f210
BLAKE2b-256 a1b62a722356747ccc96f28a8383913e0540743a795dc1829403c7d24e1bea52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8f9dceea85a656aa580a645647f0ae5291f53d5efa0a1f8e914d92b99b22e749
MD5 4b81e25a7289a1e136b5c89e0c3f49c4
BLAKE2b-256 ac0a0c9eddacf5ba4b28531fd371887124fd202c06f83ec12bccd0332e2dd157

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 096ffa07bfe6f8830605902f78315bd2135e89db2ec1a9315d54fd5a50e115c9
MD5 e7c69d3d36d5846043ef2c1c55c4f8a7
BLAKE2b-256 02c84eed30c255b34a518e8bcbafec184e36305f6d129c28f927a1c1ca0da60e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52e830b7581657147021498be999801dacdae52b56d22dcef857facfb4fe7e5a
MD5 f0f413855c6a845eccd72b269bf3c829
BLAKE2b-256 a094f9f76484c062c7329930a0be6a0d62b893d2e5021c958f5057de31293371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9dbd7ad751a8108ace085d85b013031b2bc9ddf3b06bc8ef9cf938bf59742c2b
MD5 715dcc279b359f871f5ef9f012c3e6f5
BLAKE2b-256 1c892a3a719b4ba36a8bbefd21d499b2f3f688ca49610a4ae960bd36204d0913

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5d34471d294307796e6f9ab789988395059a57a72f9879ab0ccce6176395f99
MD5 61cf13b1b7b627e581f6bfb9e56f0910
BLAKE2b-256 cdf3030374da91fe283a5fc3fd04058d02f45b0aa986238ba42f3216597e11b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a974044c87d37f4d8f7b3bdf95f61c2764eca93dbc89c71ae63327e37ae8ace9
MD5 f5aad8749e9b7d0d69d22fd6f9d6ebc2
BLAKE2b-256 a4d521c820e4c95f0b699c3b20f484af82b589f82332eac04b20616004779bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a42ef14531bdacd7c8557a636304fb20bb74e73acf29bf422870d99b9601cd44
MD5 b580b9f8422abf257ec8a7973cdb4e2b
BLAKE2b-256 1b5108ff6e3020d50e63b8d89395b55ee111ba50f26cdda09d0cd8d59828a949

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd7c7a078af234faf5b48f6924670600ae7fbe6e1ddf82857b18997313f5c8b0
MD5 592d09d55059d6a1009d188ccb04670b
BLAKE2b-256 4107b4df85526a67170d99fb0bcd9bc6bac407b6784c41a1e444085c22e402c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9a633fa84d0981466761fe6f74bfe6addbc71e5e35a41f11e7a8df729aa8322e
MD5 f317cd2563dff46c6ae7c97f94afeb9d
BLAKE2b-256 3d903d1d378de87195c8918da84f2ed5c03fdd221effb05394ace28d8997bdfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a88dc66d8da9c7c6e1e5a5e76400b19d1b2ec615384d022fbfbf5bda1f4c376
MD5 99bed4b459e4ae1fafc1ef52dfe13502
BLAKE2b-256 1187f3f521a4db0f5089730c6e89958093467d1164a3d65225929950cea22aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9aefda8570ae79372d81ccdb29d5c7b93a8794883ab88883df15e27f5a883e6d
MD5 13d05bda21bb8e8a9389f2bc8b69cc4a
BLAKE2b-256 54adf55738027666941778e656f2b4a2ce96efddf7213d582ef63a291557bc38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4349e38792283e11994b77655c37d6f2cb474dfbaf4a9c210cb2d49637dc0993
MD5 fddefa6719f5e60dfea1161098994116
BLAKE2b-256 09e7e67ff897afdaf599f3949f37be9a74d44646dc74b629723397a9492c4825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbe12c007f5aed0e742604d647d1ccf78beba055e1937993f597a92f0ef4070b
MD5 cf98d2c43fe8ff34b7abeca62f671088
BLAKE2b-256 8aa217a41fbffb54eb5a13d89a3a1aa08f99151f67c356cc935ec5bfd8783d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 71492580ec13345d80ff1dae70892b23fde316c16064757804eeb451d44ea47e
MD5 b8f7d98437292069119dfef94cd72646
BLAKE2b-256 3fce88642af7f9e9e1c4bfe9658ce30580a3b8fdf94b5165440816a3863a2712

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 434.5 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.0b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86c3eb7f1d087ebc3764a07433aabd601cffa698e9d504993d456d054d7a8ceb
MD5 a91b296eed60151ffb970a5fff91a219
BLAKE2b-256 aff695e42f4218112bd4e968d1170a2f0e37d5d6607aa78401369884a2c005c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 410.6 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.0b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dd8365421ab5562e7d4b2bcd625bf552ecf3d5c8384e820a28122047ade31397
MD5 46b2eadf5345170377186446625fa214
BLAKE2b-256 c6ae91efcc27c90cb9f19f1cb09d1853cd64a3c6e6e463476e7542b5d49a56ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e64749c706d428cd8bd790f4f7cb55a0ef6d7f7998fc255c2c3e92abf3506898
MD5 813cc9958e0f8d997a2c733e2f5c5e06
BLAKE2b-256 cfd6c0161bc2d12f77700752a74c79c2a9fa5af0c85b2de3fdd833ab9314f397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fe7bb83573b9dd343e438aba3557dfa67739289657468be1f6b0d5d2996d0d27
MD5 c7c68aa666fccfe717806331bca2744b
BLAKE2b-256 4d957b28f79a58692ca9e3985c0bd5e712f18d57d8a5301a41088cd25e287f56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b41294137901d939f1f48122ea3536d12372f46258fdf7aa7ded39d18201d2ca
MD5 670943f8da230d90203bab1edcc174d3
BLAKE2b-256 89f28e6a0feb232c73063427cd078b992479501706820cccafef439eeed6f7b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6512817ea86ebe8998b75a39627ff55b2203f32259511915f46df63ddc6149c
MD5 8d18cd8973b03327b4c30915f748a65e
BLAKE2b-256 1bb25e7661e32d0d20464b5d9f478c246875b3ddb43eb7d823517cf1fcfc7024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ef879e94f29b1137042ea33dc7638d18a63e017eb5b28dc822a66a42eaf7571f
MD5 0866ccfe45d568fe0d2b9f0046f60fff
BLAKE2b-256 3281ef215f52f4266caf6ead76a3c6ba7aa378064ab29c3ac340e5d9a6b32dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67e1c60121818f1504f828b799f0a4b9055b6e3087d66e15dc6038edce5d400b
MD5 ad6555f0bad692809ad27a3f596de962
BLAKE2b-256 ef7d328ebfc3d7cc47816a5ffcf51c377f563dab4e3bd058e8a45265a5f7a821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e439ea2f61cbe4cba5e825cf2855549a873e09be3a882982bd012ceeb759c4bc
MD5 0788d9d4d2003d0d1b8e1b7eb5e9305a
BLAKE2b-256 7d063a5f2d462894036ab7102f88f0d40cf82da362383540d272281020eb7a54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d79663d662950928645223f9556d1a2b5cec9e7010ecee6f40a603a2875898d
MD5 163778f49eee843441cdca66d1bb6f9d
BLAKE2b-256 c1824da4a3ae5a72e90fa4e2ba4ce646f463da505e25ede7cd553ce5525bf8d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0798f70cb908d9f77f55652bcff40e81dd2dc706a9b8132e93e11d3f1b728076
MD5 1b012a5dd2fa3ec4f6c81d61f5949a59
BLAKE2b-256 d37b23e1e69e447d4b84ec641714969735b8d0995afa8f1744cac25505d1d014

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 83b742ce4a2053dd7729bd619e18e144733c6256fd5cb7d8fb64bfa4ae1364ed
MD5 380de7059b3c76ddfe9e47360fae6b9e
BLAKE2b-256 fdb9875cbfe47b211f7d48682de672a8ce5492b09baa5350789f44f79135a6cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e672997bb4186acf6aed70344fbf42076370f40092069814cbb7a030fc141203
MD5 c4a2f30cc0bde18fdc2e074d47b36c3d
BLAKE2b-256 f566e41fc856b6f54ea17423aa043016c6b1d84ac65ea55d94671d1b8008e9b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39f029a352d1a9a52fdddb1abbaf843e7941f2a989d86cb0c1da6bec630b4c46
MD5 23da33b0dd7eb84e946621df9170e690
BLAKE2b-256 e477592f9022ca429d19dc0fedf4a5c203d3cc7a3ff946eccc21305b9462f4f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 758e724d8c0d5e59ced46075f727d80e1a685c3a451c667bfb600d1123db21ae
MD5 29a8e2c751c34312e06f11026ccc4fe7
BLAKE2b-256 a6e78b981037813f0885b155e3e0f6d393b8451ee939996f1599759c553ef1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 95d98dc836c3bb12640126d460a1e55d9e6e1d82b7bfdc6c1f848f1bc984255f
MD5 50c330d2673671277efd097bc555b8d7
BLAKE2b-256 76d0ac515b20e7d9dd1081112e4c8c21165f92c7622ffd65c773bb917b2e783b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7fd19fc37c5608ccf0734fda8789f9525eaee136e200a4f66b75ed599153c046
MD5 4fba2da397d0a83067b853064abe713d
BLAKE2b-256 a69f55ecec1956eab373461acc4953623b15caefbbe7dcc8450d8d60cd6c84f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 433.8 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.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 12e16422834dd419aa4c50049dde66ad9c3bd715bbd182c37d515c40f6f23df3
MD5 3949cd21975c2fcc0afd39995cfd9cba
BLAKE2b-256 49b9ac3361edc37284646bd15454bf3e50fe19e8b63c716292a393f1422cb194

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 411.0 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.0b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78361c75ec4e80c8d29b1ba9b9a49620d6ad35fc3c29e7cd1a9e2b949a514b1a
MD5 01d168bff3fd86d45e0ec5ea40b5e95c
BLAKE2b-256 bfd1305cb5c6fbd39f9e5a6bc19d6deb7a95e79e1a24293ba1b99ce509361576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 514c80d87b68479eb6b1f7d86b4cc2f961ed481bba98e3cede9744091faadb73
MD5 e8d625cf0b601912df762790fc780e81
BLAKE2b-256 fa240ec8b2dda69969a8b553f81328c058c6c44eba418bf17b648f14918dc159

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a606439c96e4a908e03360e344642d1a08cf293b982dfb4357afcffd923f1f9f
MD5 0e455a856810ef8476f2a10ec37040de
BLAKE2b-256 8d106e0546751fb7657c7376c9e02e74c00bf99f42bf50baaa20c24a19626333

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8432cde76a19fa64ca250fcc8c6c62f164e73a5c92568fea2b5efc898003ef8c
MD5 2e37c0241b54410bf68cb4dcfa928ff8
BLAKE2b-256 f664e78599192a6487fd2b40171d80767a422dd386a9526be93b379733218762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6dea87f1953c96af13c661621e97a081d9e68f3a07ad3d7914651b804c29979
MD5 f87c349b1c8e640cbe963b82c0b699ee
BLAKE2b-256 35f8334df8cc0b762d36c9d97fe052a929ed6edfc15fc37c706ef261714552e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccf6af86f06e40b01c0dae4c095715610621b859601bc3c450af64f9aa2cd4dc
MD5 1111d13b25ce54d937fc135faeef0434
BLAKE2b-256 cc54f0c71ca2ccc312da29a688a90929271dc920c63cc4fb8853b5b62997d129

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e6d25df6a4546aa5548bff376a9af4ddd57a2ac025234c3020a72063e158969
MD5 b8e5d07f23520fb0a8eea98c59d32628
BLAKE2b-256 3edcc7eb13fc3e136045b1b8d5d8d6651eda65edd80ef78ce7afba154304ac57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a8c3aed97926b6db7d03f4ff71da5abb5d76222230fdb625b71a4bbcbb75425
MD5 04d6bdb0d239df610406b68bb72e855d
BLAKE2b-256 987a7f385a04755a4c67ebe43b00f7000e4b2510bcc49a23ef42382c98fd959c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94ab1040cf2890b5ebf66cc651051a037207ed398a50ffa412886633158a1c91
MD5 3bad4001ecc86c870317e38067bdb75c
BLAKE2b-256 0b20c39e060f234523a0d454c4aef9c12260bf68ab2816cad4e2b04ccfcc0edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3936a2957df2213eec976fb2c7dca157415f756b3ad85086c4e40436e0c36058
MD5 e0d2242bfe165b0feddfac489b857ce3
BLAKE2b-256 a02a320eb566dbd1b45fc1920f363a9376c51255cf611f1ad77d9acaa7bf4eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c922b6e609c011c14bf606a6aa53f8b9b64839bd71ce12c36202cd71b38cb864
MD5 ca28134caceee5b365d5dfbe0cadb855
BLAKE2b-256 239f9190baf76349710ee5fb37d9e6acdd844b475f1d36ebb7d507e595e2431d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8521ca224e1fa8aed8d1d614cbc52b3be6215348b80ce9433e100576df71618
MD5 997eada9bdb8370f56b98e91d2f86564
BLAKE2b-256 af17832a3c67d24dd9e2ca9fcd6f3a82d1b68de1f3c2bf8aac4bdec4d7a2bc3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf0f065029ad1d85ea09990586ae38a11848fe05bfbd7e6c582b4238acb85d36
MD5 b3a5596e9e4f622418924a51fd894358
BLAKE2b-256 5cca59c687c9ccfaadf0e6c98b0560861f7e54312612ac351b5c08e8f5c96d27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f28768d58da19333cb80f7477cffde575d8b82a4cb15c833ba0a54fd3c2f855d
MD5 bd1f333ecd444f10556079641a66f8dd
BLAKE2b-256 2f6bb260a7a2c857b5e9c0501e5a61b628ca5dba1d6d708f39ad08d8cdfe5223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 94b25fbd634cc83bfe71801a951a9d8fbba0eff0f862b97496e9acddd0b14963
MD5 60e41ea0c5c3637fcd6cf3f4fe8bb2de
BLAKE2b-256 fe55bcae668bd3e3f22b52f1a816c8cf92647f0619b6da71076dafd517c7766b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 98bb84e617cd850d26b840f8fb05cfae0390e48ec581ab0b9fd7b7cda1ac1273
MD5 fdf1a96131d82d0938a1633156e74486
BLAKE2b-256 ffa4d2919b2169040a8894388e0fe9458d19a43c2b14d3b84bacf5fe1003a630

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d4efc2761b2e4c1865d91e5581e04dc7f57a0858217891e59dded16490d6381
MD5 3c0ea85db4fd087f7dc82eefa95a66b1
BLAKE2b-256 47a057c04742daad5c7f281189a924a9f8b336a984f012821e77ffa306b1a8ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 411.8 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.0b0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 55470c9ba488f20a24d032e1a04711c69db524caa6bcabd09fdadedfdf678106
MD5 3d91bac55c9fdca91dfc50c56101ccc8
BLAKE2b-256 03c50d2937858950889e8d80c16390481e739cc47bac6fcecf2d0fbec377ab82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22a63660ed1b38cb89abf465f94e4a1a4ffac3b6a3a6602b625ba721d46f8728
MD5 498275502e175eee80e9ffb11ae743fb
BLAKE2b-256 75623df6d976b6ab0c34c9501bc83d070f6f30bff783eb42b9f32d6d930661f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 98fdf9117824b751f896ab0552659bad16ca0332c9372e1a232accd5f0e681f3
MD5 64eeaa7c61a525acf44de3c07d8d3427
BLAKE2b-256 3f72ed84cdfcb84c5a79fd99aff858e9466a73780677d484b45676267188599a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1515f06718d710da64d5ddecb1649312e687c449eca93c3e2785785b6726ddf
MD5 086a7a0e96f8c1f5207b2106eb7e8e6a
BLAKE2b-256 c9a9ab0bbbf8cf81b8d252fcb85721651632732e587a2a089364cab74d623e6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b60a483bca14be0d8d5b9463ff36ad612f41075739b962d0b3a407e1a74a6753
MD5 4b07a951cf2c1b8901fa78335f685ab4
BLAKE2b-256 afe35dccbb7187c0ba3ed213de35730c806ca3d5ca4d138bb7152daeb39aa7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a9178325a76dd17ff71430c0158b3e8bbf427baedc66d21e3fbdeb2c4fe7424
MD5 3f473e5c801e4f7f5962f609a1514257
BLAKE2b-256 8acd2b78dccf495a36c038242bf45898436944734d8897b79e5e5ec04d21693e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fe3050545fc22ad3074f2e77e1fb85ffd563cdc3038aae5784fffe2b3eadf0e
MD5 63b6b8711ee1684eae9ae90502977002
BLAKE2b-256 cec04e0644b735843d4cd8bea79319b95b9b4e9d0f158cdc71aa6d4d44052b98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d2f3d0739c5d202fddd85c3093fb036a5db68bfd150e3a6dad45ea2a942934e
MD5 2be29c1f628aa064453733c00162fb92
BLAKE2b-256 4207ff155043c8a45c1cc1f4c727623aa6643c46fbad8742575041188ee65e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13ca960772fd3ff0eae05099313d8c6dc6170a839343791e0a37bdac6780acf2
MD5 11fd7b2089398284f3fd8a516d24a4dd
BLAKE2b-256 8b4528ecfa4c04dc3eb6dcbd64f9af69027bb09a586b27b94e8773ad52c31334

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 454c17ddbabc6d08b64840d285f8d8019470100f694868ade33a9d3c320342d5
MD5 094180007f86006da45880cd2d9859fc
BLAKE2b-256 1726ca2cf66c4057562d34c8a96465f7b3206b3ab2acc8036f3cf0cf6b0ae1b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 899c0bed15ab3f5e77159961b1672abffb6203750d0cf9f99581574f0d50f328
MD5 e342102a3bcb61d000500c7832ab1a14
BLAKE2b-256 7dc23bb4dabf10b47f9d565e168cbfc01b6a86ff5c44d4f08aead3ee4eb167a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f42f608e0a718d4ed18df11088bfd5340bc7a8220b924c09446a194a27ca7315
MD5 ab52ef480d6c585c055a883ce16d89fe
BLAKE2b-256 acc61a7bcec4470e18122e4e2ddc8f3a9117f8662a9abd58aa1ab4da069f41e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f5a3afa2f8220374f11a01699e467261b8e50a52ce79ecfb827848bd473b4ee
MD5 94d22ac6b8f20c60b9ad056433b3b3f2
BLAKE2b-256 c615638d40c80f21d73fc0a0a6c3ecae66deb8c6b27eb1f19c3696aa5d9d3243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28ebf7843a8a0190ef0d3c678dd9e0555882a9c23e613940772719472de5b5c8
MD5 d623d4a6bb52eec3c3024356183c4650
BLAKE2b-256 5beee4b2ed446482279051516be231add89d013f2ead35173d2840ef3405783d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbc48cbae6148324b0b34528b133393f867e33a0f70daa0828ca87db8d532417
MD5 d95859bdd245349a06bfa7fe8076d204
BLAKE2b-256 035be55e5f12acc3859468811daf0632e0253838c556c453a393d7098d31974c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 39aaeb0e56a281bea50b61499894f77c988e657cbaffb2f6a211b885327954ae
MD5 750e5c96f6170bea154d42bb55f17884
BLAKE2b-256 942f1e5c7c3ee7a5df9199de23ed0880d039dd8b92eb17ceddd4c87500863d23

See more details on using hashes here.

Provenance

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