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

Uploaded Source

Built Distributions

aiohttp-3.11.0b3-cp313-cp313-win_amd64.whl (411.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.0b3-cp313-cp313-win32.whl (389.2 kB view details)

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.0b3-cp313-cp313-macosx_10_13_x86_64.whl (432.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.0b3-cp313-cp313-macosx_10_13_universal2.whl (647.8 kB view details)

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

aiohttp-3.11.0b3-cp312-cp312-win_amd64.whl (413.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.0b3-cp312-cp312-win32.whl (390.6 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.0b3-cp312-cp312-macosx_10_13_x86_64.whl (435.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.0b3-cp312-cp312-macosx_10_13_universal2.whl (654.5 kB view details)

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

aiohttp-3.11.0b3-cp311-cp311-win_amd64.whl (417.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.0b3-cp311-cp311-win32.whl (395.2 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.0b3-cp311-cp311-macosx_10_9_x86_64.whl (440.2 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.0b3-cp311-cp311-macosx_10_9_universal2.whl (658.4 kB view details)

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

aiohttp-3.11.0b3-cp310-cp310-win_amd64.whl (416.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.0b3-cp310-cp310-win32.whl (395.4 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.0b3-cp310-cp310-macosx_10_9_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.0b3-cp310-cp310-macosx_10_9_universal2.whl (658.6 kB view details)

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

aiohttp-3.11.0b3-cp39-cp39-win_amd64.whl (417.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.0b3-cp39-cp39-win32.whl (396.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.0b3-cp39-cp39-macosx_10_9_x86_64.whl (441.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.0b3-cp39-cp39-macosx_10_9_universal2.whl (660.5 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3.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.0b3.tar.gz
Algorithm Hash digest
SHA256 3f97155b2dbb50c8034032c7e447479e783d9bbe88195e33b4d33c5f99d8e079
MD5 5988e213ac018a3bbf5589f7fecc517e
BLAKE2b-256 e7b65071486e799a0b14cf807b25bdeeddcdfe303cafa0acac051d598a87abec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3.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.0b3.tar.gz
    • Subject digest: 3f97155b2dbb50c8034032c7e447479e783d9bbe88195e33b4d33c5f99d8e079
    • Transparency log index: 146882626
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 655063c3e36e883b1fb08e33c1c04ecf325927a0254c71f11e6deeec8639cc24
MD5 972b55c39249f11bbe2cb1fd49c13e6e
BLAKE2b-256 e0e145ef819839ea4282c3ec36a7353ba6c3883ac98c1e0ed75e75eba96cdb30

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-win_amd64.whl
    • Subject digest: 655063c3e36e883b1fb08e33c1c04ecf325927a0254c71f11e6deeec8639cc24
    • Transparency log index: 146882668
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 389.2 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.0b3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5898bf312687cb6add5af6ca9ccdb162988ed246077fedace6192bbf2e149527
MD5 d876d418610c593bfff41f143a2ddcf5
BLAKE2b-256 5a1a4f2fd08dd9ebf17c09ea642e49a215da470e1abf25bd009a7c675478ca8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-win32.whl
    • Subject digest: 5898bf312687cb6add5af6ca9ccdb162988ed246077fedace6192bbf2e149527
    • Transparency log index: 146882691
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec8b70ac677f1036d666f55213a3f971837bc9f619b9740fcd18edd9dfab7d39
MD5 8d3334e9356f7127b0f5da6f32a3b367
BLAKE2b-256 61d003fc9aca6193140d0b888864a1a5321156aa3d222e2b1eebd23351c52309

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-musllinux_1_2_x86_64.whl
    • Subject digest: ec8b70ac677f1036d666f55213a3f971837bc9f619b9740fcd18edd9dfab7d39
    • Transparency log index: 146882649
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b23e083c0e32e014c1d0d0edcb393c33ad974dec85db8f864b011cd09c38f8cc
MD5 3594cb2aee649d9a10ccf2924b772472
BLAKE2b-256 f10a41035343fb6ceb3922d4307b4d34f6d7c4368fafd1c0bdf3aa2fc93250b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-musllinux_1_2_s390x.whl
    • Subject digest: b23e083c0e32e014c1d0d0edcb393c33ad974dec85db8f864b011cd09c38f8cc
    • Transparency log index: 146882706
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bd2383c2ef11e1277fc2f8535367da5ccd87492e4803d1b962cade4494515eec
MD5 8b46447bd8a3b23ffb5687f9dd83e9b2
BLAKE2b-256 02421fd7bca4a1e70d8a81b6b1fb865920ef10fd5fd7109334043e317f31e17c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-musllinux_1_2_ppc64le.whl
    • Subject digest: bd2383c2ef11e1277fc2f8535367da5ccd87492e4803d1b962cade4494515eec
    • Transparency log index: 146882735
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 584fc92a07f39d13aa58446c7733999e9cf70a0cd678019782e84cc7aabde0a2
MD5 4d7f3e2d53ca73c3b7796a668a96810f
BLAKE2b-256 b9aadf330f7387ed48c292036a7f278b52a14d3a4f7508f99c499831142cd167

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-musllinux_1_2_i686.whl
    • Subject digest: 584fc92a07f39d13aa58446c7733999e9cf70a0cd678019782e84cc7aabde0a2
    • Transparency log index: 146882629
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f996da4d5b5e480d20d1ae55e550f68441e96fb45889717efa2af6655b2034f
MD5 bd4958f57d3d67ef5c4987ab113aca43
BLAKE2b-256 76022bb29f94eedc1c148be96f46786c7dab7ae034cb305453dac40a5cef04b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-musllinux_1_2_aarch64.whl
    • Subject digest: 3f996da4d5b5e480d20d1ae55e550f68441e96fb45889717efa2af6655b2034f
    • Transparency log index: 146882630
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16e38ec61818e7b6085cfcd377492191ae0bc22a3629482302f693926ebe5a1b
MD5 e15c30efde6bfb40d5fcfbbfa4150fdc
BLAKE2b-256 e4746020b4b5866573aa2132ef528a7e36f40d079d75b3662e7c948e6bf95714

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 16e38ec61818e7b6085cfcd377492191ae0bc22a3629482302f693926ebe5a1b
    • Transparency log index: 146882695
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46ef1c688eaa4d2ebdc8588e2e39ef99430e85b83402fa530d1f3adbb8e432c6
MD5 3271baa6794a29a01c22364b909605a4
BLAKE2b-256 5ed655ced36f29a7ae2490c9716864d02233c314e74d178ed1a16636163b7708

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 46ef1c688eaa4d2ebdc8588e2e39ef99430e85b83402fa530d1f3adbb8e432c6
    • Transparency log index: 146882722
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab4adaeb35c07606382a2d9e67f1db225bec509fd253442ddd1fea5cc6a77f95
MD5 57055d79a28e2a44cfba586e1ee524f4
BLAKE2b-256 90609e5cd775c942e9c16ea45605aeda89d8a36e17caccd4f8e1e1aebe2535c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: ab4adaeb35c07606382a2d9e67f1db225bec509fd253442ddd1fea5cc6a77f95
    • Transparency log index: 146882718
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 694e8281571300b8063cc3eb036c5f5557f7bcce753b805085e3a36ea429ddf4
MD5 7905119fbe8667991598d571768314fb
BLAKE2b-256 752d0a02c985191e76c5cef4755624b2b5525e73fb6abf3ba1f375ebb4c3786a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 694e8281571300b8063cc3eb036c5f5557f7bcce753b805085e3a36ea429ddf4
    • Transparency log index: 146882698
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a9ecb0233ba8e63f04587e3d710bc1f2c09434c976ed4f7d5908c7491c1d12f
MD5 2610502ebfecd46c1ddabd9ce8429fea
BLAKE2b-256 a46a55b65d371d6d4ef3ce56cb8adfacc2f38b9fcd3591056dcb0ae347110e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 8a9ecb0233ba8e63f04587e3d710bc1f2c09434c976ed4f7d5908c7491c1d12f
    • Transparency log index: 146882654
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19bd9bf6fedd04133a9e2da21588cc226508247b7eb16e0f94c5b8e68c2c3243
MD5 bab6e28bb9d74efc4b1f12be881d6446
BLAKE2b-256 e3178c1fc50738913658b9255863ec99cca31065a480ae95b295fb7e56dcd30e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-macosx_11_0_arm64.whl
    • Subject digest: 19bd9bf6fedd04133a9e2da21588cc226508247b7eb16e0f94c5b8e68c2c3243
    • Transparency log index: 146882729
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04cee324e23db9cf812ccc674da97cef559a8bf22e966fe796f004c3e4f19200
MD5 93def8654eda9ded036cb461ce6db28c
BLAKE2b-256 82c4415142f985d3113be173518a787a8175ec7858059a5b16ae7127f1771699

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-macosx_10_13_x86_64.whl
    • Subject digest: 04cee324e23db9cf812ccc674da97cef559a8bf22e966fe796f004c3e4f19200
    • Transparency log index: 146882683
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7310be2de71f3bc394bcc32549351811a3c382949aed82b16262309cac947602
MD5 9d57ee9fb9ddd533afe877a7fedf1adb
BLAKE2b-256 621b66d0dca75e0e0fce903b43832a501a040c8c576861a034eb961ba105ab4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp313-cp313-macosx_10_13_universal2.whl
    • Subject digest: 7310be2de71f3bc394bcc32549351811a3c382949aed82b16262309cac947602
    • Transparency log index: 146882705
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dbc4e9127d80c52ce428caca21c61320d9016fa6d8c07e1dcd695368c35f9054
MD5 e4b7e02068a12ab8edeab81b4684f9b2
BLAKE2b-256 570ce4073b4bb5aba8baae976ab08734595c7d99f67c863bf1872c987f211b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-win_amd64.whl
    • Subject digest: dbc4e9127d80c52ce428caca21c61320d9016fa6d8c07e1dcd695368c35f9054
    • Transparency log index: 146882658
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 390.6 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.0b3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6db512c59d3656275e9caf95f83269957a73e97905cb8fed03bc577a2cd0645c
MD5 e5248bb9d2289e93c0b091e9c361bf0a
BLAKE2b-256 829db751f98046dd5c313dc712c4e75b768cf65dc80f20fbf6d4c415808bf0d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-win32.whl
    • Subject digest: 6db512c59d3656275e9caf95f83269957a73e97905cb8fed03bc577a2cd0645c
    • Transparency log index: 146882726
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fff77d692ee9dd0ca93cb809d8584ecb3996b1676ac715f74342b289e5a35be
MD5 f7632003d4d804b6c6d0beedc92a9ee1
BLAKE2b-256 a898f31a51302fbd3bad4e5ebecee45c5e2b4697df4e0fc757853349d8b21c52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-musllinux_1_2_x86_64.whl
    • Subject digest: 3fff77d692ee9dd0ca93cb809d8584ecb3996b1676ac715f74342b289e5a35be
    • Transparency log index: 146882672
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0e4027ff342792e3bde5870f6ecba160aae246284e45e349de380a9e11ade1e7
MD5 8e5cfa0049eb4e7e1a7f4aab330a9217
BLAKE2b-256 f823506fb977f8fa839857705bd13dc2f040708e6a8a460c48935bfc50b48b23

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-musllinux_1_2_s390x.whl
    • Subject digest: 0e4027ff342792e3bde5870f6ecba160aae246284e45e349de380a9e11ade1e7
    • Transparency log index: 146882676
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 197e99cbc82af74441ffdff7f33150ec0380f9c0fe7a9fd7a9f5d6c63c1f8492
MD5 f4aa181d03548c00112d6bcc5ee7fb65
BLAKE2b-256 960eb2a46742bfa35bb7701eef8d569a8f113a8cb4653bbbf4ba4db74c4922cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-musllinux_1_2_ppc64le.whl
    • Subject digest: 197e99cbc82af74441ffdff7f33150ec0380f9c0fe7a9fd7a9f5d6c63c1f8492
    • Transparency log index: 146882681
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89029fe13db0a6ccdfac5202dec4432c1768b969081fade2da5d2807992e8d3a
MD5 d714be3912694fffa75772cd9a3a48a6
BLAKE2b-256 15c2a09c9329ead01cde366576b956c406a27e5522a069d80ba499ed6f2086d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-musllinux_1_2_i686.whl
    • Subject digest: 89029fe13db0a6ccdfac5202dec4432c1768b969081fade2da5d2807992e8d3a
    • Transparency log index: 146882650
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad68faf11568edcb7ef0bcdde0efe21a1efc4c348ab9dd402bd1969be4c0ba92
MD5 d91e4573a5e7e9b85a95d52dc0287edf
BLAKE2b-256 a575e6d217ca12af21b80617c9eca95924c26fb2962a903836862b0574acd0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-musllinux_1_2_aarch64.whl
    • Subject digest: ad68faf11568edcb7ef0bcdde0efe21a1efc4c348ab9dd402bd1969be4c0ba92
    • Transparency log index: 146882663
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e97cf123a9fddd5a540dc7fa7ef75e13f4036505e754a974c8e23c81739e26d
MD5 fc0142001142c0e46a3029b54dd9b453
BLAKE2b-256 56d59a9f1a1ff6d934a2a111a6d6ea81e7695032e7f97105393d2307c08b0107

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 8e97cf123a9fddd5a540dc7fa7ef75e13f4036505e754a974c8e23c81739e26d
    • Transparency log index: 146882680
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e21da27ade96e33e658630fc79c799b171e8d230c82b727db52302e8f53a6348
MD5 ac62cc874fa23dae5367974c978ab26b
BLAKE2b-256 d94ddde4e51afd6fdbf285c641c2d3d558462a3b7a5072cf9143b4ace83537c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: e21da27ade96e33e658630fc79c799b171e8d230c82b727db52302e8f53a6348
    • Transparency log index: 146882648
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb2a595f0dd03a62dae154bd3b0e1acd69ea9a70a5a62d394e6767bea381d9bc
MD5 3fa6af04d3a3de2170e5ffa41e23fa1a
BLAKE2b-256 9ba681ab6d9928f32d9859b5bbe10738b6a709dd646bc9c3a21ca54340759d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: bb2a595f0dd03a62dae154bd3b0e1acd69ea9a70a5a62d394e6767bea381d9bc
    • Transparency log index: 146882731
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d057e30b0cef5c5dc0b6749b4b13fdd88fd75a7032ff8de93ac24e1238a82a88
MD5 08d034565afd1e73e80731fed41270a5
BLAKE2b-256 887016a46b9aa894906e66c80838c59d8492be4faf0255988c2a59551b1a18a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: d057e30b0cef5c5dc0b6749b4b13fdd88fd75a7032ff8de93ac24e1238a82a88
    • Transparency log index: 146882689
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f789f2a24b900626ed62dd235871106b47f58c8fbcb4c307199c4c3829b34bb9
MD5 0a65d7f61e5711226a459afdfdaa9169
BLAKE2b-256 7208803bd2cca4a477f430516ac44739cef7d40674a4108e414a3817f1eb8928

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: f789f2a24b900626ed62dd235871106b47f58c8fbcb4c307199c4c3829b34bb9
    • Transparency log index: 146882645
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89d8c0e2c1b79a27cafc6d240a86a3b44c12734d14e0e1917e5f56965df3a17b
MD5 1f90cd9af4352c7cc34af2dc852b6f7a
BLAKE2b-256 b5940e84e8851945e018ccb9353559dc2f99e244786fa68ed96a1d834010a31a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-macosx_11_0_arm64.whl
    • Subject digest: 89d8c0e2c1b79a27cafc6d240a86a3b44c12734d14e0e1917e5f56965df3a17b
    • Transparency log index: 146882724
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ff81f3c1c57fe70b46b50bb730a501f4e36cd4c9edcb06c46d63f8469c626f9
MD5 b2ba4f985c711c0b8884a4a2dc6c89c5
BLAKE2b-256 92a4ba54c65e38321eca9377271e670e13fbb1f0e3c88207fbef3b6ccde4bf4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-macosx_10_13_x86_64.whl
    • Subject digest: 1ff81f3c1c57fe70b46b50bb730a501f4e36cd4c9edcb06c46d63f8469c626f9
    • Transparency log index: 146882704
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3e23421fe3720dd8e617ebe6849cedabdb766adc363574d9605fde6197e8c667
MD5 29c35edff3b9ead1e750003d24142469
BLAKE2b-256 3df0db297f706f5e91f197ee1a741915b61cbf02f2359b6bff30fe6b6499a72a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp312-cp312-macosx_10_13_universal2.whl
    • Subject digest: 3e23421fe3720dd8e617ebe6849cedabdb766adc363574d9605fde6197e8c667
    • Transparency log index: 146882639
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d32d9bfa0030ccd07aa0ecb08cab37784d8bd7da70e21a344541fd02cd4331cf
MD5 5a7d0f5f0ca448619990d5db8b4a80bf
BLAKE2b-256 b73f5ade64a95cad90053930472680ef556fc7213dc46828f57cf3521590f6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-win_amd64.whl
    • Subject digest: d32d9bfa0030ccd07aa0ecb08cab37784d8bd7da70e21a344541fd02cd4331cf
    • Transparency log index: 146882679
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 395.2 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.0b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8dfd99fbd013fd105842bfb8bdee4cdf3c47a7cf09e85d413d9da2d4b6ad63e5
MD5 516077a498ee7967a6cb31abaff70c77
BLAKE2b-256 87454428a6a4373b7d509b3b971c8980eb8b7a418decf19f7a560ab9c9a0e399

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-win32.whl
    • Subject digest: 8dfd99fbd013fd105842bfb8bdee4cdf3c47a7cf09e85d413d9da2d4b6ad63e5
    • Transparency log index: 146882713
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9875c28695158b8aa0ff5069dfdc6c3c8c1dfd0217d98a65925ccc7c56076e79
MD5 5855f431ba5bac024ae68d0bac331e31
BLAKE2b-256 83dafe5af1aab5d24f2c110f1bb5459fbf298fa3626e7fdce52928d2cfc9523a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-musllinux_1_2_x86_64.whl
    • Subject digest: 9875c28695158b8aa0ff5069dfdc6c3c8c1dfd0217d98a65925ccc7c56076e79
    • Transparency log index: 146882727
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 55de1c3b720a4ca238da246710c1ff89de8032ffa0d99ea4033f1ba634c17e0f
MD5 34ddf54a256d80845687a35d2c182425
BLAKE2b-256 2714a5f614b1898dee7ddb92b60f152e6b5446a3b5c01a71a9fe1afa02119466

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-musllinux_1_2_s390x.whl
    • Subject digest: 55de1c3b720a4ca238da246710c1ff89de8032ffa0d99ea4033f1ba634c17e0f
    • Transparency log index: 146882690
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c3b92cee1eb9f1750260faae4c2eea3a99b64f45c070de1e65bb561848d22a44
MD5 eeb79b3db24d9c4d6ac764446e3e5ff5
BLAKE2b-256 208ebcc8ab1b01b84946a12592fd77e649c4ec0053220af21d91e34ecb113fe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-musllinux_1_2_ppc64le.whl
    • Subject digest: c3b92cee1eb9f1750260faae4c2eea3a99b64f45c070de1e65bb561848d22a44
    • Transparency log index: 146882708
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f5b20b61b658c9ba662fec5acc696a7aa40b8cfa496d4dbd2a54c8ad60ca90b0
MD5 484e4ce38682533406caca2ef2182a4b
BLAKE2b-256 e73b91aebbdb0c16aa725152a57c23275a3df10bbba13c2a0544fbd99f6dd6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-musllinux_1_2_i686.whl
    • Subject digest: f5b20b61b658c9ba662fec5acc696a7aa40b8cfa496d4dbd2a54c8ad60ca90b0
    • Transparency log index: 146882634
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 825b565f66d405df08c9fa209ae5856deed7cc4646313d14868686495acf4720
MD5 118c13921f6c3977a924014b929db2bb
BLAKE2b-256 3df4c23019fd256f0b7326ab3fcd40ce88ce94012b67644dd8e5b89f69fdf556

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-musllinux_1_2_aarch64.whl
    • Subject digest: 825b565f66d405df08c9fa209ae5856deed7cc4646313d14868686495acf4720
    • Transparency log index: 146882723
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d621249e276253705d26491d8d242b7cd7ef16e5a7550b898b7ef81e16d2e12
MD5 8f5c37bfaef6248bb770840b686ef065
BLAKE2b-256 a3033666f6c91339233118974878a96451d25b4f8c46b2d5e136a85be176757d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 6d621249e276253705d26491d8d242b7cd7ef16e5a7550b898b7ef81e16d2e12
    • Transparency log index: 146882701
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3cd6fc2809379cbb536a38ba66100ecfba5b70df22efcfdcd1d679641b65ab9
MD5 7ac826efa7fff75eab73ced80a296ae7
BLAKE2b-256 d0eabc1f5b2dd0a21cb186d5961044b649f3be212c23510fd37fccb3eaf9e3df

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: b3cd6fc2809379cbb536a38ba66100ecfba5b70df22efcfdcd1d679641b65ab9
    • Transparency log index: 146882700
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc989bdc1177e805087deaffa9645f839dea3405d12c775349f1b05ac9229d8f
MD5 52193278a75999d457e32c47697ed27f
BLAKE2b-256 947a54cf6a47242accd2e2837e333f973bf78e7fe9c90955cd2e851d2485db6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: fc989bdc1177e805087deaffa9645f839dea3405d12c775349f1b05ac9229d8f
    • Transparency log index: 146882730
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b3d29f19ddedb453e9f28951838a1cfeb1c12074aa2d0857f795c8901342ec
MD5 05c5dc641069ec7cd73e4a5307ee276c
BLAKE2b-256 a82afc8bcccca26b0334eaa756cddd2e962ece1a1341bb2a625c5eda0bc23be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 97b3d29f19ddedb453e9f28951838a1cfeb1c12074aa2d0857f795c8901342ec
    • Transparency log index: 146882667
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88c298a69eb578badd1dc8348c58eb43f08c2783039d47eefe22e32f30e5093a
MD5 418396f82da334c0d790c84864aecf45
BLAKE2b-256 c1e8e8a494c361c726c4f19cffe84fd237b736041b6cd155945ccd3675e126bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 88c298a69eb578badd1dc8348c58eb43f08c2783039d47eefe22e32f30e5093a
    • Transparency log index: 146882655
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d625dccb0bd2ac4d4c62af82ebd675452e79183127bc9edc3b96e38f74f44a8b
MD5 e13cd36a731de6caf74b648603b2d39d
BLAKE2b-256 aebbedb562f552c414e504de18d8f4dac1756b4c67fdecb770c75824cfd9cee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-macosx_11_0_arm64.whl
    • Subject digest: d625dccb0bd2ac4d4c62af82ebd675452e79183127bc9edc3b96e38f74f44a8b
    • Transparency log index: 146882687
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f0f89ce245cfbb6ce87368b601eb4dc407480de5b7e79198e3680f93c3886f5
MD5 f3b562157c176cf08b21f8b737131398
BLAKE2b-256 db5873b6968c6510e19d02d8de372388437b6328e7de9974a71f8f9e3733e588

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-macosx_10_9_x86_64.whl
    • Subject digest: 6f0f89ce245cfbb6ce87368b601eb4dc407480de5b7e79198e3680f93c3886f5
    • Transparency log index: 146882717
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2efdf4d039e240890d74a801b06f51fd14e6592ddf4d53575647de748154db84
MD5 664a7a828592d3f2586ec126e4037982
BLAKE2b-256 efa84696994ff514486327bc920edcb71ee721d9a97d30fc4a6d29a95753a297

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp311-cp311-macosx_10_9_universal2.whl
    • Subject digest: 2efdf4d039e240890d74a801b06f51fd14e6592ddf4d53575647de748154db84
    • Transparency log index: 146882711
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5e0f0fb62b3c6350ab6c85de18901820c6a4d4f1627299d373b8e6e220847656
MD5 41cdafefe1c2cd66c2abf4f62fd0d725
BLAKE2b-256 b872f606f08c262343c287b9035b01984368108be779f142cbf45f08e3bf2f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-win_amd64.whl
    • Subject digest: 5e0f0fb62b3c6350ab6c85de18901820c6a4d4f1627299d373b8e6e220847656
    • Transparency log index: 146882641
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 395.4 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.0b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a50059e75fa6a9c984a3d960abb70179b5540abda1c506c093af60e5084869f7
MD5 1e98c1bc587edd6c33a98a3b41608566
BLAKE2b-256 f56b3aa7da78c26b48f70bfb797346e376ade7cde979b76a1f84942e642effb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-win32.whl
    • Subject digest: a50059e75fa6a9c984a3d960abb70179b5540abda1c506c093af60e5084869f7
    • Transparency log index: 146882664
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33121bb6c8dff9d4869c0d84416757d157b6bef8207a63a76d0e585ef94d637c
MD5 5baad9c93ee9aaee22b9de298d540793
BLAKE2b-256 bfd6b082f5fdbbb4e44b96ca46bba99347157cd2f8ac6354b9e0df1d410e6af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-musllinux_1_2_x86_64.whl
    • Subject digest: 33121bb6c8dff9d4869c0d84416757d157b6bef8207a63a76d0e585ef94d637c
    • Transparency log index: 146882732
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f724babba8e47b754915ca2b0c23915367e90138f746e895f3852bb2c8ba098
MD5 cf3af0e545926cf3ca86d7df26017c2d
BLAKE2b-256 54b5d09e9dbfe5c35a9ba0025454509a49cd1660eca9ab350f7787b776d9042e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-musllinux_1_2_s390x.whl
    • Subject digest: 5f724babba8e47b754915ca2b0c23915367e90138f746e895f3852bb2c8ba098
    • Transparency log index: 146882637
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 99a45d52c82412af8a281ab435f930901a724f7bbac3d60ebb275aa19531c3f7
MD5 e6b163886af4d906aa1d58abe50669b8
BLAKE2b-256 06d84a98c9317562db665ad73d74e2ddc275884a727ca038affefc021d0f257e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-musllinux_1_2_ppc64le.whl
    • Subject digest: 99a45d52c82412af8a281ab435f930901a724f7bbac3d60ebb275aa19531c3f7
    • Transparency log index: 146882685
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 391fe364db1f7c539e6671c787a4cc4b5ae0fb35e8f74362a4864f9728c7aa74
MD5 1ed8debd09515191902d7ad4bf8a63d9
BLAKE2b-256 352bbf2e53192d385f3e6ffed5bcbe5d0bcb74d2ceca1eb67808e105fb5f62ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-musllinux_1_2_i686.whl
    • Subject digest: 391fe364db1f7c539e6671c787a4cc4b5ae0fb35e8f74362a4864f9728c7aa74
    • Transparency log index: 146882678
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62fc1daa7801a0495d1614894699f4ad278867c061839ddd366c4a990cd12f5d
MD5 f670248681e1a741c4927ec513ad2ca7
BLAKE2b-256 ccc3d6db6f749e7d0fdc6109df2ba8f92b45e3d8c97f0ddb51819e8f647766f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-musllinux_1_2_aarch64.whl
    • Subject digest: 62fc1daa7801a0495d1614894699f4ad278867c061839ddd366c4a990cd12f5d
    • Transparency log index: 146882632
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b8dfb622e3ad99cbb7facff586a5ae23811d3e0ac6631bb09c78bb5f83ca02e
MD5 91fe0e49277ebf203e537500e29811e8
BLAKE2b-256 2377464051cac73394ed53398a1b9c3a08a4219cbd53bbe7f66f8c0d193feefc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 5b8dfb622e3ad99cbb7facff586a5ae23811d3e0ac6631bb09c78bb5f83ca02e
    • Transparency log index: 146882652
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a34a685e3f33807d378f54e799a8c36da6558d156c77877ac5d8809172700134
MD5 30780775952453cdddf35539fd9eac1e
BLAKE2b-256 8c3cdee8c1066dd8394e114a33bf5bd88aa9cc92da0be5327375282875e92bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: a34a685e3f33807d378f54e799a8c36da6558d156c77877ac5d8809172700134
    • Transparency log index: 146882694
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12843bc15c6c3542671c61ed983e39267075bd2db3813089e6b2ffa2f4a34def
MD5 4c354a5eecb49b49d03a56eb49eb415c
BLAKE2b-256 420d177568b3801e88f93a952fbc97a541ce655420dff565d0e47e14a53277df

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 12843bc15c6c3542671c61ed983e39267075bd2db3813089e6b2ffa2f4a34def
    • Transparency log index: 146882646
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5178cb5725f786cf0555cc8560f27112905f0270091b8082efd3b86913adc5b8
MD5 6feddf9844589a6acbc65525560fafd2
BLAKE2b-256 5355a462e33b8c9d5fa7976088f987d481c0751cbc2f6f93b2a829fe970f063b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 5178cb5725f786cf0555cc8560f27112905f0270091b8082efd3b86913adc5b8
    • Transparency log index: 146882697
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a25721e11413de16f3bdc179755d81bf50c1f04ff40ac0f0b734ebbfb49f4b6
MD5 c763807ae40efed4ca93ed6fe124576b
BLAKE2b-256 72a87e22de7e4edcb20bb5165ab90f74b97871011aff8b9f97f38cc99d2077dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: 6a25721e11413de16f3bdc179755d81bf50c1f04ff40ac0f0b734ebbfb49f4b6
    • Transparency log index: 146882715
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1731d846aaee6bb6dc6caf2acb482de310c7e3f2addb466a6c966d9e21f7cf6a
MD5 f2e6a6efce936a025ae9357fa0031fe7
BLAKE2b-256 4849295eadcd8649e763cfc1012f1b9cea7ba6b5b9c7bd7bf6e8afa4ed826ac3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-macosx_11_0_arm64.whl
    • Subject digest: 1731d846aaee6bb6dc6caf2acb482de310c7e3f2addb466a6c966d9e21f7cf6a
    • Transparency log index: 146882714
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4b298adad04298d68e8533dafc1861c0c56956ab6225c2af1d67b6884195afe
MD5 6141e1c64edca44b70958bf2c3255c86
BLAKE2b-256 a8d9e7efa113d0b18dab9efc1159c29b3075d1d5fcaf1c463dd5890956c741ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-macosx_10_9_x86_64.whl
    • Subject digest: f4b298adad04298d68e8533dafc1861c0c56956ab6225c2af1d67b6884195afe
    • Transparency log index: 146882640
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7087491d6e7a239d01737c1c6c900817675a05dac402968895713a25219d64cc
MD5 63c7e50a6370dd20c65a5591a38cfce8
BLAKE2b-256 2c249a7bbe0db9549d32dffbb7991c4476f368aff46cac8e186a817a15036541

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp310-cp310-macosx_10_9_universal2.whl
    • Subject digest: 7087491d6e7a239d01737c1c6c900817675a05dac402968895713a25219d64cc
    • Transparency log index: 146882709
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 417.3 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.0b3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 94c7e9016fe6b7db9c633ad8153859471f43921758a2d6205e87218afd655842
MD5 a45f58d7c167f78eec0902c40981f883
BLAKE2b-256 0d337fb1c6dc073bf285deedc22f91e77561dd0c3c32b8f87370ca21d3545896

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-win_amd64.whl
    • Subject digest: 94c7e9016fe6b7db9c633ad8153859471f43921758a2d6205e87218afd655842
    • Transparency log index: 146882712
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 396.1 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.0b3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b5842c50d795a01d024c46840ad5b319b4fb2ab488e72391f2b726d706d34f41
MD5 0e4cbf7a6f7d5b2d193f3d1ca02c0811
BLAKE2b-256 4eaa7249bf4736c1971ba750099ee829718a8f38a305c42d46bc8380d71337eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-win32.whl
    • Subject digest: b5842c50d795a01d024c46840ad5b319b4fb2ab488e72391f2b726d706d34f41
    • Transparency log index: 146882642
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98eb5d54a71d7b568d7b2c163b856a47aed538b9d52fb7c7c7f1d3f4d0bbf4a9
MD5 cc19ace57a4f2d14eb98bf3cb3995cb1
BLAKE2b-256 32a0a2f14f41fcb237c1dbd682775aa759ea3146149608b50858c00f73776946

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-musllinux_1_2_x86_64.whl
    • Subject digest: 98eb5d54a71d7b568d7b2c163b856a47aed538b9d52fb7c7c7f1d3f4d0bbf4a9
    • Transparency log index: 146882692
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7124f5e96f4b7c1bf02222c3a4cbcda25311d14ca3cf7378c2ce85e24f442cff
MD5 7f74c87db747b6f4578acdb458c5d682
BLAKE2b-256 df902fc5226d2f71c4d747ad47dfd2533e0bc706b1a24f356485aeaa55829a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-musllinux_1_2_s390x.whl
    • Subject digest: 7124f5e96f4b7c1bf02222c3a4cbcda25311d14ca3cf7378c2ce85e24f442cff
    • Transparency log index: 146882671
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b0c44aa1c72b8a6c0bb48e0102b30cb6522a138b43cd4046614ab5b1d9e09d58
MD5 5373ecbcd83e04a61375d83b3f00955f
BLAKE2b-256 94b37376b7793bace00b96695edb88c6c49c4ba6d12fd10cdc566db04160951e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-musllinux_1_2_ppc64le.whl
    • Subject digest: b0c44aa1c72b8a6c0bb48e0102b30cb6522a138b43cd4046614ab5b1d9e09d58
    • Transparency log index: 146882656
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 291484738c72a729883132621b60248a8a56ba6e5372fb2138eda75423252eb8
MD5 46ac7773f9e5cd27055f711c95276bde
BLAKE2b-256 3743c4f5671faff3a92a33429551bc03171d254a5935fa36947f924a190e244c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-musllinux_1_2_i686.whl
    • Subject digest: 291484738c72a729883132621b60248a8a56ba6e5372fb2138eda75423252eb8
    • Transparency log index: 146882734
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccc4a431006760d68f0e897ef1b281eca8bbf389e6d49b8f05e194e4cd73843d
MD5 bdf7d643e45385fe3f50d41c0b9dbe42
BLAKE2b-256 fb9504192880faf63f0a31a15451e072c9be811ce895cd67e083d1fca2f731fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-musllinux_1_2_aarch64.whl
    • Subject digest: ccc4a431006760d68f0e897ef1b281eca8bbf389e6d49b8f05e194e4cd73843d
    • Transparency log index: 146882674
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b3fea28958fd249f3f408a9e2e8d7df9cc1f1b70b4268d249c40e1468749a6f
MD5 c9f2ba8127fd850f150de45a21865480
BLAKE2b-256 d5af0f82432955713c103588e92aa647de569a4d247639a316a2669eee6e514b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 1b3fea28958fd249f3f408a9e2e8d7df9cc1f1b70b4268d249c40e1468749a6f
    • Transparency log index: 146882721
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d8ce6794c272155b9fa2106b6c83f42a68012218201b285adde24d840c7bf68
MD5 60c89286569f74017f1a481676c3a475
BLAKE2b-256 325227f2574e1f882c2d6e5c31caf69b79046184c75d48148ce757522dd9efea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 8d8ce6794c272155b9fa2106b6c83f42a68012218201b285adde24d840c7bf68
    • Transparency log index: 146882635
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ab47ab39cf5db7fe477bfe6938744574a81496da2a9353b15745b3ec45cb8fa
MD5 b81a94609afd3b73bbed984dd5e165f5
BLAKE2b-256 c8e95833242718a6e015daa894edee9d738184450f3e30621c7e18114f554e17

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 4ab47ab39cf5db7fe477bfe6938744574a81496da2a9353b15745b3ec45cb8fa
    • Transparency log index: 146882633
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4cd6fed89264f483c2d99e51b82b9dcd9da769b678ff04ca9031603bedb00dd
MD5 e039a9ff2867611efa8b60d28a5b0752
BLAKE2b-256 02bf70b70bbb3a4c0e3630e9206afdd30c7b4028cc33a6c857a512e58a4eab42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: a4cd6fed89264f483c2d99e51b82b9dcd9da769b678ff04ca9031603bedb00dd
    • Transparency log index: 146882707
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc66eb5c7e70ae58757d8f4ebb8aa2a14f143d5f0a90e25dea7a7547a7d1f546
MD5 848d5ec99f1e3406eee667240887c0ed
BLAKE2b-256 7cdffa634fc0c26c3778bb5f3488c61f283dded953e555384f5127152f5a2f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl
    • Subject digest: cc66eb5c7e70ae58757d8f4ebb8aa2a14f143d5f0a90e25dea7a7547a7d1f546
    • Transparency log index: 146882627
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af55474530af637be1a76eb0271e6e75d95ac0f2f4cdaaa76408d5c43e1d51cc
MD5 a20d87546aa239911e8e93efd0b6fc10
BLAKE2b-256 65857390469d1e15d30766e60c2c2efe3badc35d8e8d261b623228af4805df19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-macosx_11_0_arm64.whl
    • Subject digest: af55474530af637be1a76eb0271e6e75d95ac0f2f4cdaaa76408d5c43e1d51cc
    • Transparency log index: 146882659
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9d3b5d24a680b7faa52a0e52c0653c9d3c13095d37e4725386c8a26a95fc0b4
MD5 14e67fa838f493c3a0e64563c17febc4
BLAKE2b-256 a8abc06f80f0a07e6c8a793bd3b559c894aabd0aad3e053ded90ad6f0a2a9eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-macosx_10_9_x86_64.whl
    • Subject digest: c9d3b5d24a680b7faa52a0e52c0653c9d3c13095d37e4725386c8a26a95fc0b4
    • Transparency log index: 146882675
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0e7ee7cb33dc0f18de711674e860ff7d2f54feb467804c1a0ac2057f3085da6f
MD5 7239f54f7cc3f717ac5bd1d618adbb83
BLAKE2b-256 88cbc406cd614c251d2307d647e6af9db4df91a6fa6952295431141017772c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.0b3-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.0b3-cp39-cp39-macosx_10_9_universal2.whl
    • Subject digest: 0e7ee7cb33dc0f18de711674e860ff7d2f54feb467804c1a0ac2057f3085da6f
    • Transparency log index: 146882669
    • 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