Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Codspeed.io status for aiohttp Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Key Features

  • Supports both client and server side of HTTP protocol.

  • Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

    async with aiohttp.ClientSession() as session:
        async with session.get('http://python.org') as response:

            print("Status:", response.status)
            print("Content-type:", response.headers['content-type'])

            html = await response.text()
            print("Body:", html[:15], "...")

asyncio.run(main())

This prints:

Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...

Coming from requests ? Read why we need so many lines.

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

async def handle(request):
    name = request.match_info.get('name', "Anonymous")
    text = "Hello, " + name
    return web.Response(text=text)

async def wshandle(request):
    ws = web.WebSocketResponse()
    await ws.prepare(request)

    async for msg in ws:
        if msg.type == web.WSMsgType.text:
            await ws.send_str("Hello, {}".format(msg.data))
        elif msg.type == web.WSMsgType.binary:
            await ws.send_bytes(msg.data)
        elif msg.type == web.WSMsgType.close:
            break

    return ws


app = web.Application()
app.add_routes([web.get('/', handle),
                web.get('/echo', wshandle),
                web.get('/{name}', handle)])

if __name__ == '__main__':
    web.run_app(app)

Documentation

https://aiohttp.readthedocs.io/

Demos

https://github.com/aio-libs/aiohttp-demos

Communication channels

aio-libs Discussions: https://github.com/aio-libs/aiohttp/discussions

Matrix: #aio-libs:matrix.org

We support Stack Overflow. Please add aiohttp tag to your question there.

Requirements

Optionally you may install the aiodns library (highly recommended for sake of speed).

License

aiohttp is offered under the Apache 2 license.

Keepsafe

The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.

Source code

The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp

Benchmarks

If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

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

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0.tar.gz
  • Upload date:
  • Size: 7.7 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.0.tar.gz
Algorithm Hash digest
SHA256 f57a0de48dda792629e7952d34a0c7b81ea336bb9b721391c7c58145b237fe55
MD5 ee77cb266ac9cc0225ab1032c2615c3c
BLAKE2b-256 77074d2eb92798dc636e9512051b7fcfd3e6032a15c70af852abe777757e4c2d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 433.9 kB
  • Tags: CPython 3.13, 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ed360d6672a9423aad39902a4e9fe305464d20ed7931dbdba30a4625782d875
