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

Uploaded CPython 3.13Windows x86-64

aiohttp-3.12.0rc0-cp313-cp313-win32.whl (407.5 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.12.0rc0-cp313-cp313-macosx_10_13_x86_64.whl (459.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

aiohttp-3.12.0rc0-cp312-cp312-win32.whl (408.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.12.0rc0-cp312-cp312-macosx_10_13_x86_64.whl (462.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.12.0rc0-cp312-cp312-macosx_10_13_universal2.whl (687.4 kB view details)

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

aiohttp-3.12.0rc0-cp311-cp311-win_amd64.whl (438.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.12.0rc0-cp311-cp311-win32.whl (413.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.12.0rc0-cp311-cp311-macosx_10_9_x86_64.whl (468.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.12.0rc0-cp311-cp311-macosx_10_9_universal2.whl (696.3 kB view details)

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

aiohttp-3.12.0rc0-cp310-cp310-win_amd64.whl (437.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.12.0rc0-cp310-cp310-win32.whl (414.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.12.0rc0-cp310-cp310-macosx_10_9_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.12.0rc0-cp310-cp310-macosx_10_9_universal2.whl (689.0 kB view details)

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

aiohttp-3.12.0rc0-cp39-cp39-win_amd64.whl (438.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.12.0rc0-cp39-cp39-win32.whl (415.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.12.0rc0-cp39-cp39-macosx_10_9_x86_64.whl (466.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.12.0rc0-cp39-cp39-macosx_10_9_universal2.whl (691.9 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.12.0rc0.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.0rc0.tar.gz
Algorithm Hash digest
SHA256 8409ca7fcf488b116a05a9b021245d41a05fc4be5777de25a3ae7e4afc3b0111
MD5 d9bf2a066139814111767df119e6f39c
BLAKE2b-256 6b599e393ee9f0af89c26e430468a6f20ed248005a4c9063da5dfeb2e48cc4f2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 433.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.0rc0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f5905f74e73db28eb70ede30b2cf1064204b6ee25d1c5721cc1f2cfa24c7552
MD5 ff750e9f33c265f096c792def899d736
BLAKE2b-256 9e8553bec16f346fc00fb8027d0f4fc784ff7a072be84305f79e20aebd6483df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 407.5 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.0rc0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b3fae20ba2426a3fd85e699df002c5c47cb8e8fb3283e94e7bc462ee61bf5b75
MD5 f34bab9c2fdfe1ef341d1b2d635783ce
BLAKE2b-256 1c33eb5618b84a86e0036c5dd32e6bcf0b735d70ad6de919c386b21ba6b6b6e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e5102404801a62a02e8a8ad55758faa0b7e4b83bb201fb5773dba48340cacd1
MD5 bad10f7668b44b5074c2f24cd6ba1892
BLAKE2b-256 eec255d8d379e303c49164e415cd75b41adebf8b526dbb9ffb0a52565d33e4ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2256d4112ca4f967ba0af9d10ae3980ca92fbb97147e1d8d503fc537e02bb905
MD5 6560725e05d4053be8fbf8c845b13aa1
BLAKE2b-256 2ce7f4377f6746c9987135d0989d910c6032639811af625a93e6e9afcb365dfc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f7cdc22cefc1ed80e5ce9b7145613d4922200f089d59a3b84a3f93e04a41ff7
MD5 650877393a9fa200c1fd4c22b3913ea0
BLAKE2b-256 af1dfd8e8bbc2c934df84f1d46b85ab7b839185d728c3e156e51e76c4b4db25a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a855eb6cdc67a25b11f813b6b3c3524daadc5daeaac2d59a5688d3a4b2ac18b
MD5 6b79193c8e42721ea6806147c5673470
BLAKE2b-256 29399a635c3156812da3bf840f5b01968cb34e01c44c9ccf4df194413f386462

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 609c24adc9dd0e536a4e3155d8ae08e7948279d98ac5d3ace28d52580a75ea4f
MD5 54f1856f59f635d2b91ec76a1d80fcb4
BLAKE2b-256 ccb8fbec1fc1881ff1c3329aae0c6576708b6c687687a92c43c192391720e8d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b530706a74e4a5290e71c5d54ce02bae9a69656bf21bcc2018aca5d46b47e2a3
MD5 c25c7f96aa9211a147124d94e4297e6f
BLAKE2b-256 fa4b4abfaa77261e77d44eec371707424c166d3e50af0602bb2d4b913c3e2cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12ac29497cc3cdb3f2fb93aba98478a863ec197a19909d24d03c9adf4e7603f3
MD5 f059c8eeeb2ae16a8dccb97dfb72d09a
BLAKE2b-256 efd2092b7c488d0d4bf68c88c7fbaf092b485d661eb5115960a889fb862ceb2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f2bba04b719e6615f77bc5750cb2580198aac196ce371148517546ae622b9f5
MD5 43384004cf358cdf665d778fe366ec46
BLAKE2b-256 6a05ede705539339cca3ce5b7eaa04844213acb08ed7df585522ee65f53ccefa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81ab19f9f9556a5e13d7acb9148117281ec9e6596f49164491061b70d1fd00cb
MD5 df146396f7960cff7c0d4e4da5e391c1
BLAKE2b-256 93525956ae7e52633dadf24f4eae78478b1f5cfa33b4c0127c996d6c9dd7fde6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 51fcb0d34c4f585e72d3da6fa8b0d2229e9c943267be9263d8c45abe26de83ea
MD5 303672099b9d601460921df7fa394747
BLAKE2b-256 7286de839cd4b4acb47252aaaff49cacb6838081866b580715a683fd4b7d4c2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3488dc7c0275162dc55611757637a59896de46f7f72a7b01019547d9d0e4cb5
MD5 adb961ce100d96bc459e2f38fe5126fc
BLAKE2b-256 4dc4eb6c5776013a80ee75c0c32e94c982bf8a091fb22f1b1ace02ea8758dfbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5edda7c806c5f05922a8ed5db135c77818b93e1fca1548268dadeec2d0ed4291
MD5 059c2021c3eed57395f3e9e89cb7d0ca
BLAKE2b-256 f11ff295ffedccf88976efa3f6ca74967e8ee1cdd48e1e5f116491b51cdf6c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6819b5abe5a7f01078d112a90222525201b6214ebef5a1477dc8df50c412532b
MD5 9423f8b19fdeb02dc629bdaaf19f285d
BLAKE2b-256 27c17d65189dfba4675871725e638da3d6fae7b53a1af1893410ad6b2872c900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 68213765d8b1f9a1aa2121735832401bcc4671fe5e5eb2298cbb90ed1c11a6f3
MD5 2d3e3e0b532adf9a8d733eda4af993c6
BLAKE2b-256 64e8e798ea513d27758e674a7111a2168f8e9e5fa13cba2b84a3d19582d5a0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 564ede7f4140f223b9b46b49f241994c28cc94b32939c639ffe747fc899089e7
MD5 157350bb262f1f65ef9d09bd4f088fb4
BLAKE2b-256 7163389419a2e4b779981f68a55d7942e1c06d6fddfc9725c204397d3705be66

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 434.6 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.0rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b92063a096931ccaeb0ddb09db51cd5436bfb1c94dd880ea82de44698433407d
MD5 53c6e6d977ab12e226f559c137d5e9e3
BLAKE2b-256 352b3ff1280ce72fcdbe9de1c0da4ce35fed5330f7eb4fb4a80b89399eee4b46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 408.5 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.0rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 34d44aaada2ed60d1b0916705ff84afabaf2f1810ce819c27052c0f2c3f1e627
MD5 b9350d20baf39f95fca95370b78deaed
BLAKE2b-256 22d805c20b713737d77fc61531c6481bd99fdff8cf70d5dfd417043acdd65283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 defbd344ef8d34157e21b23d25f2b39a2b3646534960b8a33f2a3701b18e8bc2
MD5 d5ddef6593ed67d4ca8fea83e49b0ee6
BLAKE2b-256 aae9650f90e8c0cac826c58dfea50bf8a3c278148a27a5e6732bf9ed2f723191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fc016096a6c92a2d27abeaa3a127fa6203f3a7c15516467b1f668e6be9e229a5
MD5 73c9b028fce7baca801dfe8e206886a4
BLAKE2b-256 ffb3ab1136554ec65207c86bfa88a273eecbadcfc1b09a98aef1dfe9463d34e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 82d3c811a2eb51826c63d25f14d55e80607ce60fd15bbe4ed28071a805e78754
MD5 1cf113de4ffc35b374fd670d3e9509ca
BLAKE2b-256 87de928fdb61050c2a6b6db4921f6b8ee2751e108ff77037ae174b85ab015d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02f50c62607012caadfdf25e02c27560f0682f6c6693f1b2695c83f267ba7361
MD5 d1b72c4fd0f74e4080a2b809aa425c12
BLAKE2b-256 c120b31c78def6535702de5c3be955db5ce22f62e7ad29e4903fdc4b6ba43268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa6fe09084cb3e8242f788975e61ae63b55e2f8a93373f063548c230388bc282
MD5 3d38ceaeebe085e0857855524d55ab3c
BLAKE2b-256 c078ccdfe2c1c514d0d963c165fd3b392536464941eed36d85da04c09761027e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ab8bb832bd1cc2bb64cb59b540f64612ef5a3b9c22fcff37da6f43a4bc6c575
MD5 2b57b910ba62c0592ee09b01ef39b467
BLAKE2b-256 7bb8fcc4ab47289c36879fbe42d9d4a28de6caf3b98c02d03ea7a3f442deaaec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffe5ab7f04c7c03ba748d9e38671b19e0e9b55ccc816773f9c77be20df5cfe40
MD5 0aa29d0d1bbb60ef01aa73a28bcaaf94
BLAKE2b-256 29405bd5e35a66d0ceb572ea1c3fce30c8cba6c93757f26f9ae05064f538c50b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d727356a05d42759639894c85e6436fad8446cbfff1716768ccd06dbacbb7d53
MD5 02b084160c0d20e9af84bb863359187a
BLAKE2b-256 4d9bb6845bd56f028be7d387e179500f98977f0b01a4b762cc599091e2163616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37f9ced9ad95003135b4407274138f524b7acdda6ee3913a332faa8e4135ff90
MD5 8d4bf60dcfd134ec51f7538f8a7307cc
BLAKE2b-256 7fc1984623d977370f2c6e60b1ab8b5404dc08eaf6206554a62fcfd155260174

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 43c94781d5bf699bb944d45ebecb080d6b0f6945ed86c21bbeebe1c72376b7ba
MD5 4efd0c3854bb00a4659b3e01ec35923c
BLAKE2b-256 653fa2e03f080c0384d42865b40cbc8e39ec49f439ed545990c68cd0e9b3a145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c9a63dcefb83476787abfe18aac237ab50e350ca00d6241f1c05ef2f9b0bb31
MD5 ea015e5d1af34d9cc64300c7279310f0
BLAKE2b-256 f19a1d6c40b057d241f5cb35660d7b57ce87f7be48223f7e73db75bfda7fb636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14c1b6b1f0960b758bca1389ea891b1de85bce890fc77f8a1e94c5251bcd98d6
MD5 cc63ad05b31f59032a635fda666a5c84
BLAKE2b-256 0f411e4c881d268ff30ae2bdd64096c2d9b2a6416f962d464d8fb9eee933431e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 131eea5d7c7bbb6699a29829f9a6ecabbfe11236420f3394ea67fe1ab7a0e2c1
MD5 624b09c4912404a361c4ef84093e4895
BLAKE2b-256 9bbce2df40b5d57157e3020716060b1fd0c3a15eb2e0e680dc92f7e201a7e36b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c62ffb304cf693e911b156025c92c05be2f140df0e2800663d0ba31777a0bfb5
MD5 ca64953950875c022e5caf53ff8e5796
BLAKE2b-256 e9178cd50eec396bc1f3f156245bdfce55d17f0cf4950241a9a42fabf4aa9766

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 20a6696d94878e3667d3920aea0186c70406838c7f4831eebc55fa1dd40dea97
MD5 4ed684fade1e01c6260c405f03049ee8
BLAKE2b-256 f3423e2d94e9631d7e923d89159cf05e63b41e304eb090edd436a5866b639501

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 438.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.0rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c98dce96bd9a7489674195c07aae2fa5cf53a554fe066a7c7096e74c145c1cde
MD5 d5e7195e1b65f4855fa66340e56e1ec3
BLAKE2b-256 68eb2dbccfc5b9d224a8ee118de68512aa32d913da75d2e07952358796b87772

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.8 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.0rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5aeba4b3de5f28244601a327b7db7ead08e8adcdf919aeebf94b4626e0fb0356
MD5 6bc71bafa46c3b8de1e90e2ebc708f9f
BLAKE2b-256 525e09d80fe20dd90d762bff7c4df687022114bbaecce5755da4c17b35c789e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 282db68dcef9f70ad238f9361eb477ac408a1d08fc4265e087945f3da9663b79
MD5 c7aef459ec2b1557b759a489a08716f8
BLAKE2b-256 381b220ba2d8d1c0075640e677238241cce3da38b9873d2032ecb0c1a3bbb235

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8ea7dc1163c18bac66fd5784782d4f3ebdb990b78b3a3c24c470210aebb64bc0
MD5 c00f8d01168107a8f24ee9226cedead8
BLAKE2b-256 9458424fa8865b95f984832cf1e1b475f49514a7fd9f40797ace5b83800c61cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a0151bc17dc1ea6805a69c3e30569a08968c71ec2e7d90494cf405e9a5752f37
MD5 29be009a6db71324b97b3546aa6b2536
BLAKE2b-256 f48ba53af6cd4ae9030edeea9d2d193c7c169be5cbbf8e8a8f7f6cff4b62d43a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b45ad14ec530c63c30f91677566a6324053dc3ed97851ddc51f62249415b37c0
MD5 604a60b1deb32865f0cfe0a51a319b42
BLAKE2b-256 6778915f47930c1ce9d4c88277b9945d0feec7fe968422ac43e14b5a8da3ae0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e8043977e96e8c5f4faa6cdbe17faebee29bd508403606dcaaf8abf5504a453
MD5 0db7426eb25722ac40ed3e4a729e482a
BLAKE2b-256 50fbdea60e163d627a60c867182898b391bae68adae72bb2db40890d46003419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e0015028fa63ec820e4593251011b1f816ef99f0b30f51453929af6553870b5
MD5 0a06d0f4a9d6b193bbae53d9f7b18817
BLAKE2b-256 292534747a9f0569aaeca3ba45078274d6a7fb5c903baf06d7447f7754bf016b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 541f7c0abb9a09612a15aa32d11e6f7d85bd8c3b20a6c8d2fb3b6dc640b80981
MD5 df2e625b2291dafcf017ecd9e6e9136a
BLAKE2b-256 d3483201981847efdc3421c480385b1fb3e172b3b0e6ff5aeaf6390e130e6b5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdbc7af1ec991f1d449a50396fa5a61896f243d8446f525ec283992857a8d874
MD5 8a8328229c94a3706183d69c809b4745
BLAKE2b-256 fca82b161c536f4d093c123920b1019cfc10dd1debacd31042ef9d4674095bc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2572f46966845da7e542683a657e858234577476edec255210fb0856361a470
MD5 1414d926120df27ddcb8f841becfdb37
BLAKE2b-256 57d86ea74c035ac3666d6c613ddf314d4c0fb35e452cc37edf6a000719ca8fc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c2546b6f918d67cf8cbbf104e1913dffd1e05830fc9d56272a01ec457b3524e2
MD5 a4da55484e2894a442554a990eedecf9
BLAKE2b-256 03076ec3293f24674be0fa2078a2237b047e90dc5df9e38c71f3b9942de29e2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4625c418d85b531bb878c55f6becbfb92f671f6c39cf10f4f99121c8924fa4fc
MD5 283995aaf4aca01a7426550182157c6e
BLAKE2b-256 cbc3de845ce9e5171cd1e6308684c9ed3cfb8c0d2e9874ff3e313c43475de3f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd766800157848c49355d5c8559b30434a03278500a2bf55ebb06f6aa9628c6f
MD5 ee1620e2c05c274350f8c80d21299e82
BLAKE2b-256 bfbcb5b49c01ef233ceab81ebb3453f0e1d6aa4e70a5644c63da92913ad7d87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b28e94fabffbb5924d2f5753b8e1402e5151342fba5eb77cf76b67d3bc3abb8
MD5 83b0185f7a72a618d38f7a218bd53f67
BLAKE2b-256 d0836ff696f5ba57ef610868e739a5ff7ae9f55493df77c6479ae354ea245e21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af567a729da1ff58315acfd898898570a52323fb4910de0cc57610eac1719779
MD5 12c5cee936caba733716249fce790668
BLAKE2b-256 1363efa39f0a135a4932b87c91cd25d87a631152bb5222ba58fb35a32988cdb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8d43940dcc07bdd105fd8ca76ffc4e87801617f003606da1ab70221b6c85209b
MD5 3307784d5bc1c3c58500c6749657de9c
BLAKE2b-256 bbf46e99604bf7b1bf7d5e838cac55eb49d8f55c1d7f3108afe029b2b81bba79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 437.5 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.0rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bc3af49eaa110d176f38e1289d67a5c3947a971425de5159ee1af342a18849ff
MD5 264b758d695a4efdd546bc09280d56d6
BLAKE2b-256 40e358d4d405e1766abedb93f31d6652d3cd07c33dccca40c84520b019b0172c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.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.0rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 424b835eda95142ad17211b9983fcbaa3eb550f3a5cd2f16b992731d385ccd06
MD5 0b898a1f33775d7038edfb8757ea589e
BLAKE2b-256 761fd7060c76da271ce29b9ded0fac8ecbaeef1f2d2f4fb586c7d5000886f095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1cf04bf2de6b61aef59b098c4a37d764fecd7dd618fa139c465190bfaa65c6e
MD5 af5901768254297369dd2d181f233e4c
BLAKE2b-256 2dfe73624c35fca22c1a2d9e8f078795ad9d77f8424c56540947ff32fed9d8f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de7f7bc2b2cd9b057784d766a6ba00a597be3ab7d916bfb6fee292d01608fcb7
MD5 ed0c627d791df2f350956a2ba4c426fa
BLAKE2b-256 bed0ece7931b613d2821d3327cd33de3fd40558e8f30d872c034783d9587b86d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 41861efda0e6f7f66c8f96e4e9c55b926a637796455acffccbc5fe2037766280
MD5 8b77fafdb06b67d1521ad1f94ca2d829
BLAKE2b-256 ac907a5c29a0f97cbb360bf812a62d120b78e1faf56e1370ff6eb4b34b9b263c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bae42b101bb4bd4f2a168048dfa897b9cf22787142b8d6d7f7788351c5426011
MD5 49c3162577c0216d58dc963de688b4db
BLAKE2b-256 88480da6458b298bd66a663343c6409d1e46df1ad52922cc448f69ec4925d8e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8944c05a24508589d6d738bfa76fb59137e63d20e3ca00509294a59165785ef2
MD5 8e287c3acade3fae7273817f9038bcd3
BLAKE2b-256 fecea6d8bca3d728f736c87d6963bba843b4a28b28c5a31754d8207a93d2d2a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ac8a8b50b3e8cad9341df0286c102a508075c90557c93ae581c82b027152380
MD5 013fd1d330506a91ca9ad56c31016813
BLAKE2b-256 b0f313e9abc3f2b5d7764556c7a4a1721977ae0635bdf914b34266fe57095899

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 907c0a621092db602b731871119322b47b3c14e8228e4693f0d4b2bf6223fbd4
MD5 7ef1f1f05c2e48700a19ea7355f86d08
BLAKE2b-256 b2d836ec154391edcdcc43090ba3756c4a0e7b8ac8603d778da354b050a1a2aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30f92459675377c5ada4963d2416f8c365aa4cfb2fba9422a899fdfa29c20235
MD5 7f8545ce6996fe7acdb382838333fcc4
BLAKE2b-256 f9ea67384bccb827008a4aec504f13d08cd719a10be76efa77bccdfee6f307cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3165916c4948d3d53c12cf1e030437bae6eb031d311c90f8c9667a83a00da7b3
MD5 e448a9792fcc49a55855de60d2a9bfe9
BLAKE2b-256 826e356300f27c36781d335b5b90bb2e063379feec7b6a42ffdc8b00fa70ef48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 585c1f08406d50a7ad6d00a7ea0a0fd93dd3ed6b1aab8dd05100f46c5ad59ab2
MD5 37613f80784275e1494142dff591e696
BLAKE2b-256 6ed1714d9990aa105e593fd39e0ac6f19f560dd401660e346b470567c8f64de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e366a2094a65cc302e95903174b0174e3bf646a310f3337cb295ff997a7d207
MD5 0ec397d4269d599701d67717f39031a2
BLAKE2b-256 fef25cb7879a55f2d1c0ace64d980652da91e4786710ddb3737b3298a06e11c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74b635027af3baf15174b79b2ae2992b354c0aa6b9a942e16747f8eb5ada3464
MD5 bba49ec135988f76cf23e8e8155002d0
BLAKE2b-256 ec98ffab91c44af203272693118922017a4053af5b20e98ecc67b418a3c9d384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 122d6cc4e4377da6c0739d0954748096616d48870dd93c922be864ee5fd74bb4
MD5 24c6ec9c5b60139657a756458103f16a
BLAKE2b-256 cba6e9c83e479d0a63b5569f1c4f3cf3c95e91e0462917daa593e3508c18ca10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80d4ca384d203be5eef15257d9bd7184cac772ac18256de8da471413f8fa22f5
MD5 2afbbea5fb33dd34d3ad4626c791f654
BLAKE2b-256 ab8c72f16f1ecda4522666325cda60df50885075c06d46f05dd23b672d512070

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 98efac687e14b2b22611251102e1fefbfb7c48875748c01b789d3521ddffc0fa
MD5 aa2f374ff3bec107246e16d8ab22728c
BLAKE2b-256 a683edbe6181dc98f94f1ea85d62bcd8d928db65dd02ba0fbe3633e9615f9bb8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 438.4 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.0rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f60bf488f2e5ee129a585ad5519cc82def3ee629794393829489016fcdeecdfc
MD5 6f0de1e83123ea87b67ba95b720bfc6c
BLAKE2b-256 67f8f129721d9716e652ed5d2d52d8d336795b362cb81c60bec492cc5f3131bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.12.0rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 415.1 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.0rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 974b977b9e4565db6d491e982e10b64874ad46fa00e7c2016c4ae94984008eb8
MD5 99ee2f1c38a3881d5edde2b261606577
BLAKE2b-256 75bfb816e479dbd89c7c9fb15a1355d2e956114b711c4d284010c7804a7a6f62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39c82e9514e58551dc048e7938aaaa36bc32ae91723d3a97f8804f749b81bd64
MD5 0e54608e149b9ea39b73b3352d05b057
BLAKE2b-256 3ecc3d51ecc02a0922a516b43d63827903c1c1dfac7daec7b888536432e43576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a34dc652a76e87bc49a0a9880b91201ef575563e3f33470900a92662a4512aec
MD5 887cceeb7e7e196c92c898757651855a
BLAKE2b-256 fe2128542a5bfdc559e34f507b4e777bb251eda08bf7e974e3f5eb860a7a919f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4d3d7cbc15dfe2b2cba5ef42468fcae115fa06cce1e4e896c4df5091ee95976f
MD5 ecb6f24171d8b1e930307986b2f28b17
BLAKE2b-256 4d508848ab455f031da58407f5904b9548bdd710de74737cdb1347b52e6b9221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b50122603089a6a6c83cb20b9d92785ef3c6bec6aa779921f63815a2c0330ca0
MD5 c14eb38ea723d1189d62b574945929c1
BLAKE2b-256 5faf7d8e4296e7234a352e8db568682af807b056de9252e8fb4af90e1e31a8a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e7604f53bfe7ade96750eb2c4965b2baf8936048b0b9da855085931753180c4c
MD5 1f4afb38cf18f3fbb255f7a9b4c129ce
BLAKE2b-256 32630986afac9a21e07d59a691cb9aa7fae51bf954cee9a9c30063aa93f9b6c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b79826badcbfaf4315dd744bc759e19141240fccf89c6c391f0d186bbb70f62
MD5 007454e387f52c35d342f24c47711a00
BLAKE2b-256 04672f1a5ab302ca9892c2094321daf09dab40f02ccec9cbcb7775aa69356581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a816289cc6cc158f22aaedea97790e4982b27102f074a2f2e52d4768ff239c06
MD5 1ddc2bc1655d99594b5f3db62f02e18a
BLAKE2b-256 9cd2ec5c40ddc68f5609323c319c88714c5e35295376510e51c2e5a5d6aa971a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5a50009e98d5aed135e6ad6a7b8fcff8020c03a66eac57500805ec2826a863a
MD5 0718ab647b628e7803ee42496958c595
BLAKE2b-256 595dcbe0a2e81a43394492ffc46341aa20ea1aec6ecb69a42695cf590e62d6b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb4cd8501e420c806041e4893998df81d67528cac3cfe256bf0f91a64169a748
MD5 ec55fa2b0597ae8c8aced8da4bf4876d
BLAKE2b-256 3d085cded1891f096a7c5646484d3387da4787eedd0ff5c2b4fd1006805ee073

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 149182b3dab32b31805bc0c077161f022a2d6eaa4c4f825e2fb805facbdd5ac9
MD5 db1ed2fb1eeb3868aeb738f953a462d5
BLAKE2b-256 3c6ea36ec51ae892a1edf376df96c121556792c8ca815939f420d5a314f0c703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a370dd078d267cfe3c5f14e64eda730ef5f1d866f8f9616e9256fcc4b7cb9b9
MD5 2fff2ad18eadaa669b2614098152a28f
BLAKE2b-256 e93b0ad12ae24c1b9b997dde1e988ff3f5e03bdcf5bffefc82d5cb8b7327b123

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4af11b1e355b6c17b8293dede6f3485ae4feae878b3884340fdbc6473dbfa5ac
MD5 73b742b60f309fd2e74870d86f0e8e58
BLAKE2b-256 274473504ab904777ef671b31e90f273d9778831fe422988087ba951483a0138

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f54507385efee078f9334054b32bbe2eeb821dfc44ea25348e36e3eeabb3144e
MD5 d000d6c52264be2492bb7bc00ca29119
BLAKE2b-256 d9c1add221924804ad05a1969a083d468a0ea4069f9303b6512c45e7f680b20f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d922937adce63248d492cc872e735f954faa10d14de7757d5879c50d0822b4f
MD5 2c8df184ac67e89afaa9b6bff18e468e
BLAKE2b-256 813983824a54101eafa2cb1eb4666e3268e9a337100305d41e1adf877be1238e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.12.0rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d9ec84fcf1f5dfd29f7765b9341cf83e889c5f28e5363050ee3c6c32f973327
MD5 0de185eee007a9aeb899c05117de3554
BLAKE2b-256 52ec583c10737e01895c16644ceb749f26f07692b768fcdc505b6d951388341b

See more details on using hashes here.

Provenance

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