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

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.0rc1-cp313-cp313-win32.whl (408.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.0rc1-cp313-cp313-macosx_10_13_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.12.0rc1-cp313-cp313-macosx_10_13_universal2.whl (682.9 kB view details)

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

aiohttp-3.12.0rc1-cp312-cp312-win_amd64.whl (435.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.0rc1-cp312-cp312-win32.whl (409.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0rc1-cp312-cp312-macosx_10_13_x86_64.whl (463.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0rc1-cp312-cp312-macosx_10_13_universal2.whl (688.5 kB view details)

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

aiohttp-3.12.0rc1-cp311-cp311-win_amd64.whl (439.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.0rc1-cp311-cp311-win32.whl (414.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0rc1-cp311-cp311-macosx_10_9_x86_64.whl (469.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0rc1-cp311-cp311-macosx_10_9_universal2.whl (697.4 kB view details)

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

aiohttp-3.12.0rc1-cp310-cp310-win_amd64.whl (438.6 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0rc1-cp310-cp310-win32.whl (415.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.0rc1-cp310-cp310-macosx_10_9_x86_64.whl (466.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0rc1-cp310-cp310-macosx_10_9_universal2.whl (690.1 kB view details)

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

aiohttp-3.12.0rc1-cp39-cp39-win_amd64.whl (439.5 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0rc1-cp39-cp39-win32.whl (416.2 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.0rc1-cp39-cp39-macosx_10_9_x86_64.whl (468.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0rc1-cp39-cp39-macosx_10_9_universal2.whl (693.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.0rc1.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.0rc1.tar.gz
Algorithm Hash digest
SHA256 f10dcac0a5bb9281e2d73ea158c0d1cd921739c214f70965e65565c0fe2658d1
MD5 fb499b1921bda027eec90b3abdb943ef
BLAKE2b-256 6804a7be4d0f9fddea1df7504fed0ba6e72612a380addc8c8465d44aa89e6a7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.5 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.0rc1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1130808e767a6b5819f280eb9f4f35faf03aeef1573e04d7c616e1652e010c56
MD5 89d9e3649ba32ca16f4d14a2c9eace80
BLAKE2b-256 9d0d8f9a8f42df649768f96d5308905821fcd114192cc30e85dc37bb503a2083

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 408.6 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.0rc1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9cdd487bfba3948bde2723f00e1a44a1137060d5e96a946ba785621d01666082
MD5 cbff7b212d81b1142118515c5d0cba58
BLAKE2b-256 51978389a3c1c83f953d4fe783c942dba7f6575439c3d28f4f88dd6bfe7f2845

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19d4d4f1c6d6d3f495140aae1bcc560abd9b1c997802f8c6df953d41e13b39d3
MD5 4ca328f8e391b9adac303a5f671864f8
BLAKE2b-256 54e9b35be040db98cf16cea697eaa6c93773706894c14ad11645b5b81ead9fe9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fad7d9cbc8b7d8c9a1e9503156b5d06ab6578de6086cb8db41cf60c4b4f0bffb
MD5 0bd23c813db2e0596d15d78e5ce95879
BLAKE2b-256 0d2f4bcd7fd423e243599799c2dcb99a2e5744e6c90e8a92c1ebf41f0d34040b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 96b1de91fdb649c2b9d73f245d30c0a62c4292a3a3f2be22d357b2d8a4982bd4
MD5 c559c0d13cc77db6e4f1b405b1c92307
BLAKE2b-256 df79e39e1b0b54a3ea3b22d61d20223fc6f67af38f9f8b2aa2648b979c7437cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8111bf9d3246a2f557883246607d83b50c954bc6472229f7929254d7797ab2e
MD5 bf98777ccd6b998a9b2a5fb11bd23fd5
BLAKE2b-256 32e3c7331e005bede7fba36726f2ec8ca1ffe7c7d8ba0bf43100a2172585d4a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ace2ab1d92b978f48f08fdd04a6d41a1889f09ec39d894e1603345f98d5de17
MD5 12e6df23c8c87874e12d3921f480742b
BLAKE2b-256 28b7dff79be53db33f325a58017cf6beaee3f5d6c605f362aa6fa877e11d529e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a6db34552522efd693e65fd252669d656590ea1b579b529749e82a6c7d3bffe7
MD5 a218b41439ea2f1b0a19f6f464c3e1e5
BLAKE2b-256 7b8c43043cdb2293002c222ee2852b8d2300968bc2aeea07449db4d61ea74642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e20a80d0945a5aac5a43414b002689b511c222d87b22afa4f886aad59bc7b96
MD5 e76bde1dd8a7c92db4857b5b41f84986
BLAKE2b-256 59e6425d17b5691ced53286123c9e58856d9c1572c1354fbb94280b09e0f2812

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 703fedf08ef392a853754402549bda3f3f2afb8712ebe89b5b848a4432a501b8
MD5 477ab8c04ea54283c170361591a73b54
BLAKE2b-256 fb0a29dc5c6fcd6f2524d1c1b7a80952e8ed5ef426ae1008142478b75cbe45bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fbc37105a2f542eedccd19984c15fb9cd5c8b20a0afc079fa414f9751af2068
MD5 4eaaf9b5b53b5cdf78a5f7dd789de8cb
BLAKE2b-256 6b3342a5780fb89cf4ec341c0a8b44223e86bc617eb3a1200f5758c9ae58213c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7304e1b4998e9da80958c87bee1e59d34a7ea2b7904ce7f4e223f0d45a82da60
MD5 2386fdadbd185286f1c13e213712ebef
BLAKE2b-256 d6dfb7ebfc0a5f1a138260b027acd1369addaa5260400d21d35fff69a920afb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c849874948864bbed1948a28083b113f4aa84b4372956ea0d9eddcc44884fa4b
MD5 85c8000f80a521bc3d8340881e90864d
BLAKE2b-256 48819314924352a06b2e7bbc2c3a19ffbc9a4a210daec371d504b92e6e2dfae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9462cbbc7d3f7b13264d7c783f5e0a4135692cd79357605bf55f26ef960e896b
MD5 6a141a908c31b624d87960bd8bbf02cd
BLAKE2b-256 04e16c0befe6ac8c4a0d71c6c8cff032485a7ba053c0d49a5ef7e18840c98b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e24c8fe28a6314284faf34c1892d70f86e9a181a8c49f913f3dedf73fc756b89
MD5 f253690a0b67e061c1845f057cd12982
BLAKE2b-256 01b1c5664ac1c34e124348ba6e3e8fa947ed7405763c7f554ae37d5e3df31c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 08a7a51f6a628ac4c54145bdae5453e192e77763edc085959c721be30595e6ac
MD5 fc31ef8d0f994f99e448f96f9fd20906
BLAKE2b-256 640a7d73975a4fd979e8c182f883d534e35bdb101d3a8b504dd30f3cb14170b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1be41dc9f060887a3f2305982a9db726b7f5950795339758388ad0624e026804
MD5 d3a640973b6a93f0a41a435f9055b889
BLAKE2b-256 c16d50c810b2e85280ed638cd0c8e8f5455e875f2a201ae917f7dc5373195409

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.7 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.0rc1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cd8ebce855e4b78c9cfbbd706091853b3b50a7e8a967761b0a3b0f2bf8421695
MD5 14c59f8e46e0573a4cc4e208d31e59b4
BLAKE2b-256 34fb82b49be69e385185159f3c70d5ba749f01d2219f6d147fce834eef12c18d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 409.6 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.0rc1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 aa5064eb2cafd4132370a1c6ec19778613069ce25a008b90a1c8b160c4d29a65
MD5 ff56bfb7620a1d5d05746c115338b34f
BLAKE2b-256 370982e950ddb5df69aa6c6bec86b08f0ff8c39c6a39df5618cf3a26a5978add

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 304b900030aeb1003b869b8cce741f6a369cf8b9fc2a3715b73124224645ad7c
MD5 490f304abcfe2139c8433c90f45f9290
BLAKE2b-256 3f9e6e1dc8b8a3084b27be324c934cf9e416bb852dc9f938d70b84c8e6cc358c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c61f61aeeb872e2de6570b1cc98534d02e23c83ac9c1bcc6c163c0879dbc0bf6
MD5 3a90496cdebaf75bfefab03ae3b7cf05
BLAKE2b-256 f3f4942ae47017092bf3bd0b223513a10f8e6a9739e36b393b549d82fed86f84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bc9bd5b8dc4c0b936a0278c81d9879cdbe955d6a8ffefde4739e0b5ecaea5deb
MD5 7765fe41c28782014e36b94b4b43c18d
BLAKE2b-256 577cbdf711c0b4e2c9bbef6a09c0834845a6f5bda348bf836bd64f51bb36e44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c80ac5eaabc0fbbb4446438a8e35931e3de2650e57b03ecea2568b51b3cd0079
MD5 69da603d91b21577baa4cb54e4cabc58
BLAKE2b-256 c21a9585f716db6df4213e2b390b7d3d0dc7717a24d038202b4ea2e3bceef229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc501df16fba5223ea1cc956673a06bef5f940d7f049949af850e00bebfa4e14
MD5 54880378f4659ebf882560f661fc989b
BLAKE2b-256 361b54ee8e159504ad3fe3d060b51f2cd548d627e8306ac658a9194b3bcc7bf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74d624a3e307442ff259380f9aa443bb0dbac6375b7a7ea44fccade212a88d7c
MD5 ae28a6d0ae4f8f95a1d421715b2d2332
BLAKE2b-256 18bc4e1b794697713aed3b79a4a48d20e89248929073e3708dfb91e720e7573e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7f234f1daf460603c42174810a69a4b0396f237963f709aa5605fb1fd395db0
MD5 b2616272c29c5020ff8917627528e063
BLAKE2b-256 d53f2414c49040414b29e2a208a8e6223eb866930d0a5d1d787dce235eca900c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae03ee15cc29790dc4a570ec5298b4b4de4b42180528fd80e077234c60313820
MD5 31e15cb6d50bd01711cca06636d1d175
BLAKE2b-256 6e957aafd7b661801051d39fb04c8299cbd2bfa97a4c05dcf63bfa88b3c7d6dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0ab63d5ebbc91a9fa812416c417162e914c152de61da7f2cb7615a2155e5bd8
MD5 a0c0a2732cba8c608fa83d89c2099e31
BLAKE2b-256 b6789262ffe60abf301808ba157b5562d0c45188398419e9a50d33f7454542d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c62298e299bd9c9b08aaddf46bc3e3a5735379a5f2bef6aa2b48f807fbc1ff3a
MD5 78531df5b1fd4806ac12cd3b6bca31a7
BLAKE2b-256 a6ff481dda616b6cae7fa8cfde1b34d73c2ec90a23e5b3d8dce6ce603bcbcf86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f61318f735f756b3b2b568529261facff815b9763426bde5b98bb4595132a43a
MD5 4df260909b73286448d4a840df6e851c
BLAKE2b-256 16d6f342cbafedfc212f3c8dab59f20775d1bbc167b83886e08cca452c363a3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e6af496fc38c48a41f5dc3490182f1ce5b1eb270cca475ccb3e05358ddb7d20
MD5 bd4905a4a60861fc444f5b6733891119
BLAKE2b-256 91761e0f0bf5729bcf0e79600750aab23ed4736c8650deedcf53ae1eb488a7de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0bed32af1df32e092531208a63ec669b7ad297ada91b9b2d65720ee72199f59
MD5 9eccfe9bf844047dbc4b1e1d18013ba0
BLAKE2b-256 da52d44cd417888c84e6893dd9887330f6c4bd3ce5e9293e5c0f60084e462b00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e08e03a6d17682aee0c1b9d01307e67580a9e7dae2525b7a2810897fd0a57dda
MD5 1d8201df45232af60dba994d56342bdf
BLAKE2b-256 8630c0ec3c2d8fed82499c86131b6567986d9a3ead354320b51068cf64f178b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2c0b5a2ba64ed4f79d35b5516ab55d06b62c5afeeaf5784a5acb5151f3bf5505
MD5 6c8bb0c0f630ac78472966a2df27dcac
BLAKE2b-256 5d761f2a0a336c5f92675901a0e9178bc86b92c2c85dbe972120d13bb3fceb8f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 439.2 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.0rc1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7cf13e217333f369728aae439f5bc70ecd89e18f090f445827b9f89c6a0d07ab
MD5 a0b9bee7c69fbedffdc68848e5bef34a
BLAKE2b-256 89587ee637628320aa1e957aae050e05e24de2e1c48f554d2b03569d6148e74a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 414.9 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.0rc1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cee5386729773e69a82145b8a9071ae073a49f65552c572533b3e5930d60ce28
MD5 e11e3ec131402c50c7360fc212f2d255
BLAKE2b-256 c0b39476f8f4b64d18dd1ee63ecc889350d12efaa84c15e3475c53d3df8313f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 090a3827bf42edbaa2b7f0db626fd635fa5e207905f537242719edc7e0940aed
MD5 a26f4995709888e609a78f232812db01
BLAKE2b-256 b326b52a19553aa1f772315795b190d7b97a6d7fa6a48e672bda0a613b2401de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6f4f980b7a964ab3d47cc6244d893c76959097e242d4f457e32fe2d93c8ba873
MD5 c077791e6704d8be2af27dab3539976e
BLAKE2b-256 63b9fa9c8af7e62c1f5db257f71be2ded218fac5a662ea08bbf97c217e2f8d76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9217ace19c718695035228686856badfbdc897939a4a50e202a626b08059f54a
MD5 460a2ce3e6110753dbb16f4e6aa11560
BLAKE2b-256 2abe362e624dddfe2b19642b672bb9b28714e9ca90c6dd743cf89ae9772581d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2a6f22b15bf787cabb197d1c80c182907ab294f17d85a2e1ce6adcb8934641c
MD5 159fcdf590d3b59032835732b0cde0af
BLAKE2b-256 b43a93d05ad35db3eb350c42ce735607723281c61f33148af649a0dfe3542f4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 930964af8ec2d1d495660fbab9eb807949dad4fa46609ef28d7523d88f4a2f73
MD5 e76e58f74a04e65601808417f432eb4d
BLAKE2b-256 60cd5bc02f5c74bdfb05d206bf2dbfec3fdc886a9de093d7498f9c5842c70505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80d551a7eef3eab0095b854056b4b851f25dd9e0fa906ca9e6a88c3cb1240f48
MD5 bbb0a17fb24ae2b6b524d87243925535
BLAKE2b-256 7f3cf016c6a47a9950a89668b887cd742433ee96391f6172f6f63486564746d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa97272465dc7aca5a05764620577615480346058aff1e732a1089334bbbbcf
MD5 32c3da6d73c030cd7b6fd6ca8e3eb240
BLAKE2b-256 5bcdf5f4f58f7035bf1ee8b17861252a1d9990935055908e91179023e182f364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 162bbbc9ff0464c3c660ff240ae7a94dde151d827aacfd53b540dbbad8dbeb9b
MD5 8a41b1394b21836701e3e9e0e9411ba5
BLAKE2b-256 af05c62ba8995a0e645fc2617364fc3305ec1eaaaa42a98bf4bfc6ca020437bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47595f608e9ab2e6559e7786c29c479d5086129ea37317f2730badb444a85f8a
MD5 429caed58f1e7a509896fbf1eeac2f21
BLAKE2b-256 168ac03226ca6e74196b24ad18c34958cf5e708f3c6a2d0e82248958f692cfcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e6c6ea4bdf8ce036f9df2563581b1610222d3228d792fc8006b423dc04ab684f
MD5 0d254285cf4136856910e7faa70ad79c
BLAKE2b-256 9fa0c3c6f1dae09ef495804381088f2196b28a39278914005487b5d9847692db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bccb0fba9b090489a89731afdb16ae896db8c48661e8becc7cb2a05569eed076
MD5 64de86c733e16b1c8a973f8570edec37
BLAKE2b-256 0de06d3f730a0e5f7c4028c075f286f57e2158597d0ceb4518e5488d7da3d651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d872ad59f4efe6787232b537538aef65407eb771296e553258b5d432b2ff2689
MD5 a488689403298d16e7598dd9ab577c2f
BLAKE2b-256 925e54bc06db7cc746cbbda349ec3c9f7539ea2ec6698870f335af4cd4a72118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4b51d45c28e851d1bd9199ae6242a5b44b536ec50b87292ffeb45cc35c54a43
MD5 8728d429479ddbaf2cb9e0ffd3f1eacc
BLAKE2b-256 3dea72856485ae51146093065b866ed0e7ec84b542b565548fc5823bfffaeea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c323b5262300ec1c6c1619e703868f7cb0b9cfc63cef8436620a2d1dd6b61be4
MD5 533ac54daa7ba800f68daa533bc27c48
BLAKE2b-256 9303de66609c3823a0842d0680726c8894cd5f7988e9a3553081e2d5373cdbb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1b1900f8f613e7f98c431fd97010cdbcad8200f3ad960935eb8dbd8d5788d025
MD5 7107631864d295d76237edd12f1cb79f
BLAKE2b-256 58cf479fe9ff1cfc385852ca17208ff8590b2f8daffd5053b5145925c6a9fb36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 438.6 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.0rc1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 37dcad086d8430e78adb06176eb4d563b622687a59037d93dc710117e5dbf858
MD5 9ff1760379c2d506ab0ce8423c85c168
BLAKE2b-256 4520d43f07f42be3e08cd159648e3b596e6e74207061b30666ca29b578c3a947

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 415.3 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.0rc1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7791697c37a62d456753e79b7aae06ca40de52a974bc5b1e2dccb8092713abe4
MD5 d6e478753d55e796650d77911fc32383
BLAKE2b-256 446050df7b17ad179fb073e1d1d8dce3075cb318a33cc4cb789ffb3ba6d26468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f9c8c6df233b849c6f3eb4a0bf869b5cdb6d21e320d114d0ad3dc02f589d598
MD5 1cadb086294c1f864679e1d9e6fe8e11
BLAKE2b-256 c31c7bc13abdb1deea9b8567fbc6200987cdebee32d22261265b25136d5b6117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 229276a819cc2aecf6257bedfe3aa5785dc0bee38bb22d57beb61bb773ab406d
MD5 7c34d275444b2c3dec091b1d25d2966f
BLAKE2b-256 f3aeb98701c1608a55bb51f98ed03a41bc6afc6ee8ca60156d04bda8b4670532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 02e63a6c396b950fd2be7d640d4f89ad162631a6b72a658388ebf519c7f35dd0
MD5 54b65472e25e48981352586c8d1dbd31
BLAKE2b-256 bbd84d7fd6f4425d3d0554d687da2090c64f2f89e623ca1f35f0028079976524

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3619ecf15d63ca8fbf9e9ec5a42cbeb46dc1c8d93c23f0ce82b8a66d9068f445
MD5 172a086705d550142ea25ee8c5ad2144
BLAKE2b-256 d76cf7a7b2e03dc913ff6b691bb9030c7d2c87a61b04384029b0b1b3f93c9e6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68ab7bc170edc33e40fa13416c71e5fc0204e53647e3f1ba652e027805d6892e
MD5 457ef2707475136205c94ef7f4b4d709
BLAKE2b-256 675dfd72094e93fef45ca7b0a4d68b1204546675c9c330c7ffc902ba13e24dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5ddbdd345ef3b50820bc40b2c51cd427aba3bae07be5429bcb8cd72c5677d892
MD5 1386967eb6db03ea64af3cd011c319f8
BLAKE2b-256 2999351d1635aba9c82dd6568730db92897ffa2521f092acab3e867017ae2581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a65ea03b1ce8292317a0715dfed2590abed4bd7116cbe4730c809eb21e8e0273
MD5 4bd07c9e6ae3ee59744c5da30da48a7b
BLAKE2b-256 70ce9053b585e5bff86fd490955d0cc17d0921088d9c96c320610c10bb239ab0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e601e783932edd4e5144056c11b0f97724d6e7aed7e2233feb2ff34029c136c0
MD5 5a241f2ded893d5760758156e9bcd0c7
BLAKE2b-256 f20b466d08f0a1d9a53c5203aaaeacc64b2aa03ac325ff71cdaffc62314e697f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0682a93a3e8813766ed5d6b32e58354d222e8e1745c0cac025dcf1934e34b310
MD5 949a8111c0087ffab0fe3d729c017797
BLAKE2b-256 74ecb496face85eb8d8ae0d49166fadb5e28e5554e5c0d5ba22275022db3198b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c1e1b77f6c763b3615f5631701ab6fe5ed2ab134d58259859f6e53515ee1f7b0
MD5 33098af4baf33a7433ce73ce17e9ebe3
BLAKE2b-256 d92c3689cb16b94e1ba9ceaa04414e6f16998b41d5b449fe56fb07ccf3df6384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d563f6fcf66eea5216f2e11c0c108e550f9170a820a186b67e0775d9ad1fdd33
MD5 81f58daa5462c0750a9ccf16e8cbe53b
BLAKE2b-256 d9322e8aec505cf9db37f273c268a1018facb5aabf3240eb403f58cc5067322b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8b564db39df4e23d30aa42b5711b95233583a6725b9ae50979388f9c3921834
MD5 97a12313e29b99aeda59fb44c2cda56b
BLAKE2b-256 5937366dd6b2a831f2751f77f8c00b98e1d8a16cbcb94fda4676dd8815930fac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18b82f04f9d066c12042a1d05633288a798e6b41a6539813e3f499e907e8f641
MD5 f9985fea8622bf3d3a9ba843c10518d8
BLAKE2b-256 082a0e90da8fe8b63fa42ce56b5b08c41071a94c72ed058fb8d25528efb3e9ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e13b24d8fc7e3c2dc2fe340a246980e87d6538b4fe924a110c4cd7a7f8fb13e
MD5 19b149bc5dafde7f01982ec1155e0989
BLAKE2b-256 2e02b93016fd88f23e7283518ced15f8df12e0df35265f7e861f2b7ad5834d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bdd216bdd41730baad4ae0edcfcaf1577b74a0a0b11ed13643ded247984ed187
MD5 ee97a855ab49aeaf1247b14ab1f90b41
BLAKE2b-256 192d30d3389b72f3b4ca292dc70b633508eb280ef7ff10b5bdc8bb6d6acdca58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 439.5 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.0rc1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2e5d983ddd103ab14a6d579f113c4063df0ad983871194bec9b409ce6bd4f482
MD5 52a91b70dbb1b48b9c7181a05dd57618
BLAKE2b-256 dd1727c4fed97b01a002562ff71409c97ce7ec9cc6f7b6ca2bcfc38b8823e96c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 416.2 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.0rc1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3eda1c85ca960f156a8673b8a2239666f1bf958a629f29b8f4d09551ac97b9fb
MD5 9db523e57ce96229c1379811b14a1ddf
BLAKE2b-256 e882f2be4297690f73b9485e2755824bd0a72a55be8424cce04ff1562fecfe1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93538ed9a75be8bfe61db0bd60de3e73c62befa6896ae3543c6c456ee6c83b45
MD5 e124e97e9f2775071a8be9f61395ae71
BLAKE2b-256 8c242632ad3346a75cb5cca4cbe01dfbed58d67fa219e452d0b9ebd1c3b6b9c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 64d97b2baf4a94a7b1c493e9625be5e67371478cb786320d04cd782cd8e50ea5
MD5 b9db12883ad39576be4a43aff6642322
BLAKE2b-256 af0df216fdecf7a6e2c58ca7259c05e9eee4c4e36d5bc8007091da8d7787b8c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a79bb313e03aa6603698168f479536491192de820a82a7828602fda9eb9b444b
MD5 c3bb4cca1d2a55ee0935404911da5fcb
BLAKE2b-256 a76a7e9e7234c205a2c76d156d5fbde3e45aa78928bd4b64fbd940087bd3b5f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1360a9a604daf85db9ff446fef6746b6d615f6a361500bbff6de011ebed058e0
MD5 4014665e7e04bee47ed6453a640c2e39
BLAKE2b-256 976fc6befef766c5d66b99fa5b5a804d273da757104ededa933c219506ee1b5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b34b7ca2ef87aad43a8e9c1352cb88ce6a232fd7aded7798dde29f13dbfe6aed
MD5 5f8d2f541caf803bda04893a2882da43
BLAKE2b-256 0751c5d7e10a5f9fc009dbdce4d6834c08a6a689fa0f7054af9d84ad1d7f7385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4f16f709cb2a4875b530294b930aec38004567bdaf65774dc953bf3d35c4e46
MD5 20d2bd3ce24f8def3b324e1c89cd7b18
BLAKE2b-256 bc899aada5867b96be7af58db97df17c2e2c15395916fe525bfeac1db5e342a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4946fd2a938f0eddc51bb45efe80403ee905e7b9452047383f2229f3d881b791
MD5 131941074e3120c63f0e834b6b9809ae
BLAKE2b-256 c64c7983aa66f0a55e6d75e29cdfab955b02b604ed448d96daec168409f4b5ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d1bc34ee858995ad4062634d46ea7ae80cf362dbe5d3419f364707082e0174d
MD5 a756ce5f60d76e19e423a9abdf845b83
BLAKE2b-256 051d4bc5e2647a6488bbe20142f76005e9c9ee053257dc32caff72023d9ac687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d4efc44b18b444c542324706e31140b0df9e8725c6f9a709f3ed22272936bb3
MD5 cc33c4c844db1bd3e8bacc70e6644806
BLAKE2b-256 41d263101b8743a0ff811a6f63fc4654b82bdeabe278a0764188552e0087248a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 dfa099519c3ed28a4cea280836b980416ac218d5780e6dcdda827d343728cbd3
MD5 602ef7e944a7ebc1061bf0a6d6f1100a
BLAKE2b-256 4bd21fbe629b868388182367416d60fb30c79faab074941c9bfd688ae23952e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7da346b3bf4d88faaf95e6b3204cdd11900449e07c7e72b62b8a61bc7c68da9c
MD5 fb19dab46cd7463d3152cf49a6d4a68b
BLAKE2b-256 6ff7478ac6790800ca841c2e2c19fe4e8b301c36f10cdb0b9ce873e50002a3b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 552760cfbdbd65cca8b00c97f39c82e861e4e8881a6997739bd9b18db0174df5
MD5 8765493b85a801edb8769dcd8d992d1c
BLAKE2b-256 c4b1dde81579fc6cd53adba4440f113523d99d75a816e16a76775a2ef5a7e3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d156c5e5738ca94d00d15080b9bd968430b5d829563875f4db666f39e204a5aa
MD5 747b7d9a582698bff379905e3aa43cb0
BLAKE2b-256 eb2c9d33e1a1828efaaca9cd9448f079d31b54509200ffa148ccafa72ec57d2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93712e42dd2247a39b5efd3b913712665d38f4c399654991a710d27d40fd8da1
MD5 e55ac513d1d108f7ef480f6c540d5e77
BLAKE2b-256 c2d58ac799747b410467c78293e1a7d4ee4f9a28e986b728dd83c6ea2e986033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5689eb7a97933c0bf4bfedae8418d1413cbca480a941dc127216c860f19089e8
MD5 fb66ce911dea9dd1502ae08c17cd1c3c
BLAKE2b-256 3bce7806167a2738a4f0836a802ef2223de1b854a8764ea2f32eac9da35d1748

See more details on using hashes here.

Provenance

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