MD5 fea143d4d337e6333897771777b14ead
BLAKE2b-256 407fc548fc3b3069e3b5c3e3da5c559293be75d5b1cff1dd9eb33aefcad1ec4a

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 407.9 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c5a6958f4366496004cf503d847093d464814543f157ef3b738bbf604232415
MD5 b7fe7ad6ede5bda772dd76e8e3c1ce34
BLAKE2b-256 c0438db1b8402b96510e864ad9595cc84d3d990c1f6e3407f00deb5f6d078f5d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3e4fb7f5354d39490d8209aefdf5830b208d01c7293a2164e404312c3d8bc55
MD5 92cf9dc0ff00e7881cc0c3a0e11bdd4a
BLAKE2b-256 2f66a263ffeaeca2933156334d1d4f4f7079d07b47d47d739ed95f3dc507311a

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0e7a0762cc29cd3acd01a4d2b547b3af7956ad230ebb80b529a8e4f3e4740fe8
MD5 075b05418acb7af9be513d38b8110d19
BLAKE2b-256 10eae5e46efb8bd1ba8f50630848b563bb470a0f70b0dcd89b1331a0b1760887

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f698aa61879df64425191d41213dfd99efdc1627e6398e6d7aa5c312fac9702
MD5 d5056f75f392d9ff1470a4170c188e29
BLAKE2b-256 d6053b8379f464921a8eb24fe58e7518c746c55811758efc5862b2700caf5337

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6362f50a6f0e5482c4330d2151cb682779230683da0e155c15ec9fc58cb50b6a
MD5 9a9b38ce9b5eac14541b8afff22cb952
BLAKE2b-256 a174d9c2ea812bda194647e0072d27cfc9b362b658a44e67508e392b7c91b4bc

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d33b4490026968bdc7f0729b9d87a3a6b1e09043557d2fc1c605c6072deb2f11
MD5 fdf2d7c6d738b2370afbc9633cbd9df9
BLAKE2b-256 e6f02fbb9483c4cabbdc87696b8bf67b587481f48667a01ba2727cc9f959519c

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ecc2fb1a0a9d48cf773add34196cddf7e488e48e9596e090849751bf43098f4
MD5 492bb9a2874f3caf95ca1357d835a077
BLAKE2b-256 99f4bf2afd31461a8cfdd83769602f6ea9d401c2f4860c91e518513517d4adf0

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7bcfcede95531589295f56e924702cef7f9685c9e4e5407592e04ded6a65bf3
MD5 8f3f690d7abe8d9e7c25658cc4cc4fa9
BLAKE2b-256 f70500656e6ed46de5730d2db43ad54970b757fef6d573de4ab3f8e12e4da63c

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8b95a63a8e8b5f0464bd8b1b0d59d2bec98a59b6aacc71e9be23df6989b3dfb
MD5 a8e8921bfbaff6c1f0904d197f9d4057
BLAKE2b-256 96be8c8569b965ea993cca1bf0788c146c2b4902341cdcf2252b946a639c82ba

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cdad66685fcf2ad14ce522cf849d4a025f4fd206d6cfc3f403d9873e4c243b03
MD5 db0ad117270f669b0bf2c73f99264069
BLAKE2b-256 1232fdf0f2754c9a51867b54fb4ebfc05445cfb9405d0cbad70441cb796f7a9e

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fef105113d56e817cb9bcc609667ee461321413a7b972b03f5b4939f40f307c
MD5 fd4a6f89a047d94b040e0ef787d75ce3
BLAKE2b-256 b7c302c47e5e41b643687f781ba5e61011579850d7e04f1dc76050df71f62522

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 170fb2324826bb9f08055a8291f42192ae5ee2f25b2966c8f0f4537c61d73a7b
MD5 ae4621304efb7fe10958eb7ce9ee5e52
BLAKE2b-256 a630b5b443ab48050daa0e6506c5974869bc8f37c48494d829ab83cef7239bf9

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ad14cdc0fba4df31c0f6e06c21928c5b924725cbf60d0ccc5f6e7132636250e9
MD5 60315850f3ebba46d7f463bc82e77b61
BLAKE2b-256 05e1ae1a1c48e74b1a8cd2c3a0d9b872f7feae9276515a6bce29c1a7b4120e39

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c98a596ac20e8980cc6f34c0c92a113e98eb08f3997c150064d26d2aeb043e5a
MD5 3b0052594934c7160c0b0ee8555cc08e
BLAKE2b-256 f89a768cea33c03a832a98292858a7bf2ec87f50b27bd8996eaafc5e9de96625

See more details on using hashes here.

Provenance

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 508cfcc99534b1282595357592d8367b44392b21f6eb5d4dc021f8d0d809e94d
MD5 53ec945a0535389b35d46a51100cc25f
BLAKE2b-256 6869de71e1abde4340e9ea0b0ba67f56a4784ef3b4759d89cc07654487cc5ee1

See more details on using hashes here.

