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.0b1.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.0b1-cp313-cp313-win_amd64.whl (433.4 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.0b1-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.0b1-cp312-cp312-win_amd64.whl (434.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0b1-cp312-cp312-macosx_10_13_x86_64.whl (462.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0b1-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.0b1-cp311-cp311-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0b1-cp311-cp311-macosx_10_9_x86_64.whl (469.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0b1-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.0b1-cp310-cp310-win_amd64.whl (437.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0b1-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.0b1-cp39-cp39-win_amd64.whl (438.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0b1-cp39-cp39-macosx_10_9_universal2.whl (692.2 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.0b1.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.0b1.tar.gz
Algorithm Hash digest
SHA256 1ecb6469b61d25d1ffdc5d2af0ae7a3fc39b4f336761db5d9217e63e71367d13
MD5 d6011d6200a1d63f445c0f4971c7ccbb
BLAKE2b-256 1fe38b1e5c9be78c9f30cad6839978ee47446cf454d76ede38672a8f42e801d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f72f08828979e136478dc1ba294abe05e1eb4eb48768547c5f96bd2ac88e665b
MD5 c62bf093a84f25326745d0187cee1664
BLAKE2b-256 b6330d9a34fb29df938ed0b0d2d4e754cade7b26abcc5e10fefe36e6caae521b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 292fd611f9b09b9b4c38ad58a40f5f7687667b94468fff7b88d2ff26462e3adb
MD5 b8398030ca3837febc9ed4b2b19c6206
BLAKE2b-256 046246894e32bcf0b14274ac98c035b8f461b5b06843b00636e3fc90b2970658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f6b678b2f57b0b6c9318b03eb539bc97e8f509e83c11e59de79306893eae021
MD5 22df73e9726365eda5314ff13d90f554
BLAKE2b-256 a557b94536e8188bcef946250df0095383363d223a2ceb6eb3bf0e77d3d0e31e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 90ac244f48dc07b794f196eff8c89059d4aab021401eb28d83a0223aae5c5d32
MD5 67bf4724207b6a7b1ac7a623897e1def
BLAKE2b-256 f16291af4e63f443e7b260b2b4a03d7d9c63fa8af7a322034ab41de56213e417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 82ce5f726b14e068cbfa9f02cca54149ea219a7379569bf4c05c1bc84a149b8e
MD5 0d288ca645c331bca09221510a2628ed
BLAKE2b-256 e2dcb250608f4b2ffb0944fe4d2b6809ac0dda616c1bbb67ff813b93fccfa964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c5eb52ad709ef07b07400226d0899a9df3260742b25fcb40e671db537141c9dd
MD5 7bb3ef0f23e8769d5af330c32d6d1456
BLAKE2b-256 89d23c8bf0ec517329f01de189cc0c27c345315921133d345d3a12c1303425ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdd850c356b22fb33ca2b7a58fd7574381ce6c2c64f806b922184289a098d408
MD5 5aeec30d1adf02ace789b285e938c7d8
BLAKE2b-256 3c195096c62248f211a0394b5339cd1f5ed7a1596c143162f875a56b9996d18e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9a5b28c64500e3d1979c7d5d609deaa8eba5cda92fd3026faf5ed8fb1570a18
MD5 bceadabfe6c8202e2bb70b103066d288
BLAKE2b-256 e5d869ce3d53643e0dd821d53d6d4756e4ac529d498eeba38b34b603e8169aa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27e262bbd04f4ddc069684adc288587acb7fb71ff0e3245fc2ea1b1664b5d94f
MD5 73f0f57e09c762db45143026ad692bac
BLAKE2b-256 c98be1dc02281e9e64a9f753b0975227ec0743c0d83452c15e3f886d7cfc871f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1804fa51034b79c8daa141ee810b20e7bef088a431101be8fb341c94aebe157a
MD5 908f161df2a62a75060f01d20cc87402
BLAKE2b-256 df86c6924b7ae5538487fd5a26a31892e1bd7dc4335c62bccf2a7076d3d0ecab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a38b41dfd60d2fd17af0b37ea64992756567447663e70ce4eca8d714a7833001
MD5 226fdce3be4bce5409f47d29865acbff
BLAKE2b-256 0c6c88b821f2883836a861ac8e8df187ecd70d61db2e1973a0a8fe0ebbfb7394

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 75c53728e07103fcf4921ddf324932ffaafd9946872399ed9d16dedbb5daa2ec
MD5 2270bfaaeb7aa123be4e98a28675daf0
BLAKE2b-256 5ffda72837cf0bf2403c53d35a76c76f52702a915e12f1be6292257d712d7439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4dc8ef1874da4e86bccea3bacfbce7c504f1aa2e975fbaf60a801ac467ac276c
MD5 8ad91fe09f6e00182efa60c4603f5c02
BLAKE2b-256 60b85a5e1d6b6da4fa4e2543200e430a9e21896dab21a54081af97d4d3686a5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e632a28df7283044780065a8d6f425a5c4720e0aab5bf741190ce21dce3416d
MD5 2678062932d988a939a2e30e04946803
BLAKE2b-256 e7f90576cbdd5b81dd471acb54caf0db821f926555332996f4083c1c2c3e0da0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09455b3327a32e12ce6cf91d55e50de139278f4a761946e0e38d269422dd4604
MD5 cb47756165e068435f6c88020759af4e
BLAKE2b-256 02e73fdc2615a298a7550741a0fc969328e4cba2792330288f421dbab8071dda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 13bdb46008e21a8792e6b886dc98857499d4d60b2cdbbde6ff5dacb9e1dfba60
MD5 eccb9a0ea9b4cbde50adaf3910f6c526
BLAKE2b-256 cda54c448322b834f11dd99656dc406783519cb38c9bc035dde84bff665deaa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 84cca2bc8382cc532f1105b7ec8b3a312cee9bb0e02979964525019268a390f7
MD5 1613ebcf071d684cacf6d1d827bf7a6a
BLAKE2b-256 cc6c9de79a688c48f4802c68c94c63fca28bf4b5c54a30504787c9c03dc68fcd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 81693213ff19e90c5afcc117a125ca9afb7f746553a9fc1aa4c93ebd01fa1e2f
MD5 790de3bfe9d571d0f808018d20ded4d9
BLAKE2b-256 e4f75a008fe7f8291a529be3c415666dbf0582f4f50a75b1f2245321f2c27a3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f4457d260a4e30d5fd7f4bae5113895287883ae60ec106656ba791ef7fc0e62d
MD5 430679310703a002baad5e08f63c7de3
BLAKE2b-256 df49d04c2d7c2abc46c4043a8c2477486dade7ffe6156c29973aa4d8e48cc3cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 592aa213638fbf9d2a22dd2ed9b46d53cea9b7d964438e34f580743d29153cfa
MD5 ce3be2a34ed85f922cccb08baccdd20d
BLAKE2b-256 868c7420002d1ed7463bbd9c2c93ff27af6ebdf2e6db8a03cb8020e772ca6101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 45972f60b840a6b1d8f606555a9ef0d9d5f7cac142ed34713da378806652e0a3
MD5 2860c70101f35ff4719094cb48e7546e
BLAKE2b-256 6050f9fcabcc70f6dfcceecbf33f6ea84b63960769e58545d0e35b9fe856d800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3296a9c173bbb6f308b95ba08a5805f809c401253ce0c3985dd0e156d91ed1e
MD5 4b574f295a0b8b559f6ccb2f8ffe4218
BLAKE2b-256 e21e2420e9105fbb5352d37df85eb6fec9847072e512a19fb7f1aa2840399fb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 720ca9eb671120b421e7ac72f33aad41637981c0af3e80c0ef80b4740dc28ac7
MD5 2b1e2dd3bbcbb99a8a099b171d914890
BLAKE2b-256 d1a2208294d6c6b5c5036cd0cfb0e2310046778d3ee676290058b18fffc31c15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a4acc086caf67a544e7aa0119c95e64f8f9e4175c6e0b6be1b262c9157fb3f5
MD5 d4cf9850042becb0fbabbed622ad16e7
BLAKE2b-256 f46c3e827c1541ccc3b33c50642be409782ac3d89efa08d5834f4ed0077851dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e6eb92ac14fe5703836289ea9191284b5ff5c33cc836a53ba49797bdd05d73d
MD5 5ad20a1df6cb2128ede5216737a68e61
BLAKE2b-256 0d8839ec68fb07272d23d4854643d3438b74d5e991190b078fe46c0f3bd0a0b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2110ec5b1d44cd38bf3e180d2375f131a15dcb23948cf7c115cd412c0e1ee252
MD5 ed61341fec60f0f389d430ed0d300991
BLAKE2b-256 15762869d983e3a92f0a9e5f0e2592c9108c67392db03a19508e566646dd8f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbed514b9fcce28f8ced0409f1dbb9b74dd66bf8d92cf24ae9372775cd1340b9
MD5 7ecf239b92bc92e98d40880388d94a77
BLAKE2b-256 b804ffa127a152c6199463abc042a60469398606863cdfdbb31fcf8d58798503

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f2cff631d2e304f0a3f7a15c74a256a74f4efc701705dda3a80aee2919c60e5
MD5 82101d6c8d4ec98bf0d3484d66167629
BLAKE2b-256 a62d408d12785599398c6a5166799e4b7bfb5360f858bfefdfe05b7cd068a138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c43b3a942863516db19c4f0f8b16fcc9de19fbb66b34d34ef0adc6fb79639ccb
MD5 3ee7c9f013cdb5df5b9ab1b99a1f4be7
BLAKE2b-256 4e03345a2f35d3a704063d962f81195dbb756b699a78d4d5626f6b58dbf957ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 267a31bd75befd380faa4a07deadfc0c764760e63a5d782a5ccb1a2bba6170ab
MD5 a1ee073263033e068462a7fdf7ea25c8
BLAKE2b-256 0c090f41daa8a2f2567d6b93410c6e8724fc487d3ae4a50e737f9696b05ba48e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f57673f7c319d5629bb2aa57883cb95dd3ae3a418b61b59ab2c3b20390bf1ff7
MD5 13b9c266871801aed67fb9495d0b1e93
BLAKE2b-256 f418db0f832eb2524e81777c4d04bf9274069b99b3d7b9bdb5a3645801736805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea535ca24c084bc815f81210e58cfefa5aba4f39c56a1d5406e2d08f9d28a3a0
MD5 7b40e15e4f35a5673fb0f32b2c32553c
BLAKE2b-256 5d65b4e96a8526f79f5efec2812fce069bdb7b1975d469f17ce926c04baba2e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cdb0898c21bf9f9c35b5236631ef8b700efc451a7041194c4fa344d0d225532c
MD5 5577aae15a582e174587eae0e9ff3499
BLAKE2b-256 5187c011c084cde9d5aa39052b4e8d6ab84a6927dc224757ca9518092d23e06c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9bb11d45ca9fc8659c69f5bf5095876c1503e679dc76a6557722a85418bc17f7
MD5 9fa018311e444ea476447a53ffca7bbf
BLAKE2b-256 b7039050cbecdbf2dcbd1783f8856de2d9f4f9ff27c564a984a00a7fba26f10e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e991b6967c6cc3072d5bad226d109a64bb998a54f5bf7db0803707d52a9db58c
MD5 1b0acd6d59f54036edba34768fc9b001
BLAKE2b-256 92f6e8e72c6e6e779e9c080e6686e13e3a4f0c346701de3bc305a4dcb7179c2e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 219bb73bfdd213f2971d86285a7fc3c9300c1e4f5933254aceb4fa8c5cbb22dc
MD5 4925c7ccb45268b3a4cdbc9df8992237
BLAKE2b-256 e27c89592ccfef52258786a9fdac5f58c48cf5fbb521320a4fdfaf3780fef4e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 724917d672805b46043b54d2843e3fedde39774d74cb131578cb230c8db276b6
MD5 7bd0ce8a69976da59d00cbfd751d6eaa
BLAKE2b-256 812d548f350283871ae0f00862a1d2c5a16f02c323c8848bdd36a904d1fe0582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 717a70716d0c8feaac1d86716ad00b56d96390e6caf9432f33234254ae617bfc
MD5 d6855963dd86933949a54b52173a7573
BLAKE2b-256 2b8cc0eb9ecbe70ff827b247b143770db10741fa05f3ee0964bf6e60b3a344ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ddc63ecc500dfab95bad06962e5786a8a0d6a722180af012386681ca36e583c0
MD5 e21a9904891161af44a2d8692824e856
BLAKE2b-256 f84b168c69a60c1288d9612947dd281d1c5b825477df8e023723d3e471d03c8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 75d00d52961758a46900fa694a18d53aec7798b2c4200a7a470d194f9ebd305a
MD5 d20af20a78b62cd35a8c16307de7b929
BLAKE2b-256 3b98eacae3569fc538f214f98a728a35d455edd4ec76bbb800946baae9a81102

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e055dcab27faddf3971c48d37b626b2446deb5f6da02594ed5ade94374281d2
MD5 6ca0b1647cd8a703b9e1f899e47a189a
BLAKE2b-256 3318eaac4c09f9057e7059036408155d905e27356668e1f75d044bc0c01bf04c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0817a18239175ca1b9eb13b836f179694af42534c660ab4f3de59c0d7d5552af
MD5 a1fc1b177ea7d38cf68be157e89b196e
BLAKE2b-256 c5d8dea455f4c751d922b1d161686d11f5ecf3fbcbd9619389444ee2b09728da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cd57ae211b85ac738a59defab1c920c18225677de9aa44b706a1c0f45eb019c
MD5 d15e43163b3d95ee09349342115be73a
BLAKE2b-256 6a2b0ce222bb03768844d8b71a941fbc09e640a654c411aa6dfc877e609047ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59fa38b54395e5f2231ab435553edb6680fec74a0af534fd0234a00ee9350a6a
MD5 70d8559a201a178eabc6f589bd5b02b9
BLAKE2b-256 c196bc8a69d8946117a92405ef9b20ecacc8d9b357480375cbdda6e8adb5ed5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0efec77d3a4e1291355efbe842bdea064bc6ec4d6e1b1535a439dda8650471c
MD5 74d6f698532dd714302c1444dcff3199
BLAKE2b-256 10f381ae6b849479ca0f8f35a2fe8c9b6b292af941535b9cccc1df2d9abf8e7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e0f226ce04ee9855db3ea916c1ab43170c117fbba1e7aa190fa1151689a4745b
MD5 3e98fd6f8e5bcad7a0bc79849d7960fc
BLAKE2b-256 c796e060632da55c339ba934370150a3b1e366afdaebb47b55bcdfe970da1715

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18b428f07b606c02cdc94328453e29e4578e2de92ca00417ecc2ff3eec4e2501
MD5 52c233dd9e8c3bf555e98ca91dbac5b4
BLAKE2b-256 7cfab3de03bf0c7af70fe2ac0f61ab52b10e915ed369df75a741c14e52b3e622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ddcdb1e723cb7e38f2e5669c0b47956d44c8553961cb6cd99b44a0277109ebd4
MD5 0908877e2807c22befdfeeb76b9aa966
BLAKE2b-256 2a6e48f3824079b2f9dc274697bd1d1f20bd38613ebc8686fc7f5fdfbc42ad5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d0de43ea76e93d13c76187460d9f2ea658aafea0e84b32c2aabd7f882b374b9
MD5 b80f482587fdcb9b74026f1355b089fc
BLAKE2b-256 8976d12b93b87a67973c7a93c6171743e9f33a9a5c4872a2eda56eba23d0ba9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 918d9c45e29a2edc49f7bc8008e153f68bb06db172fc249b45f48bfe9275f84b
MD5 f3b0d9756f306f3d4692ca4d9fd0dacc
BLAKE2b-256 8af0cf6fe01a3b8fea4eafd52cb858982eab45c378cca0b57fd17914a38a346f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fdc6983532b13e1f8ae5e39b173dc91d7961efe318451a02aa46269ce8067e5c
MD5 0431e5603c5d3f1dc40561d85ddb788c
BLAKE2b-256 79749100c86af2772e97fe8cad6dcf37ae48a7ee0aef7d06e9b6f48ba609e33e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddf2de05924a006412990334b975583bc0fdf19d941e635fb2b24b381506cdd9
MD5 db12ec4377ed02874f32aec633e7f7ea
BLAKE2b-256 10fe5345427c5230c4b154733bb97625d237b796c12524d699f17203a66c7e60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b1447a5c10a54c39e72c4f38aa1b8dbee9c4f325c5cae28afc9477e75faadc4
MD5 69bac24e1ee8ae5ff9b280ddecebc009
BLAKE2b-256 c80683ed53edad7d0130add9e68becbe1c90c5bfded8c486d8732a49229a8d47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b4aff6675141fc961197414de0e0f0676b9b222221ca3deb19a2356cbb3b47f
MD5 9aa4538cb7ceecffcf01772af3b1042a
BLAKE2b-256 5655d39975bc0e7647112b69c9c3891de5a1fc12cd69f52230db305c8c7987af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2d9aa988a39d485a46fd01f3589cf4d4494b1983bc0a5006e9217dcc7d7a733a
MD5 6680e830cae99f1c896b7ef278d3d636
BLAKE2b-256 74018b9a4c8810391b84d8ef8ea95976c8d6188134f26d663560be1b2f6c7145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a29100bdf336002b290b4ad08ef758f7c8e91e86598ea3d790b465bdbd9bb7ed
MD5 a379d52077df830c70666d05336751fa
BLAKE2b-256 9a5cc501eff66c2dc0f32d33490be61a67109baa4a712d0fc80ceabaf8053c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d255961b0afbe0aa994ef5ac4565f16a591428203c186d7e30537fc2cf19983c
MD5 7b5271a13dfd90345b91734bb322c0b6
BLAKE2b-256 e6e7cb3ab7c23f3a51bd187cf5f6c09a26fdff9ebd7a02d3f25e8d9d5f1c4a71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67c60d68936b9b1cb26a71cac87a65312d319592441daf7efe23419c8365e802
MD5 9f576cb5ce93453eaad2800fc21f05d4
BLAKE2b-256 71e5930490c0f583ada9b93fd6c43a89fb379d66772688fbc2524e6acaa1f9db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30cd618674c173e496898d818e672aabb285f11f911885d126fb447026006dea
MD5 84d6fa2173f87c4bac52c30d2679c48b
BLAKE2b-256 4dafe945ff28b9b8859b18732c4c81ca2f2e869b22043d339b82b7fd9a88dc31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6d2a3f5ea267401e0fe5451620dc863951833d68e91c8f3ebbf043da1f5119c
MD5 ed2bf161f429086f2a51cf33cf2c9d3a
BLAKE2b-256 1a737c00d400c12d94368f9b039e5a994525788de5fa454cac0a486067c6c828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0369f41d1f6051e7ceb3d273ac51ba1539453096d975db9ebbf74b23aea59daa
MD5 4624ef8beef1ad55d612717da851c3e4
BLAKE2b-256 72d6e20f7e6d36f3fafd89840f7d7eeceee90960dba1229ae6903aacadbb455e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fa075ac2e4468ceb31823ac28ad54ec4beb110a08bce24112a166c444d21ee9
MD5 2a7e59d1504069824bcd4af197b794ff
BLAKE2b-256 a47ad541c28ba41954438b886102707fe67b42b61e3dfedde40b41096bc947bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2402662871bf899ac3db8108b3c78ae0d7719e669cd310aa42f14ca227c4a92e
MD5 7a2da20556991446ac31938dc851db78
BLAKE2b-256 2990984af102442b72a245c7179c1555af6f1d7f14a51507cafeff0d724d0082

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c90ef3486555ecc74f4052b0375422f50895b9a16f2212a4f20cda7b617b83f5
MD5 b22b0d5e21dec0f15666a8a2f23b30f6
BLAKE2b-256 95654afd12516a89793890ae88c361ca37b4041628ec50b556cc2d1c4d899751

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f888936cf45a75394d37ad906d5a4b56b6e8097be4220aebdd7b5de089a09274
MD5 24b232ef3215980c134387c0c53e5a9d
BLAKE2b-256 a70c025b16147c35e678e2e28754ab972102878bf7c07619b2e0129215bba73b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ded862ceba281b5b4f1e328321efe8a96a54b810c509228ddd3375ac19c3dbee
MD5 e53c5f4169ffdd6c473fb24bac02cf34
BLAKE2b-256 17354dcfe644a4d9043f5272a05730e6ef23b5f00cb3c6da49784a5b8001d445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6db457b8561dd34082876267fd9a97ede9dc5594f12c0b60c4b996054678f83c
MD5 8082f5723faf055e71dfc99d96309645
BLAKE2b-256 96f809fa82f5a0c56195ca2d7fee7685a3b08c5be7f1e6c15e1be160c093dcdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3bd2a0ce939b478c3d75478b59b35258b227e11228409207f2b11e46fdba5b95
MD5 dff9aecea82beb322d2334bb6ba4bbb3
BLAKE2b-256 aea1d69a56c9b4dc57ba0476156a14aecf9fe92006213575f7921de2512dc611

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f9c8dbd3020e1229f057cca18d37b9ddd4e34f0f2d57bff4616a3622a4b586e4
MD5 5dcd28dd3e35bd6b54efccc7a385188b
BLAKE2b-256 1ad9cfa8c29a1d2315d3153fdd4730d5f863a46b54e550451be53a31b25d6607

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b1-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.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 99ddacb2bacc831d3d6ba284926bfc37b8676eb1b8107f8d939fa9001b5fce37
MD5 59cc00943e01b7bddeb1c3d5ae9ad147
BLAKE2b-256 44083d788df369a4448e0ad07312bc05cc88e9fa8cb878d0f9681679d1bee5f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17764679f8fcd7a1e2b4a15bbddd8e8ca911a08d62daa1299bc9595b974f764c
MD5 ea5f3c8aa8eebca436c2422d9a848452
BLAKE2b-256 db10c5ba8a6cd1c6027291f90f157ad4ca59c7dbbe30792d97491c2cdca2f86e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 33ebb795d05dcc9e5a6201fbedc56dbf12dc7b3740b58e49200378199064dd7c
MD5 56a968fa10d691b9b2be9016668f80dc
BLAKE2b-256 6094c767c69c6b5300ba90965206f62d9550a82a1213b9f6630f198f178828d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c261fc3fc81f649d9824f71bb24cc8567c9ff6189c807dcd7a7a0cd66fbf5646
MD5 dc0980cfddb6d322a7e94a4e16ca6428
BLAKE2b-256 a36c752b0525272dc79b52e06d4b7f0d318de18ac15ca4d5223bdbd84e045854

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 268ae965afd2cc96c7a2301acd659aeb2ede8b01cd1b39024489a56ea7164e7e
MD5 ddecfeb5044f22a23895da4115f0b2e5
BLAKE2b-256 97942300ab49d2d480b16b2641125acadb120740cc0af2dc510ed835e9d515ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09b0af57f2d13078a404dfa992efc8e1e03f4b3c512439ffaa61b26159ef49c9
MD5 4528a934871dc669c69c72f6efa57e04
BLAKE2b-256 ed27c4aee45b3a70c4f6fa8170b11058ec4d21071860fad03e57dcc03b082fae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4da3549df96634b0848757394c1cc87d051ca05c6faaa35154fdf5ed91f73742
MD5 e439125e1abc02416807f982bfbbc072
BLAKE2b-256 2b232c23861e4fe689614800008eb8085a0c36be2e7efe30f28b6638d8eaae80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b872f61e9a715991ea0d1975053f92a51916ca4bdb7ec93d911d32a722f9282
MD5 e205cbcd5e60f2a3a33940fad835fbf8
BLAKE2b-256 24f035ca5127ed0d164670e93d7e00273c69858927f4401c60fb572a95ae5aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e826873b26d342954a6665c13c6649e6900d9fa7de57db1e7cbb3ec2dddc659
MD5 448a109ad7a400f949ac59d4c1b2b3b8
BLAKE2b-256 5b8bee36c5bc682118cdb2fd2d4c0fc25dfdb9b867e3f9f776e94acf614ba901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3593eb23cbcb92a926f11742021b65059dd53c68012b0d9120fb7e412c1486e1
MD5 03cdeb16750d851a0585e0541f4fe555
BLAKE2b-256 997967d49e160fdbdc12418358869e4d6f35c19c29e9428db3b186705e8f5bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4561ab01cc67e812aa9fcd81b746da834e3a676fd862b687b6fe7255b2b478b7
MD5 c078f5ebc2714450960616e0fce34621
BLAKE2b-256 475ff38b19fbe2c0cde816bf62fcf10e4c3a477a917d90da84005bc9a3b2e3f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed83615d9b82c884ce568e4dbf921297fa5ea1f51939c28eac92cb5590ad376e
MD5 b26ba403f6287bbc4ea04f892b00f6a8
BLAKE2b-256 65f1d8930f4db91361c296b149bc3b8ed79be2f937459e0e054150f98946886d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cca0244ffdf5e3593086724647d9988f387f06ef865c84c0b2f9324306b488e3
MD5 396a192ee96755c839984e3689baca0d
BLAKE2b-256 fce3e2c6bc0e3fce314023010935e5881dda52975a7e8f129b2461f7ad0282e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60b101a5623357a40a9be7e7b1407430cc08bb2a2cd62fb4fa817fa11650475d
MD5 ec460575d3a4c9e5236a2658e576175d
BLAKE2b-256 06ae217c714e0c80278b124b53d34022480cb443856e792925500e91043da213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac017573f73441e508b2d79d176ab300f6d751a87b362866f2cda028728b2d7e
MD5 2161853b6212fc3f6e0dfa241b54742f
BLAKE2b-256 781709202b436483e69bc0f93659642e573a2288e8bdf516a3a834fa0739da26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 35f9481c98f0d6e53262748dcc213d607b06112b2154f746e3a29d4a088731e8
MD5 c208b7c145877fab9149b99e166ddfb4
BLAKE2b-256 209cd544c1bd35c06a3a62d185aea23bc2de9ec5623e5f8adc4b15844ed57770

See more details on using hashes here.

Provenance

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