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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0b3-cp310-cp310-win32.whl (414.5 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0b3-cp39-cp39-win32.whl (415.3 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0b3-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.0b3.tar.gz.

File metadata

  • Download URL: aiohttp-3.12.0b3.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.0b3.tar.gz
Algorithm Hash digest
SHA256 2cca22384d61c120550ad3d9ddd9b2c23caa3d06481b808b360f59d1d69a2924
MD5 0068211bad75edaf1c49a76a15873ae3
BLAKE2b-256 41840312893aee16c15af02961e9011247f700df562865876e88248e4cf74f75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2f87365f5afb0edd89d22a3a42dc5690f5c87f8d0862da775bce292ff6dded43
MD5 a94ba25fd1730bf808eb900612ada18f
BLAKE2b-256 82addc8ae77082d358c99586f3c117984eaeddcbb413d7e8ca2047e6077ec05a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 592554b5a349b748b4798b6d080c2afb689f1b82cf4c70d4460ca923dd5c0f1c
MD5 54d17fe3d23b6642b3da4f6b83d5ef97
BLAKE2b-256 3385975e37894b164fc1f6326bb468f80a3298e1e301643241e12216f24287ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abb9c18aefbfed9f8f5564b2653ae60e8a1266f49335448c8d7fbf363a51f0d1
MD5 a13325e8372df2f5fb40041c84161536
BLAKE2b-256 38a6fb20b3e1cebca3181978f1edd5f4550a847fd9a151411697b2a1079d601c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eb9c6b9bdb30bb1afe37946620f5fc339d32d4987ee548d0d8cd7b9238613c7a
MD5 f802cd6033f2cde7a476fe94554a00ec
BLAKE2b-256 cc49073c9b24783365eb32e20edced2ecd3b9695d9533fee2f93645529e20453

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3d350c17964a9b87ce10a74c28f6b06355711343fde995d189ae2f96127bc469
MD5 3b04f5c45eaa720241b6d21675abb781
BLAKE2b-256 d4c3aff32ead5e0d23e42ed08b517c5f0dd66c1b28c40f5bbf3e69e4407b598d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c1c3a966e9b143312c661725af6406035b0e657027dd250abddd22a14e99c99
MD5 adf93193adcf4f4d3ff73ff2590399f6
BLAKE2b-256 90f386eb0feb86ca4192eebce07ca1465c9a65478213b2f3b568e7c205724cf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bacce7197d651dd5961cf5c9929e52a4ab3798710482b4cf8b2fe75ea186a90f
MD5 aecd02c46b3ac9302e28005b3db5b207
BLAKE2b-256 8efa6091a03550408d5ef470c485df1363856569f7c9c910d6d63b8335583fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4153d123fed948d3e98d4d7fc1579fd9f19c8a84f057789d8c46292d730c6414
MD5 81e5f5b17cb557dcad849782efb15c6d
BLAKE2b-256 487d970ab0a294e4be7801b1cb3ef969763f65ad6e2de778c367832038f050b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 780e9c91671dc2acccb4b34444a275be8fb1ad66fe2d257529901fda86841efd
MD5 2c2aba7335941ec79d34e87148e9905d
BLAKE2b-256 77c0087c64d09d6a6f215d302a27ea4c8d337d1113b9f91344bb1534103a3ba4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f282b48d0e3cf0f9361e423f168da9717e4ffa4d11af72cf6a90c52188fdd248
MD5 6d07f1de847266f2aef54273c2155ee6
BLAKE2b-256 c764162b3de0eb37b466cf7960eb3e4cc1a616145000db48c9676416d5d1ded5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8360e9d1117c710cb6a8417d15a8e6fc53f2f2cc5914e377147304764efbdb
MD5 15ca7d3cdbd723001b550df3989ccb92
BLAKE2b-256 8e8808e9c9ec19c050102cc44aa34e000829937dec8c101756ea9a53c7561d5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5185c76f98b0f7617d3a60c81165c15a24a7191ff691d58f6c5ffc081f807c4b
MD5 814bfa1e8a46614a712c0072004c9c1e
BLAKE2b-256 59815945b8a5b846fdf1f63e4304d74f7beae63e9cc49944a6bb7b44816fbbda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5090ebb4cdc1bd143e79232c4c7173537572d0cf61f24cdbb78a0f6bd4e66f4b
MD5 4c9d2399b89842b66beef504e78b0854
BLAKE2b-256 9dea5f26f9243a135224a77ac28b0b807db6a8e63c7d1c2fc52b29c808b7be43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 358ee7c1dd62a9ab957942856cf8e8013c6e2640451a350eb4e9e3305711b16d
MD5 d549332ece0b9ec816dd1eb58b731200
BLAKE2b-256 2e391b1302243a76f5f3b9a3d985d5a7c5404457e776a565cf49143a04483a55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f67d60abd8ae1028b14916f7252bdc7640f58768bd444ac97ee875a299dde988
MD5 cb71683121df11ea697524b49927bcb5
BLAKE2b-256 50df3758e66f047882f65309871a6b7be96bcc71ca315816df6eceb9ab8fd9fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0bf687439c1f104dcad50dd71d3f56d774c834dff8d5346da0457863c49de400
MD5 556983ee275b2929ff75ddeee7d57e08
BLAKE2b-256 ecb72cc87882e77005328e0dcb993e037970b2b9fea52cc89176671454700a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2e04b77f886c6f4349ead6cc570be542fc3373b520a7cdb26d4ba27516e03942
MD5 5e003a7df7f6f2a40079c3552941c33d
BLAKE2b-256 123be55f82fa85c048c9000abffbc742ec344c718bc0369ce0e771ae8bf86082

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bbab2282ba27496d279d75abaaa69921009f3c2f2538f159cbfe7c03515f5201
MD5 9501ef8e4d8011bdf89a6a9fdcccf65a
BLAKE2b-256 bb03c0282b2e6f9a227d55f1b152d23b2632d1183efec3d87b42782a9788be86

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f4d9e72a354e0b943318092f7c174d4c29f7e1efb2ce7f6c95b11e1096fcafe7
MD5 bad1c41719d653033105121f526bd7d6
BLAKE2b-256 f6583d09010cdf5d3c5fc72be4018a4256ded807000af5ab185dbd5830fdcc35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4e792093c024bc92917d806f4b45aba58651736909d35f7e7524e848bf07716
MD5 cddb767b17d33ddc6e7bfbf06739dc8e
BLAKE2b-256 8c7020e926869bb996dbb7c8e53e0f559d204b0917335437095c65c858738971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fb30861b6475d4e1ee807efebcb821254d55abe05374c9b28c242650c45a80c1
MD5 912e577d4bebbc70dae3bb30b35bac8b
BLAKE2b-256 f59385ada0873bf1a05b235a2a3b1ac490c2134d968c824dc8513d61d7f90579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9adaf35431f8eeee6247896ae92e92313c5babd0b4fdfee3d95a508945ecae37
MD5 d8e20db65ce30683fa8f05b7954d2207
BLAKE2b-256 5686171ac795ab7157a064993aa93d229575ae54f78d505d7cc909832514303b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 421fb6c7acb80fdf23c3ebb17267e4b104df19ea81e75cfd95cb35efdbe746bd
MD5 fb34a5118df923312b1e40b61185ea70
BLAKE2b-256 7436a9e4c1331d46749ecfbc96656e92ffb07323d2a52f9735f8e15700bf0fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd9673d6f00f59c3a8c4c72ea16c884b0fdbbf819918eaad405281d4d22e67c9
MD5 427290f8964ff175dd2a1d0d2253211e
BLAKE2b-256 35848ab027336806a7e2e8288e992eb732482311d79a78692dfaf8681f4fefea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 850996fb7991bf928581f320755d190d8b6b58ae2f6ce267a4b14b521c27b650
MD5 e6df2a98763e4fab49f06846b8972a83
BLAKE2b-256 b4f8bfc686361eac65dc5a226a2d53508c9f2782ce3f62957a085938ca8b08bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a07836bd3e98a60f4db0cbc9ede73e2d94d919646afa32b339aa9c9c7113b56
MD5 026a83a5c78a831c00d58ac852871cd9
BLAKE2b-256 634965a8755503a84f941ef6b7f2622251021a2f1feba7d33d1b64c04f8fdd5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 883e0e10d75f2e26352eaeff33c5582eac70c1f4a8e1fe5c78ef833e3a94ccfd
MD5 3f920f0f770062f90075feee57ed3fd9
BLAKE2b-256 0e4febf18912cb8b0038c3120affb272ca1dd4ea4a6e342a227553d624fe8ec7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37e335b0e6642d65a83c78ff074affdfd99fef09f411b44d08dc9afb2c65c3a7
MD5 54ea0827258db2c96beadbd4280ca9f4
BLAKE2b-256 6b966c4bcf0178af32134af55b1e9b1f1b19786e89abba44065291fb47ba6f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fef4c1a5cd00845f04a664892e56cb3d76b514019e06d7606f0805f2e4e2fdad
MD5 e79ce2ac877819a315a7493d7aa2479f
BLAKE2b-256 f88987a1778558e1ff4fe14c4c9f56dc600bd088ff3ea142e4a6a1ffe6c89906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a2288efbd59c52cb60faaa96f6b248c80cc437e3e6d0d0db1f5e628968ea681
MD5 ea65ee3baca9f34ccda8001875dff0f9
BLAKE2b-256 999a77652e9982e9b7af3aa7376fe3324f1160511b333c5a19494b44d843364d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8090ab7dbc5b6595c81fa6c0e0051f0c07e4d333fbdf6428ff768e52cbd4a6c7
MD5 e99970b0817404b3b0cd83a03c7176bd
BLAKE2b-256 cf7ae5db63868d13061786ae3d9423a54899731dc54efee846607d11c73968bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1b2c240cd780d7423cf661e8d1ad1e01f1c80522b0898c2b36abd4aaa5db24f
MD5 4403b2861770f1f3408f00f2649d8d50
BLAKE2b-256 24238457daccb3cb675d6a4f6d19f103e648278ff55a5dda77adf440bfad5051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1dcb3e9dc3c8d2d68676a2ac5e44817bdecc546ba13724d245e99b8931a92263
MD5 d9e3aac10ae0806357560d2b7397b833
BLAKE2b-256 58d8ec61e346e71a5cb4b78ad458b7dcec0ecabe9f3ae10adfee38ba2f15738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6fc1090ad2e4bf01c4370c767c988f1d55d0316ddb61e4f47ff720eadbede85d
MD5 822291e24bd477e05e1d64efcb634c6c
BLAKE2b-256 2c2460256c1d3beedb0b323f65a518b64f096eb719953c8a1c6d3bf9bd5138ff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 438.0 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.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a34422b5cc44f639f5db43edf8153b29d32c6ae3e1fad2057ab6d8b145165430
MD5 afaeba5b3b7f552c7e2ef452efed87d0
BLAKE2b-256 14a78f99cdec91171057ad123bcc4ddf295b591c873ca55e46951801294a6f62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78b7d8ac467a98d523bd2f7e8ef14147d61cdb19ce9ccd6f1a8c62d1c6686df0
MD5 256a8e4b8e7273629a0e577377bd110e
BLAKE2b-256 2dc29edb055e960b2a0202c339315c8e34616700a91e64f0697c9187a8d87ef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ac74cdfe43c5b65612b738aa3455ac87ecf4b9b5f678580a6e8be90801ea5fb
MD5 5bed977fbc128b107cadc12eb5358061
BLAKE2b-256 5b7a85ca4db9ef6fc633b844ae33b85228ed8c2d918b1ee64b1ad2adf016a889

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ed2fde8e640e9fbd67507e3f031486837f85098f36e8bf0e53c0c2230c9ff187
MD5 0cf601216c2d589bcc391b70adbc4e73
BLAKE2b-256 29801d51baa46082cd2f1eac76205d4889bea88a3ba74954cc304ead8706ba15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 122f181ea7f9ceee6790893bc2f70b6125ee4dbe648544f8f6a61c19338aff24
MD5 c7f18cf7c58f7d4278d706892dd47e4a
BLAKE2b-256 6554149405c4f88c45f1dfd55e865dd54f1e64c917a838d88cd28b7dd856a3f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3edc4d3062db8ac78a67eba386ef463be781754e22ff607df3dc8aa806a028da
MD5 2cd3e9972d1c99a0f9fdf7cf2ba29b41
BLAKE2b-256 4d372fd001d76c3d8ee0b97aa6ea1e9acc8dd8021be578b3f4effd7026846876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9fe973e8035a0d4c199f67692788905f783c5a486a1213a0d97731a51395ab5
MD5 3f0d3e1c05343121d55ec3606cbacc5f
BLAKE2b-256 e86455820480afd611337f8eb8ca08f8d7a8faa023e3d91cea2eb776cce6f495

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 865ece8bd9ac1b5b2e1e752a1c23428a067ceb29b9db683719f921623f0c0eae
MD5 e1679a932f739be87ebb2930f03dd738
BLAKE2b-256 a047d78372358c0944219161ab82b0d66a0746b1fba1dab2ab04ff47c64baded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5def80e21894375abfe34f3476040bee2808e9a5b4e64dd61845e71922b39fd6
MD5 b82335ac1c582124edbc336e5cef5fb7
BLAKE2b-256 0983b2bc22317e34a6af451c8b56de36374d0be7fdc18ec9930df4841fe2868f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a1bffb90c2cd62ff94f607e1fb9de656d6d21e6ad0f00df8e831fe489333410
MD5 9d0d4c613da89bd489c78cfc48125200
BLAKE2b-256 54f42b4c1e02609d0345436faf7bb47918218bcd0aafa31181103608959f061e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ec6891d8345fee65d72d93420580883700cb76471296ec57bd019cd11ebd33f
MD5 147516e34103f9f1c8569b25deb847c1
BLAKE2b-256 17c787842e0f79ea75b6d5a716b24b4ce7f12084dc83df2ccf7358f19b186ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 638535e473ea3230c760614990f97c57d4196b2ed59aad97c1bfd74e1162b66c
MD5 f16162791f10b7872093df1e2aa8653e
BLAKE2b-256 fa891a8440c80a851047b8142c2d65874d9eafa835a0b822dc2c1fef2e05cfc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b101fd63ba0541e88e13de2cc6ff7093c1705ba429d0640103089dce4b83d2a
MD5 6e6619ddce4dd3a5e50ff838f9f7c307
BLAKE2b-256 b2a87dda176d1bed013779ae9a5e8d9ea35d02288bce3dc45c09ebb2e6b8d40e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d83b9010ec7c30433c3ce0fba374213b1abf3131412d8f85a78551b5eeddfe97
MD5 6f8509eef9091ed8043cbb902c4942c2
BLAKE2b-256 644b107181b88a8e7224d5f0003c00757058eec3abfd7ebdebbb8bf8aae62171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3a1a02e3eafea16eec73d6e771827c5a178be2c1defe5a539b7399263875ea1
MD5 e606aea8f8b0c4d9e969094c3dc0acd1
BLAKE2b-256 daf0e22596a3ffc0ae6cbe2cbd89aded6c0f1f425c3294b887ffa4cb99b60226

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03d1cc4d22681a71c3baa26616d1bb44e6076f3127c6283c6f365e58b47ac725
MD5 1a78c2bbcc6000fd5b8dc1f412bdb2e6
BLAKE2b-256 f426eaff954d4130611da3a2d71f9a0db5ff8aa1e49b802c9a91aeae9133628b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 34c39d2b8e47f78a7ff3130d7431149b27f068996448025b873ee178fad8e10e
MD5 32adaa5a040235aa29e75acf348b147e
BLAKE2b-256 873d281915a43b437663441dba0c8a95c9942d2d8f75a94708b4c78bc7b63444

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd4533a06a5b83661f2fc152b25729746ed51eb89b6cd7a8e2788772d8f5a71d
MD5 83d309325f90b3ba4926f7b46b6a2681
BLAKE2b-256 5ffc9b8f72a9f8951fb5ca436fb13a9aebe846a146b095af035f101ad02a3e11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.5 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.0b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b7b933b65e850245d71c0d8a3e38095ecb43a53cca242e47be2783c4a2fbebe8
MD5 aa2efd10a4dd4ff5333afeae2b9dda3a
BLAKE2b-256 b3a678073809858b429320668eaef7e420dce37c2950aef4968ec5de2e4b999b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 458a4e4032d3ef6dd990e155355852edb2704a683512f77414a304bfe85775b1
MD5 10fd3183f55073534fbab58728da7dfe
BLAKE2b-256 80bb374e6216c3d2639b80fd8c422325568a3ff859935e347b9aac8f135f21bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 64ec90bc9b0993e2948fbc623e5d34bf803c234feb85fb044c19907b5dba4de2
MD5 526318910742eda2509b1a1a6be59231
BLAKE2b-256 7d63cf19fa1ec35371e16884794e1b05ee4ebec590846ba754f2c14a495de61b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f1a71b57a6df2e099eb303d64ae43f6455c9b319a69e09e8e19701327db9c3b0
MD5 a8376e26c25b84ce9612d735ea0af0b8
BLAKE2b-256 24d6695f0fddc73cee67afac2d7b50944882fef85455199ad028dd3165de14f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 110083e91dae80a5cda97172c9c01f3bd75687231c91a69ca262d0150045f0b6
MD5 b078dd98dfc2c0fd323bda7032eb2a71
BLAKE2b-256 c85c9d670a9e3a3121e083eee0d47c8a9af7354350185e1f5605dafa1925032d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e0016e818a39770ec7a146c8c9afac2ba8ad0d888754a4adf96492f5a4b19dd
MD5 334e9d3b092d6c955fc23b3fe8d91722
BLAKE2b-256 b4a5e3a4e9b4c87ca94bc7d909c2539205377767f3e5b902eaa6ac22ccbb9397

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2807413b25a826c86021d9f714431e1a10b7714b103ab38c1d29e74b4cb101d8
MD5 83c90666e367abbf8b1b3f089800ad20
BLAKE2b-256 dcbbe3231cb3d67f56bab1ccaa55ebe5408c7732b99308076ec852b7495598f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 247c51fb5b9b662b056319295dfd6fa34df78bc26c68cec693b28463e6988d3e
MD5 bf36296720544e7e2a7b025a5b0efbc8
BLAKE2b-256 95632142d61ebc7387bdd482258399aaeeca47d53af8a3e7cb2958a3b32e8f16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54b8997951327488dc7162b0c192cc8f2231a8b82e5f14eeb98a3ddf18f3afa7
MD5 947d1370f1314242b6052260afccbeb7
BLAKE2b-256 fc860b188df4cef47cdb21e7527209ae801ca1ad7ca1023a33d6c125535fbd56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fad38bbb7b6a7a709fe8be2d61791fa9d8b698d32cab2d925357460f7aad36fb
MD5 0b89f41f7803c46fe36b17a9c66a8fbe
BLAKE2b-256 20f3006e91815e8fbce4e13552a90c43df95c92038c65dcd04ae4342753b51ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d44fd30b66fe020bf91a22cea6b64aa1c81bbc9e4b648743b45bd308ed58783d
MD5 0a39d418f7040f6ccde318f36622d870
BLAKE2b-256 ecdb8ed91fcff0fd2e253da1a947fbcb5bfa1bc711ad0d475398cad109c468aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 560a9066a5fe7527c0474b293ca941df24eb8b8ac065755879c6c1803d0df974
MD5 8fb098b88341977ac879b3a921abe9d4
BLAKE2b-256 59195633159c57aed6c442711cd3f8a1404a5d3754f34df122933203ad5e9293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4233587c7897a113ecfc1b7a2fcca7c6c8c83bc8f531dd38ee6d15e463ed0064
MD5 68fdbf0785576eb5951ea59381220547
BLAKE2b-256 de04953d5fdaed74e20a042d9de2fcd3e72253795d68e7076f4f49162aa47cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a20ddce03f878ba45e6a368b4003ed065f93dd946d850c421019e3a4a6854b01
MD5 6a08212d2d987bf6eb6d5784816ad8c8
BLAKE2b-256 2aa015af84f815cb75d8276a6d4481fccd0ef9145e07caa20056141b7382c28f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82c96b09a549f7e7c9e245c6002c6eab3ba88759a96b48d76b625aff64373c73
MD5 754876b1796ffd8e1e48690c375be384
BLAKE2b-256 d640c5c61bcf26173e2d8e6aa552ba466b5109e8c6ff4a93106a6393ee1385a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8a4c89053e77f73a0ecfc0cd9e2e35a66e9e4db624ceebc58bb964ebfed7c177
MD5 fd4bd678de21a139035bd72b501d4af4
BLAKE2b-256 45c93b04c25b8d06c00bec11b84a74fe02c93830d7da8da5cc48ba2f48460d9f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-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.0b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b097e159be8eda7fcc38125c0b5c2f248e4da6f61fef21f2f2add27661aab77b
MD5 519366b6ba83045a19204387999e29d0
BLAKE2b-256 b87a0b1d3d3841a5d8e293505ace44c1a3df002fb74086c65b37d80a8acc587a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0b3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.3 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.0b3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb9619334be8241318fde711dc81f0e8b8a5fc070e6117b2937f413e2bd9e601
MD5 596a1ff9b2a5e5afa2df1e5f1f1cdf62
BLAKE2b-256 871b99a402859ad960cea52b2a2ea8f72d39314b243c6dfacdb7dfe6313dc804

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcbc35da6db7e60e5b80e29a1bc27da20559529dd33c463893d0ccac4461265b
MD5 df4eec0538fb28e7ef039f94314da0ab
BLAKE2b-256 fcfa3754cfc9e998e49222e36c337140dcd9c56f69bd063e58d6c49d19072e5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9c6b5403e36bcd8a806eed34500926f82833981434065e77a36bcd68402d2bc0
MD5 293b7f9b107d1930e0b412c6c077a071
BLAKE2b-256 92bd2a5d191799470e648362dec30fbb7fff5442650f9f54d62a085c439a33c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c4d542a337e1685b237cafc00e053db2f904fb067523bf3e468fcc562205f2ea
MD5 a47e92568a8291c124cb07e42fe6603c
BLAKE2b-256 72089d763a494ae47bdd068faaf7cc820c96399f7d1c9adc714145492a946160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15002ccf4db8fa4985d381282eccc6eb7f41a797fa5a190c0f7bb2192040850b
MD5 909c6156412e8ac30b5dde8ee65db159
BLAKE2b-256 6283ca57ecce72cf2424727254d7013b31910e2959e71feed47c4e7cb85c72b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2475b59f80c4088f02f7eb22b6d45bf6531bea8e95c20e97012c2ec0a3f8e26f
MD5 dfb53024570de765aaf758c615a66816
BLAKE2b-256 9d75291dae053bacb2d1801b0839ca044c7fb17b5d5d8a94e0345639c782623e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0419db5c39a5d1467c86077095fa08fc87eb697c2308484f33d76df7cfd21f9
MD5 d7dce0e37643ac2df0c65304a70cbb23
BLAKE2b-256 009ec65b321af7ba67c10a04a55037c30698eee1fae1db8a026ce4147a72d0fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 654ee39b79af93306560eff510259c2cd1882659e0359b0ee1eba0853733a760
MD5 518ef104623d27c2e54f0a52a9e83b9e
BLAKE2b-256 6156100258bfa4c961f23bb4d8aee9dc1f9a42b90dd53900fa6af95437f1345e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f18634dc76f21d9a0f21d33e77f67829d77036537a576e508202e41039c4d50b
MD5 b34fd6f403545ddacdd6becaabb011c4
BLAKE2b-256 133fead7931057752d1cff858ac3da12debeec9e64558718411a6e14582a2785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e658fe7ca53ac8b7eaa4e0d595906d78d5e37308c27c78cdfa7677c14ce570d3
MD5 f86dad325c62f9d6c20e7aefe685202b
BLAKE2b-256 5b9ddcb1f0b944abe1f1a3b6f31dcc85872873fc6ceeb4a097e046270d3f7f01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f4473260f04d58f53e99defcab64e93ddbcde06b200bad5d1324216f7455ddeb
MD5 12019009dfe9fee1c60103c708779183
BLAKE2b-256 ad7fcb18d1ebcc86e26ee4cb9026fe923d724211a8e7e1738f07aef89e062c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6646fe86ea36e7ec8eac9ad0b0d111394a5cd723b5c642a945d5e85e8948848f
MD5 da21d5ec75646dd6decd8a9cbaf3dc8d
BLAKE2b-256 55a8e9b8792357b45bb4de953b25e5e159d7dc1de315be6580e2f86eb23e5f2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ae35ffa7f5f628f658dc6ff9e5135b0c4fed387f3e8d90839db6a8e577d50a8
MD5 a76247dc68cd17fb208c52244a6e3e00
BLAKE2b-256 60baff0445435a0762a89fa6c7cd50fba4f6070c4db8d239f2b9afa9e5422d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e9e43f3f26c568b0e701dbead084a3786eb1eee3b846ad2066d500dbf55ec58
MD5 5b925dc644847a11abb590e8b19185d0
BLAKE2b-256 9c0b5bd0855ff8839bee2d64fc1cd23d58a8e2f94d77cb7c0c78f29f3a6869ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97d06b1fdc76a0dfd0c26520078bd237871c0c694c44a3060ce36b0dcf78570f
MD5 db552f318b323a66f8d598a295120483
BLAKE2b-256 fd9e59723e42fc0c961b7ca076b2efa91fa7b8b8bbdd75f9593a75ec82806731

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0b3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fc5f8ab802529e7a737311baff02a7f70848c67712cf46d2a336ffc30cff9fd4
MD5 5065fe66d5154fffaed8dc77b7c44098
BLAKE2b-256 5ae2161d11d4b2fec56a745d182e000f46808d8ad13d454fb651c9bc5703a731

See more details on using hashes here.

Provenance

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