Provenance

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 aabc4e92cb153636d6be54e84dad1b252ddb9aebe077942b6dcffe5e468d476a
MD5 af22c5a1522a92aa6d769c35b75bfe9b
BLAKE2b-256 753b39f789385d12987daa4a2dd736b796c9770e03adda8602991bbae0c9c3a1

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b323b5d3aef7dd811424c269322eec58a977c0c8152e650159e47210d900504
MD5 cb8c0d94d7c8e35bcfe32d5fc0dab201
BLAKE2b-256 02b2c96436f71beafc3304e8de25942a2f3462358c018ebd31b1dada8cf6392d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c47a0ba6c2b3d3e5715f8338d657badd21f778c6be16701922c65521c5ecfc9
MD5 8dc4fd85a5fed0b792107de605bf631d
BLAKE2b-256 1ebd9e2d7b0a192ecccdd46d042b9fb023db62e5de1fdf371c5b60fd5239c3d3

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 600b1d9f86a130131915e2f2127664311b33902c486b21a747d626f5144b4471
MD5 c544d4c1c9002c1c975d8f96a74d33b7
BLAKE2b-256 6d8a459335e065715b92f8448a213f744526f2c0c4d5b78986092b10458af501

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd505a1121ad5b666191840b7bd1d8cb917df2647deeca6f3474331b72452362
MD5 aa1fa54a591910df850f0099578b4fa5
BLAKE2b-256 b75ab78ffab91436ccc9a82b4f43b24db2f70e9cabd19f414b417f25ca455060

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ec5efbc872b00ddd85e3904059d274f284cff314e13f48776050ca2c58f451d
MD5 637538b942773e744ed11299f8c90fdc
BLAKE2b-256 ed4d5948c19f61e3e0c5a2a922ad32cff4614a89172b07f4a69d4c1169f79007

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12071dd2cc95ba81e0f2737bebcb98b2a8656015e87772e84e8fb9e635b5da6e
MD5 731c15c2a7fb9572bb37908ed861903a
BLAKE2b-256 f8db62ce138bd83b5905b2d368dd5f2eae93599c2c37586f2907acecd767c0e1

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57e17c6d71f2dc857a8a1d09be1be7802e35d90fb4ba4b06cf1aab6414a57894
MD5 d48a112729486b5baeb289525c72fafa
BLAKE2b-256 c0e84f02ebea5f1032b382bb150a843ceb348b10f536c371e320892d1447ea98

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1c49bc393d854d4421ebc174a0a41f9261f50d3694d8ca277146cbbcfd24ee7
MD5 b080a052cba6d38e34d2f15cb5cec15b
BLAKE2b-256 a22322f2b6d1f57ddade6f7d6630f39cbab02e6be9a62b09b9b6874c1f769ae4

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb2e82e515e268b965424ecabebd91834a41b36260b6ef5db015ee12ddb28ef3
MD5 3783486cef74fd7dc234030c843ec28f
BLAKE2b-256 fe03ffab64af75db3a8f33c8701cba25e06e0fb1858d050f8698077ecaece256

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97056d3422594e0787733ac4c45bef58722d452f4dc6615fee42f59fe51707dd
MD5 5ed99cca7c279de8fe5c7015a4d26d8d
BLAKE2b-256 936caee13936697dfb4ea879a9acb6d26a2012d28e2142ef6f92d706d8f4cd3d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e1ed8d152cccceffb1ee7a2ac227c16372e453fb11b3aeaa56783049b85d3f6
MD5 64273f115fbcf8e71135a45238306bff
BLAKE2b-256 8d9e1bd08f529222c0dd4301a06894c3beb4784e8ef3179afee8b6860869bc92

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 113bf06b029143e94a47c4f36e11a8b7e396e9d1f1fc8cea58e6b7e370cfed38
MD5 07c445c9ff9a25fcfb73f3d8718fca64
BLAKE2b-256 dae2d3e01a6ad245426cd819a48483db82000f110c6438fc7f41cda3cefa02e6

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f8f0d79b923070f25674e4ea8f3d61c9d89d24d9598d50ff32c5b9b23c79a25b
MD5 81ca0e62388e00afc85b211539865305
BLAKE2b-256 61a1ed155cbbe9b518e4af3f7bcb914763962a6ffffcfe703915c77bdf5c3790

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 440.1 kB
  • Tags: CPython 3.11, 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 900ff74d78eb580ae4aa5883242893b123a0c442a46570902500f08d6a7e6696
