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 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

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.11.0b2.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.11.0b2-cp313-cp313-win_amd64.whl (411.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0b2-cp313-cp313-win32.whl (388.7 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.0b2-cp313-cp313-macosx_11_0_arm64.whl (425.9 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_x86_64.whl (431.9 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_universal2.whl (647.3 kB view details)

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

aiohttp-3.11.0b2-cp312-cp312-win_amd64.whl (413.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0b2-cp312-cp312-win32.whl (390.1 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.0b2-cp312-cp312-macosx_11_0_arm64.whl (429.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_x86_64.whl (435.3 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_universal2.whl (653.9 kB view details)

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

aiohttp-3.11.0b2-cp311-cp311-win_amd64.whl (416.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0b2-cp311-cp311-win32.whl (394.7 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0b2-cp311-cp311-macosx_11_0_arm64.whl (428.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_x86_64.whl (439.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_universal2.whl (657.9 kB view details)

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

aiohttp-3.11.0b2-cp310-cp310-win_amd64.whl (416.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0b2-cp310-cp310-win32.whl (394.9 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.0b2-cp310-cp310-macosx_11_0_arm64.whl (428.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_x86_64.whl (440.1 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_universal2.whl (658.1 kB view details)

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

aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl (416.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0b2-cp39-cp39-win32.whl (395.6 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.0b2-cp39-cp39-macosx_11_0_arm64.whl (429.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_x86_64.whl (441.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_universal2.whl (660.0 kB view details)

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

File details

Details for the file aiohttp-3.11.0b2.tar.gz.

File metadata

  • Download URL: aiohttp-3.11.0b2.tar.gz
  • Upload date:
  • Size: 7.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2.tar.gz
Algorithm Hash digest
SHA256 3c4c4f1e69634080c9db822daf8d5648f8be203570f581459e63296872c17a59
MD5 af48f268d7d2b4e278bc14690a661c0c
BLAKE2b-256 eb74931f8b3a62e5aa013cab2469ac9ad1bac927b8fcbd133d147402f9ee5ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2.tar.gz:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2.tar.gz
    • Subject digest: 3c4c4f1e69634080c9db822daf8d5648f8be203570f581459e63296872c17a59
    • Transparency log index: 146292200
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d26e8a8e2f818ea023af14c14be79c278ae8d2627fc39ed6ca148f9f4965522b
MD5 aa1976f869f5a73b71f21aff706e7f57
BLAKE2b-256 59e4d00bc1878a6ebe48deeaa4e0862d0e0da93289a273bb374e92fb96f940e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-win_amd64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-win_amd64.whl
    • Subject digest: d26e8a8e2f818ea023af14c14be79c278ae8d2627fc39ed6ca148f9f4965522b
    • Transparency log index: 146292279
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 388.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 29340c480c6583181eac3df588493e9af1a47c770ed810779fd73a3577c0a65f
MD5 d6c05b9146fda8941be666f76f5db5d4
BLAKE2b-256 a92c484e93cb546db2ed43e6f411bb603420c021cbb55b1601476426b2713630

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-win32.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-win32.whl
    • Subject digest: 29340c480c6583181eac3df588493e9af1a47c770ed810779fd73a3577c0a65f
    • Transparency log index: 146292232
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dc93b67c8e0a6391960fe3142cf6c922a6cbf7ba0c2136748d74d70ec1d1f5f
MD5 37383f3b6df6ed0954e58e4728947514
BLAKE2b-256 4256d1dc82f5fe8fef7b2fa8824283731783ba86efa715953076f44d772bf2d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_x86_64.whl
    • Subject digest: 3dc93b67c8e0a6391960fe3142cf6c922a6cbf7ba0c2136748d74d70ec1d1f5f
    • Transparency log index: 146292304
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d87a9adc2f48d96766637daf384c769267c28ce25b781e5d2a3d40be63aed2b0
MD5 cd7496c9033278d35525e56cddb6c43a
BLAKE2b-256 9df8a17e2ec26c0c922005a676f1ebd731c1a3baa9bd4f86a53f60af00bfcf30

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_s390x.whl
    • Subject digest: d87a9adc2f48d96766637daf384c769267c28ce25b781e5d2a3d40be63aed2b0
    • Transparency log index: 146292258
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f820e5840480883c781492b7baed11113ea3aa19957c98e6b71ccef4829475ff
MD5 8ff03403a90d0bff8fe1150307fbfb75
BLAKE2b-256 44d9c1a504382bb9262e6073d19d300f54922d03d63041706b39cd4208d8791b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_ppc64le.whl
    • Subject digest: f820e5840480883c781492b7baed11113ea3aa19957c98e6b71ccef4829475ff
    • Transparency log index: 146292289
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb6953d329c3ae71b166d7a19ca3abb628ff063c4a0d6dd97860795f895847d1
MD5 e5c19fa80c333d0a3695f28f03ec6620
BLAKE2b-256 7a638475962d611151068bc6cfdba81dd48dac8c708e30c78346d11f72c7c25d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_i686.whl
    • Subject digest: eb6953d329c3ae71b166d7a19ca3abb628ff063c4a0d6dd97860795f895847d1
    • Transparency log index: 146292206
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 234b5e7f9e281aef74b4535f4119e622381c3a206da7563a679f7290c8e838e6
MD5 545e964ca7331c50f5ed3f52e8935955
BLAKE2b-256 0c9486f0e40396d836256939fa7c61c45b341d47d85abefdf8dc089765f018aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-musllinux_1_2_aarch64.whl
    • Subject digest: 234b5e7f9e281aef74b4535f4119e622381c3a206da7563a679f7290c8e838e6
    • Transparency log index: 146292202
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 401ecb0b68ad46faca8cf3c1deee072696bdb77a7956337c1ce7c2da552b4569
MD5 b05db01e2f45f253a44c517f683a1543
BLAKE2b-256 475f2ca0cb4ad806666bd3719de8683839fb5728f856e76b589a18db87c02692

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 401ecb0b68ad46faca8cf3c1deee072696bdb77a7956337c1ce7c2da552b4569
    • Transparency log index: 146292217
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64eae18aef6207271d9e42590231049ad32b0a59c38dcc1466b820c2f68e197c
MD5 282930caacddbb15243e2e46fb59f375
BLAKE2b-256 b42652d0f9922fb3e2b48198a06a55114f202f2ee91bda87dc206d0e3c88f381

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 64eae18aef6207271d9e42590231049ad32b0a59c38dcc1466b820c2f68e197c
    • Transparency log index: 146292294
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67755e7daf6ef86f5b5d74f232dc53f379ec98cfec7034f31f10381fc8a0f45d
MD5 9f517a40e22a405b7da94791777d542b
BLAKE2b-256 ef07ce0e295a86776cfb163ad5e6805fce480f96807182dee915aea495cea8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 67755e7daf6ef86f5b5d74f232dc53f379ec98cfec7034f31f10381fc8a0f45d
    • Transparency log index: 146292265
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d804ff61e19bca28661132166e057a0314e52be9ead40924c1c121d9bbe89d46
MD5 bbb5b280f7236c4d3761c96d6e415b26
BLAKE2b-256 9259e7b27976a3597d762af6c3e8df496aae7e2a43e1a917b5bae0f8f60be488

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: d804ff61e19bca28661132166e057a0314e52be9ead40924c1c121d9bbe89d46
    • Transparency log index: 146292210
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad3e82e8e4707850b86a6d11013564c7cac81505b7caa2a6b109c05b392da18f
MD5 fdd428baed2aada9ff13925d4b384fe2
BLAKE2b-256 ea727b62b0b5e746bf4dc6193948bbd2fa8986fed6a63c302dc9ab1f7b6922a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: ad3e82e8e4707850b86a6d11013564c7cac81505b7caa2a6b109c05b392da18f
    • Transparency log index: 146292236
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54803e5809bc186e51aa678d1aedd6d8469624c66b4722e3fc8a0426ac49aa19
MD5 87ee5fb36b4e07dbe1c06bf03fb2d3b6
BLAKE2b-256 775b25180a33518b1c05ef712aa804e4ba1a4c7d53eea941d01fe04b64fbb00e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-macosx_11_0_arm64.whl
    • Subject digest: 54803e5809bc186e51aa678d1aedd6d8469624c66b4722e3fc8a0426ac49aa19
    • Transparency log index: 146292228
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ae3f87f80ecc923adf2f1d9e731e97546365f62692966b7454775f106aa14555
MD5 c1f9c5e8919a7a9ffa6a510fb3096ade
BLAKE2b-256 bc015d95fdc1626852c5c044bfbda057467462f54cdd51a628b6b63cf6c98179

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_x86_64.whl
    • Subject digest: ae3f87f80ecc923adf2f1d9e731e97546365f62692966b7454775f106aa14555
    • Transparency log index: 146292249
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0ffe99d2e7384cb8b5092cd95d140a2ca9fa601c942af5c64173bf6d2afaecca
MD5 91cddbd994e303b8f1c271d5f158e8b1
BLAKE2b-256 5904c0ebf82794bb12af5546ff05b847f96130d9b312e3cb12234d84072f8774

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp313-cp313-macosx_10_13_universal2.whl
    • Subject digest: 0ffe99d2e7384cb8b5092cd95d140a2ca9fa601c942af5c64173bf6d2afaecca
    • Transparency log index: 146292211
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6ecdaa2bbf56d57d7edc833215b497c3bcab82c427308566afc20c54841e4d6c
MD5 f56d34f4ec80c39e18831147b0a188bc
BLAKE2b-256 e43ace7c88de4cc553e9d6f35b80cd9336bd31484f4b516b97f221e5845c397f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-win_amd64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-win_amd64.whl
    • Subject digest: 6ecdaa2bbf56d57d7edc833215b497c3bcab82c427308566afc20c54841e4d6c
    • Transparency log index: 146292235
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 390.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5ecdac51810bd3d1804221fbdcb12664711bef351c376735d80007c06d1b04d5
MD5 033a451a429459c748d12a29e9440b82
BLAKE2b-256 442704b8b93970e7611faa42609bec808b6c4a82f241b0c9d42d52604183b47f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-win32.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-win32.whl
    • Subject digest: 5ecdac51810bd3d1804221fbdcb12664711bef351c376735d80007c06d1b04d5
    • Transparency log index: 146292243
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1fef0a3e23d49935a20fdffd400910b00f2520d20a66dcedb494fcd40f0610
MD5 749104d7ad11c465508a853a9b76ff43
BLAKE2b-256 32a0541e1dc0e5b187cd76f3cca1131bd652cf09ae724ad172b1254ed5c60351

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_x86_64.whl
    • Subject digest: 0d1fef0a3e23d49935a20fdffd400910b00f2520d20a66dcedb494fcd40f0610
    • Transparency log index: 146292205
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0d606fbff558d4a89dbf65f8bf40063353e25997245db1f8651e72166168249b
MD5 4e9838fea28daebad650239ea18f2fa4
BLAKE2b-256 fb316279f1fc70895e374fd98aed5bfcff27b831aa55cb0dbd5984e2545d0bf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_s390x.whl
    • Subject digest: 0d606fbff558d4a89dbf65f8bf40063353e25997245db1f8651e72166168249b
    • Transparency log index: 146292248
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7261e83c034b6d26ba6b0cb0b0f48b09214b58f1614795bb1dffedcb55c946ac
MD5 e78dcf6326b2716d8f08c1d709a57e56
BLAKE2b-256 da50ebef1848fe873ac0130837a2b831e221946c5b01793c71d4b659341d9c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_ppc64le.whl
    • Subject digest: 7261e83c034b6d26ba6b0cb0b0f48b09214b58f1614795bb1dffedcb55c946ac
    • Transparency log index: 146292250
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 45b3716ef520a6d47f4f04688abcf59e8bacefac6dddb57917ba5e6d154797ae
MD5 c3faae0391e3f6476e07b5a9aa3a4a12
BLAKE2b-256 00c998849f512beb924bf9b8eee08c16a39cd155b3b90e6656ab494e2c462d61

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_i686.whl
    • Subject digest: 45b3716ef520a6d47f4f04688abcf59e8bacefac6dddb57917ba5e6d154797ae
    • Transparency log index: 146292284
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acd11c184ecc768ab4da7349c4b9cf593298d373d30c18ee03a8c1f2bfb5bfd4
MD5 0bf4e5107817038bb07d382ac90a1c74
BLAKE2b-256 bcf4781e0b778b7315c944799be8d61ce4bf7b87702f6afb3682800c12c56e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-musllinux_1_2_aarch64.whl
    • Subject digest: acd11c184ecc768ab4da7349c4b9cf593298d373d30c18ee03a8c1f2bfb5bfd4
    • Transparency log index: 146292207
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f0af127cd8004677404f50955478201957292909c0add196b9190fed655afb2
MD5 97c249b40c30c9452416146671a4111a
BLAKE2b-256 db73626d65880109f00947df9f611aa2db03ed58646bc41c02f709a9339dae70

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 5f0af127cd8004677404f50955478201957292909c0add196b9190fed655afb2
    • Transparency log index: 146292264
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f82975745b9b4bb532c307c699af962f4a8c264238d9ebbc4ed621579bb8391a
MD5 8baf7ca3b7a379c204649d4c09ab5445
BLAKE2b-256 7ed1212da683ef9971ada7d871da97bf7c53fd722962016adcea34a5b7aec578

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: f82975745b9b4bb532c307c699af962f4a8c264238d9ebbc4ed621579bb8391a
    • Transparency log index: 146292275
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9fab6862f9bf7cd481736e32edd3ae9a1f5d54eca2f9b858362ca9d9ff72449
MD5 e96bc9b51137dea2aa6621f65a1cc069
BLAKE2b-256 415970acce3c0a08340b672ff3b95d51984c60b6ce0a21889ba063e24ca707e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: a9fab6862f9bf7cd481736e32edd3ae9a1f5d54eca2f9b858362ca9d9ff72449
    • Transparency log index: 146292296
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33543c9828b2235f9a39cd9169ea37975dceb77bd846a2154d200e0324c852ab
MD5 827385a03066422ca4ac7b88c224b97a
BLAKE2b-256 d03a767e460a81b6c2f4928fa2a6fac1676ed4acf68be699d148584fc174ee0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 33543c9828b2235f9a39cd9169ea37975dceb77bd846a2154d200e0324c852ab
    • Transparency log index: 146292280
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 883e43b5955193216e42123bd2bfcd4d9e426a4485ea32a822ed4229a9ce77c2
MD5 6ed3fc0698a311b260dd7b15a80d9908
BLAKE2b-256 82deeaaba9752ecc505708051e1d49a4e814679e49521b6adc1e452104fb6760

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 883e43b5955193216e42123bd2bfcd4d9e426a4485ea32a822ed4229a9ce77c2
    • Transparency log index: 146292220
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd4c30a3cce272f0e8eebf995423eee6ac0b1b6bdabff10c1ec356303c7774f7
MD5 57ba8eaa92de455189d5e813aa3c508a
BLAKE2b-256 4a2a266aae9f59f39b7fc38ab4bf5c9ab7b8131b5509590c3e3ab49a35316fbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-macosx_11_0_arm64.whl
    • Subject digest: bd4c30a3cce272f0e8eebf995423eee6ac0b1b6bdabff10c1ec356303c7774f7
    • Transparency log index: 146292216
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e8533264f74823b7b69c4c250d16e3b10474121b097eba0e2959660141d48be
MD5 285aff167d820dc9d3ca3317b6fa81ed
BLAKE2b-256 8969347604cc28cbb78b9ed4ea5c48a55768e458ee5f8a846a7aee9a16cf9b93

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_x86_64.whl
    • Subject digest: 6e8533264f74823b7b69c4c250d16e3b10474121b097eba0e2959660141d48be
    • Transparency log index: 146292224
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d736e680f49f442d739470731fe3ccf18d3bdca36fd71c709681e85c08861c88
MD5 6d1a29d0d61c5d36eee4ad80589d8ac4
BLAKE2b-256 33d0a0d68f874178d49c5ee558fa228d94e9d2464cacf1be861ab0694d0c6183

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp312-cp312-macosx_10_13_universal2.whl
    • Subject digest: d736e680f49f442d739470731fe3ccf18d3bdca36fd71c709681e85c08861c88
    • Transparency log index: 146292306
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18d0b353c62785d79724d5c995c3821018d4b0144f9a5add409b8f4fa79daa34
MD5 57b267b8e061335094958aedcddba811
BLAKE2b-256 a8c190db7cedc5ad17212061d3b3cce0362c8b1df9eda64ab5ac4a9b30e9067f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-win_amd64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-win_amd64.whl
    • Subject digest: 18d0b353c62785d79724d5c995c3821018d4b0144f9a5add409b8f4fa79daa34
    • Transparency log index: 146292276
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 394.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 146521da977b69ac70d6d52d5ee4403798b919d027dc494a2b82324af9497ba1
MD5 1d82a382567e4c66d100003364d1c477
BLAKE2b-256 13dc757250c405d5dd8eb6b60e103537ee56fac8e6603d8ca09b18ff93fde316

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-win32.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-win32.whl
    • Subject digest: 146521da977b69ac70d6d52d5ee4403798b919d027dc494a2b82324af9497ba1
    • Transparency log index: 146292267
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7f3529f7e33bfb8bab95b70f7e99235c15f0efad2f983eb950a813ec40b3015
MD5 7786cf9e41652adb0a14ac416c4d907a
BLAKE2b-256 b59d3e2d2e8fae5d2df7d56aac6c3940d81134b441a51901e74d0a2b7265bf71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_x86_64.whl
    • Subject digest: a7f3529f7e33bfb8bab95b70f7e99235c15f0efad2f983eb950a813ec40b3015
    • Transparency log index: 146292261
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d56ec56cea4b3afe079a20d4a6978b46e53de48fc6cb9c2e782b61647772d13
MD5 e3f65204d8392fb2ad83c8719df11afa
BLAKE2b-256 b7bfac689964cd09ab20111e50db05f17ed1e9671d61f98c302b652d8e889e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_s390x.whl
    • Subject digest: 8d56ec56cea4b3afe079a20d4a6978b46e53de48fc6cb9c2e782b61647772d13
    • Transparency log index: 146292214
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f442e2f8c789b109760c1b2dcf7237df0f323684429fe9d7a3f500025d18ea4b
MD5 c14a2dc19a89f2934e04499b548d85c2
BLAKE2b-256 3db8267c9fb1e0b2fb5c941f9235e832209a83b93fc812ccbb74266eaaae778a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_ppc64le.whl
    • Subject digest: f442e2f8c789b109760c1b2dcf7237df0f323684429fe9d7a3f500025d18ea4b
    • Transparency log index: 146292300
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97491a7c2fac13a5109cd1f8d7a704caa7c09e3d143a9c9ca984ff7049e4ceef
MD5 03d972864843442cad7b6e2234aeb3e4
BLAKE2b-256 39e70de844f3a15565d7515c84a3bc5faa73270333d6296f2a2ac1cd789b6070

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_i686.whl
    • Subject digest: 97491a7c2fac13a5109cd1f8d7a704caa7c09e3d143a9c9ca984ff7049e4ceef
    • Transparency log index: 146292307
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f41b4543e8a8023b38dd35071424a9669a3398f856e2b87672388bdf69fd50e1
MD5 dcfa0effcb5ed63327a80b93c0013ae7
BLAKE2b-256 b75bc7d5a92698624a9e96f8eb7b459bfa2f339acb4dc58ba3800a062a31ae96

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-musllinux_1_2_aarch64.whl
    • Subject digest: f41b4543e8a8023b38dd35071424a9669a3398f856e2b87672388bdf69fd50e1
    • Transparency log index: 146292257
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ce70aba99edf29565a4a3b0141976f636eb5a2b35812f560f5d43b10d7a27ae
MD5 40c214a721f3aa6765dccb6b3462a1cb
BLAKE2b-256 e04e0ed71975164de4becb5474beadafb1455f4b466cb6f88b3ba7928eaba0cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 2ce70aba99edf29565a4a3b0141976f636eb5a2b35812f560f5d43b10d7a27ae
    • Transparency log index: 146292219
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85fb2a5b1c89d48255a0692f78d3474cd812e70a3aeb5800f68ba431a6e8f7fb
MD5 19e852d00d95f18894564bbd17f9542e
BLAKE2b-256 1c98432416c02178586acaf8b933d2d9aa93de1f41f561492000069b6f318709

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 85fb2a5b1c89d48255a0692f78d3474cd812e70a3aeb5800f68ba431a6e8f7fb
    • Transparency log index: 146292256
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0624d346e9d6a18f734bc4497c9949fe72afae0c0629fc6984f4b5c8b3fa616b
MD5 2ba74d091e8ae823816f645280204c71
BLAKE2b-256 74f88e23280b790a3e5fc0693e12f1d597e75fb94527bb8661b4482e48679d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 0624d346e9d6a18f734bc4497c9949fe72afae0c0629fc6984f4b5c8b3fa616b
    • Transparency log index: 146292287
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 741e820683e9b49297ef615b7d7b73f18f15304b5a7da15320f813daa6226408
MD5 edfba4a354276e57ae3da6d44a46c952
BLAKE2b-256 e68755e7e5bff242570384674582a6d384f828d1d64a8d655491ef596d95a1af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 741e820683e9b49297ef615b7d7b73f18f15304b5a7da15320f813daa6226408
    • Transparency log index: 146292259
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d27e6db623d0871823d2ea14c77d6befe4b13d36559986ad3c141d0a03359c8
MD5 655621eb167090162d414797b4617d75
BLAKE2b-256 7aa352fee8dfdb32b4da5af9bfb1d186576b690e7e220aa088ad1e6399291f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 0d27e6db623d0871823d2ea14c77d6befe4b13d36559986ad3c141d0a03359c8
    • Transparency log index: 146292223
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21660b6de688270557b4592f649cb2de383b34fdfa9fdb3ec4ba36bf2512d302
MD5 a65176894025665acb4298c3c82f5a07
BLAKE2b-256 491d15175450f200d712c94489e10210aba9339cf6646804a3f2f7974a6f47f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-macosx_11_0_arm64.whl
    • Subject digest: 21660b6de688270557b4592f649cb2de383b34fdfa9fdb3ec4ba36bf2512d302
    • Transparency log index: 146292226
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b529c6c64b10f0f669f44e04de9defb2bb0f37d66e05fe28ba7e6693187f2335
MD5 94d3d54c7d486d921815bef85666eec7
BLAKE2b-256 6d91ad1da81e9e6df487dabce9e16834881123481d8bbd12be53196ee391773a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_x86_64.whl
    • Subject digest: b529c6c64b10f0f669f44e04de9defb2bb0f37d66e05fe28ba7e6693187f2335
    • Transparency log index: 146292271
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c2fa4bc81d6caea715e66942f34f928a5dbd5fe7a95c2dd6adc6197dbcacd72c
MD5 e10d3c6ed858354c8fcb4b5100fb54fc
BLAKE2b-256 1aa0416745f202aa99ba944b452731da037371d4b263ab9b4d9ee4099425d4ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp311-cp311-macosx_10_9_universal2.whl
    • Subject digest: c2fa4bc81d6caea715e66942f34f928a5dbd5fe7a95c2dd6adc6197dbcacd72c
    • Transparency log index: 146292240
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 681049b3b9544b6417294156b0328cdb7d50b75a9b395dc77ce15e700d8ad87f
MD5 5a92b5368384fca9d292fef08d824992
BLAKE2b-256 7e0376db5a954a1210a52837c2c1b532eb25f491b7db0999944925f90cf2ff9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-win_amd64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-win_amd64.whl
    • Subject digest: 681049b3b9544b6417294156b0328cdb7d50b75a9b395dc77ce15e700d8ad87f
    • Transparency log index: 146292254
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 394.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2bd3b1e80b92a2c8182f55fcb1f8b0e2c82817f60f96f7016719157277dfe663
MD5 b91f0cf941fd8a01a8e0cf88c7a81a0f
BLAKE2b-256 1677837872fabc394dbd5db3e9700207ac975d75c8165cbf3ea77f939a3adcad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-win32.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-win32.whl
    • Subject digest: 2bd3b1e80b92a2c8182f55fcb1f8b0e2c82817f60f96f7016719157277dfe663
    • Transparency log index: 146292246
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dd0010d163ac6948e3464f67f9561032683c4238347a684f86cb875bf554b6b
MD5 2608eb24a128c0575af29b8dc637f271
BLAKE2b-256 fc5d4fdd6c39b92e05196a5c300fef840a864f14e08668ba79658eb5ab1ddce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_x86_64.whl
    • Subject digest: 9dd0010d163ac6948e3464f67f9561032683c4238347a684f86cb875bf554b6b
    • Transparency log index: 146292298
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4da37eb46a8c6f5d9c4eaf40fbe0282d445bdd0ab2ddc57b0b9f50dec476c4aa
MD5 60c360b9ba53b6abbba6e743f4a47d0f
BLAKE2b-256 2c2ced872e9619fb340e68a91a229949b3d832cd516e38fba544f61634de2834

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_s390x.whl
    • Subject digest: 4da37eb46a8c6f5d9c4eaf40fbe0282d445bdd0ab2ddc57b0b9f50dec476c4aa
    • Transparency log index: 146292272
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c664ac4cc5ffc152f5541e5e734c96bc4bdd87ae1243431adac2289231634ae4
MD5 cb39a38c9859a87026af7a475e011e28
BLAKE2b-256 7fe1b27ed4016d2b94016277b88ebff0071d859d1c527a63861e4c63d3ee6b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_ppc64le.whl
    • Subject digest: c664ac4cc5ffc152f5541e5e734c96bc4bdd87ae1243431adac2289231634ae4
    • Transparency log index: 146292212
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b50f09c83cde14f2de5fea90fdd4fe24cf724c57bab2d531fef6778f296e68bb
MD5 050a9c16f08890144c4be83324de12ef
BLAKE2b-256 5226fefa5cceebfe0643c9a397c35b49ed5b9b5fcaec8c071f44d7864c4757cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_i686.whl
    • Subject digest: b50f09c83cde14f2de5fea90fdd4fe24cf724c57bab2d531fef6778f296e68bb
    • Transparency log index: 146292305
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0c348f2c02d3b2da7976a9a839e045f5a733ea6e8df40fbbfc05186deba6182
MD5 046e8d25a3d563e3b0798258c2e823d9
BLAKE2b-256 0c1a2642677d998a74c35740fb3e14f7ec4f906b9d76f5390a3219fbe94fb95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-musllinux_1_2_aarch64.whl
    • Subject digest: b0c348f2c02d3b2da7976a9a839e045f5a733ea6e8df40fbbfc05186deba6182
    • Transparency log index: 146292222
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38e09be42b642c3570b6f87172b22f79d3fbffc79b543d6b341a4d567f41e707
MD5 9e19048dfc6e6f3f8a3a88e2f436b953
BLAKE2b-256 7f84ee1cf9d995c8d82a89151f90a534b46c46fcd8ebe6f2e8c30aa952f70b9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 38e09be42b642c3570b6f87172b22f79d3fbffc79b543d6b341a4d567f41e707
    • Transparency log index: 146292251
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97f9f898375f1fcce13d7c1ac7ecfdfc65d0e1cebea1da3326a38b444a5b6062
MD5 8fd22219c674807d581abcba032b95c4
BLAKE2b-256 7121ffd3c2f5de5d503c9b428c3be98f929a1bdbf71cec4fd3d033bf84377ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 97f9f898375f1fcce13d7c1ac7ecfdfc65d0e1cebea1da3326a38b444a5b6062
    • Transparency log index: 146292225
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69b6b1f871c06bff24e0d833cd680aed116c7875e111897d4fca5bcb90fa43cc
MD5 6d3aede726d7a69640c06390a3bc533e
BLAKE2b-256 0f92338e7dfb0f7aa765a23b7d29646979e1528a39b00b677c66af0e0b7b0e6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 69b6b1f871c06bff24e0d833cd680aed116c7875e111897d4fca5bcb90fa43cc
    • Transparency log index: 146292231
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 362af5c5539899281ee45561fe4b156986c3cf6d76632d00288488ab785430f2
MD5 d3e4040e33ff87087a005a3c35f0e1f0
BLAKE2b-256 458ebd5746e2d5f8657434a9f9e84a4032a2365a39c32c1460a193b3e91d2785

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 362af5c5539899281ee45561fe4b156986c3cf6d76632d00288488ab785430f2
    • Transparency log index: 146292290
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4399b2ad2a225ba4f06d95f1496de7423cdd987ebbe9bfc1e9f777cf6076bdee
MD5 d60595ce4a6b46d498878c7041c1b304
BLAKE2b-256 41904813e21ea963f7bc3ab2ea94b8da8874df7f04180bb545f67bd9ad913a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 4399b2ad2a225ba4f06d95f1496de7423cdd987ebbe9bfc1e9f777cf6076bdee
    • Transparency log index: 146292213
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef4cfe62af195724d3409044ea2252dc1419fd32035a1a0ed4a897f3b4e5e091
MD5 858f4fca8f74bfd21f528c61c6d393f3
BLAKE2b-256 31bb24ae2f45a2673636ce60cb16c004fde6f99fe166daa671399d058f61fe06

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-macosx_11_0_arm64.whl
    • Subject digest: ef4cfe62af195724d3409044ea2252dc1419fd32035a1a0ed4a897f3b4e5e091
    • Transparency log index: 146292208
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 55b05346fd4f2328cb97a66746657d363abf762fcbbe6c3d756241f74b3ead0a
MD5 fb4f1011e726b90662bd001a0160039b
BLAKE2b-256 f83d6ab66f4007bbd7c40be47e7b20267c45ab3912eaa64189eabe57472af6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_x86_64.whl
    • Subject digest: 55b05346fd4f2328cb97a66746657d363abf762fcbbe6c3d756241f74b3ead0a
    • Transparency log index: 146292229
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 90378bd5fde76561156603b8cfe3eabcf1e30a14bbc6f576f234213d995c1f6d
MD5 c0cb0f81afd394ddd828f9817a121a56
BLAKE2b-256 67253a07c751b1bfe09cb2ce01310b7cdcd8a1b1c5fd7dcc429c183a1f54bc7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp310-cp310-macosx_10_9_universal2.whl
    • Subject digest: 90378bd5fde76561156603b8cfe3eabcf1e30a14bbc6f576f234213d995c1f6d
    • Transparency log index: 146292238
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 416.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cc6ceea395d5303d6aa8a06d7e11aba320093c0e02b6f03226bc42762201b7dd
MD5 a75f32ee4a904dbbe62d67f6c781a255
BLAKE2b-256 3cd2b945399f83aef0e7cd5bcfc0deb678c708f117fb7c4b806624b4b8f90c36

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-win_amd64.whl
    • Subject digest: cc6ceea395d5303d6aa8a06d7e11aba320093c0e02b6f03226bc42762201b7dd
    • Transparency log index: 146292252
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 395.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 71ef9283c4b04865fb30ccc609b214d52788dc7b792aa01e51c2bd6bedab6271
MD5 47f7abe0d59282859cfd1906f989ec14
BLAKE2b-256 52b7f0585a5882633e4aa518306d41afdbc86af302c8cd8001633fafa6656619

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-win32.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-win32.whl
    • Subject digest: 71ef9283c4b04865fb30ccc609b214d52788dc7b792aa01e51c2bd6bedab6271
    • Transparency log index: 146292244
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e7620719a156e73b0cb8574bd91a4750db6b37be232396a2ee6672cef90a447
MD5 fe55815eeac5d13157ed906b25e54932
BLAKE2b-256 173bc1d6f3a443021624eef7b8ddceea5e4400a9fc0fa4a855d5caf4160dbaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_x86_64.whl
    • Subject digest: 9e7620719a156e73b0cb8574bd91a4750db6b37be232396a2ee6672cef90a447
    • Transparency log index: 146292255
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 76bf8f4d11978df78de0444487ac76696b9f7108984d467228d07db783d70690
MD5 d3c5bfad20630c14b1ed2240a27180bd
BLAKE2b-256 463253590d8a14b4f054927b3c03bfa238a1f462255517d738fb573ee1e6192d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_s390x.whl
    • Subject digest: 76bf8f4d11978df78de0444487ac76696b9f7108984d467228d07db783d70690
    • Transparency log index: 146292218
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a2c07b0589482fb8f8f1a8defff63313f2124ae287fc08857e6366c42e21bafc
MD5 501f51d421ceee7df472799d6b519db6
BLAKE2b-256 bfe4952aad4ea5409660c1ae242f28e30aa0b281e89f3ffa7ad8241c4da72a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_ppc64le.whl
    • Subject digest: a2c07b0589482fb8f8f1a8defff63313f2124ae287fc08857e6366c42e21bafc
    • Transparency log index: 146292242
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d6aa714f842db026287fb65c2a20e35cb5f0cbca3ae10af991afc35bf08d0f0
MD5 bd34c9b1cb7e539a5dfcd3c3ac68ed26
BLAKE2b-256 818f365efb7248e3ad7dd8683537b31706298297ca91ff6af2e0b312e5486be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_i686.whl
    • Subject digest: 2d6aa714f842db026287fb65c2a20e35cb5f0cbca3ae10af991afc35bf08d0f0
    • Transparency log index: 146292282
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ec2c96d554db665f7538e5fd5e74d4d61105c8ef3cb7d63e8b84e9c9db2daa3
MD5 760533a46d1da5f2a66dc9da881484b5
BLAKE2b-256 7af1b74961987daea81b5d295450c2a6fac29fa9bf70a212634df9642d885502

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-musllinux_1_2_aarch64.whl
    • Subject digest: 2ec2c96d554db665f7538e5fd5e74d4d61105c8ef3cb7d63e8b84e9c9db2daa3
    • Transparency log index: 146292204
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b11dd5d19685feb6e95ede0a754e793cdf2d63d95238d343396c86700bb3782b
MD5 726f798a56ffe7f1f225df8758bac917
BLAKE2b-256 60e94cf527e8c4ae86cf9e46193f730974c86bc84187b9f58989e8049b8d6bc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: b11dd5d19685feb6e95ede0a754e793cdf2d63d95238d343396c86700bb3782b
    • Transparency log index: 146292239
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 729387766acc26cab2e8db07736a345a6059d63254393c2622f1fd8ca68ce559
MD5 6152a572c7fd6e4ba3fabb0400bab065
BLAKE2b-256 0d15383ccdb68f48bac8df8f4db707bf54971625e8e3fce91c8c9907998da339

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 729387766acc26cab2e8db07736a345a6059d63254393c2622f1fd8ca68ce559
    • Transparency log index: 146292269
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bac20769cbd2aef506126acbf8f31b8fd9f69e473a8ed928343717d93cc1414d
MD5 0c3d31452ddb7c4ad919195cd213ea14
BLAKE2b-256 df28c0cc4dcf205f200e6b6b6322c92cbda84abdd87c0b4fb8c403e7477cb40a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: bac20769cbd2aef506126acbf8f31b8fd9f69e473a8ed928343717d93cc1414d
    • Transparency log index: 146292233
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf953f603c29dbb70d3f0908b0dc0796635b232f4e5da816bf5cedcd3d9db870
MD5 685bea937ccb371e976b32ec37f5af7c
BLAKE2b-256 9a7a471038edcd09b72eb0cc52d8261f1b7216e4048e546540cb7b334173b737

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: bf953f603c29dbb70d3f0908b0dc0796635b232f4e5da816bf5cedcd3d9db870
    • Transparency log index: 146292302
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebb8a6072ca45dc16c84e589d79f208e8aec5254963dfd3b839d66dbb2dfa312
MD5 276ca2aa606eb3b561d000c711809ede
BLAKE2b-256 dab37be8e94c8aa043d4a4b167d86432b824c3289563ecbd83e5a3cefa5e81d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: ebb8a6072ca45dc16c84e589d79f208e8aec5254963dfd3b839d66dbb2dfa312
    • Transparency log index: 146292245
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3bca773d783a4009a299c6962e181880897558bbece89fb9416e70febbeaa8
MD5 f426d1e4dac63f996942e97ebb0088a9
BLAKE2b-256 9b9e22d79cf4397da8b2fdd1748440253da7b09cdf6422923f2c4532a6103dee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-macosx_11_0_arm64.whl
    • Subject digest: 9f3bca773d783a4009a299c6962e181880897558bbece89fb9416e70febbeaa8
    • Transparency log index: 146292201
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc6cbfa8d805f5b5b57db5db9664f0657abf4805139ec7d2eb0b561807f44286
MD5 d191ddcc7f0151c3fd55f22c04d81f0e
BLAKE2b-256 4e926a6a159eed7bd85d5bc02803a29404d05f5698712693da7310f4b7a79cc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_x86_64.whl
    • Subject digest: fc6cbfa8d805f5b5b57db5db9664f0657abf4805139ec7d2eb0b561807f44286
    • Transparency log index: 146292230
    • Transparency log integration time:

File details

Details for the file aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eddaea631ce3f079e87598ef47e2ae1a9641e8c9008615e75cff540f1672986d
MD5 49fc9b2eedd7d2e2ed9c0793caae821e
BLAKE2b-256 a957e5fd99a406e232e17dadd1d8bd4716091d8413daf0d968704d896c3dbfaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: GitHub
  • Repository: aio-libs/aiohttp
  • Workflow: ci-cd.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: aiohttp-3.11.0b2-cp39-cp39-macosx_10_9_universal2.whl
    • Subject digest: eddaea631ce3f079e87598ef47e2ae1a9641e8c9008615e75cff540f1672986d
    • Transparency log index: 146292299
    • Transparency log integration time:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page