MD5 d8c2f9c1fae1af2d8ddb349f80c2118f
BLAKE2b-256 3d364f649b33d52c9875a6aa5bd9664d92c887a966fc98c0408e51590b32e65a

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.9 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c1828e10c3a49e2b234b87600ecb68a92b8a8dcf8b99bca9447f16c4baaa1630
MD5 a4752a0d9c065e78f4357ffb4c9c5363
BLAKE2b-256 a4449471705943e75e9a093ccdeca7c21d3e952167cc6a5841c8da069a6bb57c

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72cd984f7f14e8c01b3e38f18f39ea85dba84e52ea05e37116ba5e2a72eef396
MD5 6454df16f6f4848590197f1763161907
BLAKE2b-256 1591dbf6580147e0dd2a812af62b7082450db3c9641dc99ac7dada2b59fe017d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6533dd06df3d17d1756829b68b365b1583929b54082db8f65083a4184bf68322
MD5 6a905490ccb389aa920a7170e127ca11
BLAKE2b-256 f1e52267f34b7629305474c346c5313ce9ec669d2127f07bc5885ce4aba1f9bb

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4d218d3eca40196384ad3b481309c56fd60e664128885d1734da0a8aa530d433
MD5 ddbf6d85a9eadabdbc492f0a3f912df2
BLAKE2b-256 850cec400a8e171ce2e1ee6ed8a1afacac4f2e1558e73804fce574cd11b2d446

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9095580806d9ed07c0c29b23364a0b1fb78258ef9f4bddf7e55bac0e475d4edf
MD5 61d1efd79532146da4d40f86fb80c7f4
BLAKE2b-256 1350d257badd73c8bc0032acd8cd61f49f2d82428794683fef3f37fd27bd03cc

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7349205bb163318dcc102329d30be59a647a3d24c82c3d91ed35b7e7301ea7e
MD5 f779fa5ec462441494b7c71a6e2426f3
BLAKE2b-256 c8ebb598f5d3c6aaba8ec7f31662f59b43a4442bb53a27799867bc47ccbed04e

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 104deb7873681273c5daa13c41924693df394043a118dae90387d35bc5531788
MD5 9cda85313d2f57bad713a94dcdaab046
BLAKE2b-256 ec8ed56529918eb6905d3c1e11b49adc7f8c19feae837800b6bb53bf38aa72a0

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a896059b6937d1a22d8ee8377cdcd097bd26cd8c653b8f972051488b9baadee9
MD5 97ffcb44e791fc507f4f60ee2f3aab94
BLAKE2b-256 33255c541bfcef6a5c4b6b621aa296d324987cabdd49d8b5565a44f1b469df4e

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62a2f5268b672087c45b33479ba1bb1d5a48c6d76c133cfce3a4f77410c200d1
MD5 915e4bc65eeac064a0e502ccd8b2578c
BLAKE2b-256 5c60e8cea1ef9f10b9020d7874db94f88871251efaba3abc38b08be0141ce217

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 229ae13959a5f499d90ffbb4b9eac2255d8599315027d6f7c22fa9803a94d5b1
MD5 e8f342d955fa7cbdeb4d54ce01d891ec
BLAKE2b-256 a277fc28ee2294a4f512c468e9f5132bb680a3ae88edc3fb08ece4a52cf4f447

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae36ae52b0c22fb69fb8b744eff82a20db512a29eafc6e3a4ab43b17215b219d
MD5 8462a6309085be9d5cb1af91208f7934
BLAKE2b-256 926a11118c39f703b18f016553189907a28c3480006561ff1bf4288d9cf661ea

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7867d0808614f04e78e0a8d5a2c1f8ac6bc626a0c0e2f62be48be6b749e2f8b2
MD5 7a453f74aeaf1c3f98f9058bf374a4dc
BLAKE2b-256 7ec5df661ba94d5c79d770f82ce8f545f52b2729ceb458085cafee4540810197

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6b925c7775ab857bdc1e52e1f5abcae7d18751c09b751aeb641a5276d9b990e
MD5 56d786bc218d659d932334d4ba258ddc
BLAKE2b-256 c60dee914f260a40a198ba85567cd26c421f3bd8a0f73d3029634f6bd6373461

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89a96a0696dc67d548f69cb518c581a7a33cc1f26ab42229dea1709217c9d926
MD5 148598949bc6ec072dbd983093c9a7a0
BLAKE2b-256 35747ce0c06f3269ddb42d2e703d0f88cbc61b8dfac5ddfdeb86dd003537e9d7

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 439.6 kB
  • Tags: CPython 3.10, 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd0834e4260eab78671b81d34f110fbaac449563e48d419cec0030d9a8e58693
MD5 bda82e56367d4e4db6e0b77226789d5f
BLAKE2b-256 f5d8e9ef0ff541c2882caf8de32d3b7ba1742f02d8a2d6a69a1904472d069828

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 414.0 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b40c304ab01e89ad0aeeecf91bbaa6ae3b00e27b796c9e8d50b71a4a7e885cc8
MD5 2ab498fdf6a046ceb61909f83a191d8c
BLAKE2b-256 08caaa60a78aabdb25acaf92d96af355b27cf36bd04aea150bcb621a2cf70c92

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebf610c37df4f09c71c9bbf8309b4b459107e6fe889ac0d7e16f6e4ebd975f86
MD5 25cc2b93a86dd9650d7b06853595a39d
BLAKE2b-256 4de32da4c0d68a887b96a5eab122198c816ff48091f43914b9106ecfe778ef9e

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31b91ff3a1fcb206a1fa76e0de1f08c9ffb1dc0deb7296fa2618adfe380fc676
MD5 a6a97a7feaf0a4164bd5d0eb26ba5a29
BLAKE2b-256 07c8e6350f9d385cac7c3a87102b5ff88c39bf88504d16199974a26f05d5f249

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d5cae4cd271e20b7ab757e966cc919186b9f02535418ab36c471a5377ef4deaa
MD5 5b8614021cbd93e22f216dd8f4d73ed9
BLAKE2b-256 47f5846a27fd38de505abb5ca608c5a6c5001d89cc670fa39b083f8093911d07

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c0315978b2a4569e03fb59100f6a7e7d23f718a4521491f5c13d946d37549f3d
MD5 b7194f08f057bbd92f1cd91b1a315d0a
BLAKE2b-256 27dfa3048be6ad33adde54e0cd8592268d83ebdd08bdb6d48f8f4a1aecf3d46f

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3bf5c132eb48002bcc3825702d241d35b4e9585009e65e9dcf9c4635d0b7424
MD5 235c1efd977773e53ea37603fa200190
BLAKE2b-256 d8546ac360afc2fc4d923d54d824237c608561b48cf0ce0cda334f08904ecb5d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f40380c96dd407dfa84eb2d264e68aa47717b53bdbe210a59cc3c35a4635f195
MD5 12fb8d71d4bc0d3077e790c6fffcc10e
BLAKE2b-256 a7d2935e94a25087108952ecff3fb03e8696b14165d82a01132847c2927402cb

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08474e71772a516ba2e2167b4707af8361d2c452b3d8a5364c984f4867869499
MD5 350607eda2be354bebac4165c06767fd
BLAKE2b-256 5fd8f04c8d92933db68b4f5b4a4a9a775179a5c57e5424d0a488c70be7ac93be

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04b24497b3baf15035730de5f207ade88a67d4483a5f16ced7ece348933a5b47
MD5 92070c4d006a5a7d46ba388e5c6a9726
BLAKE2b-256 74ed22030c5206f34ade14c3b322426431551f7add37d58df97f03a497b1b1f4

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 104ea21994b1403e4c1b398866f1187c1694fa291314ad7216ec1d8ec6b49f38
MD5 31bccb65002a0386a66e33e5d7d2b5e8
BLAKE2b-256 01c95d88b1949799604683422178e80a8d20342fa0d28bcaab4ccc65fbd25941

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1668ef2f3a7ec9881f4b6a917e5f97c87a343fa6b0d5fc826b7b0297ddd0887
MD5 7e94923040245128132dc94f99ff7479
BLAKE2b-256 c2b7d72812e2912f6fbb4358f3a2fca1c564da29973db4918ea6f9855e24332f

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54c635d1f52490cde7ef3a423645167a8284e452a35405d5c7dc1242a8e75c9
MD5 c3087e2980024983a8e7aea8ec507963
BLAKE2b-256 98d8ad7ddc59f129b4a71ae7bfa5fcd0e78388f55ccf947c2baabc829e6a734f

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62502b8ffee8c6a4b5c6bf99d1de277d42bf51b2fb713975d9b63b560150b7ac
MD5 d68f53409e619b74e66f14b27ce59292
BLAKE2b-256 275694567134aee38a3d241222ca26265e8302aa050231d731eab16fefd40655

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 024409c1b1d6076d0ed933dcebd7e4fc6f3320a227bfa0c1b6b93a8b5a146f04
MD5 247ed9b94cc2570cefc8b743860aaaa0
BLAKE2b-256 ae3eeba3518926b59a1aede59d76723f7f575e97c806ead30e17c476ae0e3dee

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 439.9 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 577c7429f8869fa30186fc2c9eee64d75a30b51b61f26aac9725866ae5985cfd
MD5 9aa8ff076df16f6cd8e34b8948880b11
BLAKE2b-256 ca063762c779ac694a8e6b96dce79d9a88b7112c96dfee291005955cb5e2e29d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 414.4 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 76d6ee8bb132f8ee0fcb0e205b4708ddb6fba524eb515ee168113063d825131b
MD5 476e49124769f26d7dd7105ce9383472
BLAKE2b-256 701ebabf12806b34c71d4866497fb319b2dab3c8434dbdc50fe94350d40c31b6

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e4e155968040e32c124a89852a1a5426d0e920a35f4331e1b3949037bfe93a3
MD5 33aa9e4a3fcfe1f5db0b5daf24b559e5
BLAKE2b-256 f9e9a95aa42355f9e9bcee08762e7a432843e3a2df2eaf8a4b2083892063180a

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9231d610754724273a6ac05a1f177979490bfa6f84d49646df3928af2e88cfd5
MD5 c42f901b8008e1909dc50040a1899c00
BLAKE2b-256 94b77f653b8d2c02618f23dab20d5281925f6a4e6746596c426d9e926565762d

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 91d3991fad8b65e5dbc13cd95669ea689fe0a96ff63e4e64ac24ed724e4f8103
MD5 2271cb02f877747fbc6bb712fcea2575
BLAKE2b-256 96cea82930d29b99f009be98d43c6cc35b6b382ca615c0cbea043e4b2df5d44b

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c415b9601ff50709d6050c8a9281733a9b042b9e589265ac40305b875cf9c463
MD5 e28daa9274a9e97a6c967038fe8fa7c9
BLAKE2b-256 509f6885bf1aa550c59f06c75971e0e5f19c67d9b8e45264af43e7e9ff1c3c67

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 feca9fafa4385aea6759c171cd25ea82f7375312fca04178dae35331be45e538
MD5 db176704c6103ba435a9457a8c19c7f3
BLAKE2b-256 0c83d0ce4dbb9a57bfdc03f5649bbafd15cb8f6a2227c68b4658dd5b19603a91

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85ae6f182be72c3531915e90625cc65afce4df8a0fc4988bd52d8a5d5faaeb68
MD5 a80ff730e0b554d10915d79bc7f5eb02
BLAKE2b-256 cc4fc9e1043e753be9c050c3a71a7a1ee237ee27029bf439ce15a56e85854283

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 329f5059e0bf6983dceebac8e6ed20e75eaff6163b3414f4a4cb59e0d7037672
MD5 8937cc6bff033ffb726f98876f9b18ea
BLAKE2b-256 15f5473ead98f0ad82d5c6cf80d2e0bdd684b500c3be0e328a7467190be6e3fe

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37f8cf3c43f292d9bb3e6760476c2b55b9663a581fad682a586a410c43a7683e
MD5 eaedba2a74caa2aeedce3fe6e88846f3
BLAKE2b-256 baa5b26e3cd6357d691947a6b3f1200399926fd470542ffe47ad54f6d0e85d2a

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21b4545e8d96870da9652930c5198366605ff8f982757030e2148cf341e5746b
MD5 e819d784f61f2ff52c799490f5b59c14
BLAKE2b-256 f6db330bc465d22c8d1c5be4d7fc370ac4c11385084dbb3ca3eaf353dd404565

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d664e5f937c08adb7908ea9f391fbf2928a9b09cb412ac0aba602bde9e499e4
MD5 fe82de45457b3e17005fde7e4ff89394
BLAKE2b-256 a223f5265cfd0961b4cdc53e0d7eccab39c0be39e562626c11467d495ad01738

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40dc9446cff326672fcbf93efdb8ef7e949824de1097624efe4f61ac7f0d2c43
MD5 2df945fb524adb7ef7f2be7103e477f3
BLAKE2b-256 6d1d7d0f08b62f8bf4631bde9a7e0340c2b1bc720f1c6ec21ae3655dd23497a2

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e6a1f8b0268ffa1c84d7c3558724956002ba8361176e76406233e704bbcffb
MD5 68864fa9089fa523a86166a7e4f75c17
BLAKE2b-256 cb4014aef0f224d53a249dde58ffce51bd5d03bb80091c9efee4dbc82ed43261

See more details on using hashes here.

Provenance

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d1ea006426edf7e1299c52a58b0443158012f7a56fed3515164b60bfcb1503a9
MD5 a38f9db3c0d414667e9559039b77e371
BLAKE2b-256 946eb6f8bde7cb9c7f6abf974e965a5efcfeaaf1477f9f630f268de2cba47461

See more details on using hashes here.

Provenance

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