Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

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

Key Features

  • Supports both client and server side of HTTP protocol.

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

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

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

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

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

asyncio.run(main())

This prints:

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

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

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

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

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

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

    return ws


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

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

Documentation

https://aiohttp.readthedocs.io/

Demos

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

Communication channels

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

Matrix: #aio-libs:matrix.org

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

Requirements

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

License

aiohttp is offered under the Apache 2 license.

Keepsafe

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

Source code

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

Benchmarks

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

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiohttp-3.11.10.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.11.10-cp313-cp313-win_amd64.whl (435.8 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.10-cp313-cp313-win32.whl (410.0 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.10-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.10-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.10-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.10-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.10-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.10-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.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (452.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl (460.4 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl (697.8 kB view details)

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

aiohttp-3.11.10-cp312-cp312-win_amd64.whl (437.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.10-cp312-cp312-win32.whl (411.1 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.10-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.10-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.10-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.10-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.10-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.10-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.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (455.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl (463.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl (704.4 kB view details)

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

aiohttp-3.11.10-cp311-cp311-win_amd64.whl (442.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.10-cp311-cp311-win32.whl (416.2 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.10-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.10-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.10-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.10-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.10-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.10-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.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (455.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl (708.4 kB view details)

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

aiohttp-3.11.10-cp310-cp310-win_amd64.whl (441.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.10-cp310-cp310-win32.whl (416.4 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.10-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.10-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.10-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.10-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.10-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.10-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.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (455.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl (468.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl (708.3 kB view details)

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

aiohttp-3.11.10-cp39-cp39-win_amd64.whl (442.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.10-cp39-cp39-win32.whl (416.7 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.10-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.10-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.10-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.10-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.10-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.10-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.10-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.10-cp39-cp39-macosx_11_0_arm64.whl (455.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl (468.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl (709.2 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.10.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.10.tar.gz
Algorithm Hash digest
SHA256 b1fc6b45010a8d0ff9e88f9f2418c6fd408c99c211257334aff41597ebece42e
MD5 93ad05a76d839040d6061221b837be91
BLAKE2b-256 94c43b5a937b16f6c2a0ada842a9066aad0b7a5708427d4a202a07bf09c67cbb

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 beb39a6d60a709ae3fb3516a1581777e7e8b76933bb88c8f4420d875bb0267c6
MD5 d661f6f46976e7d8c2cfb79c134bb906
BLAKE2b-256 491fdeed34e9fca639a7f873d01150d46925d3e1312051eaa591c1aa1f2e6ddc

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.0 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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 65e55ca7debae8faaffee0ebb4b47a51b4075f01e9b641c31e554fd376595c6c
MD5 f469f273776f3208b5805302893b1783
BLAKE2b-256 a5b13530ab040dd5d7fb016b47115016f9b3a07ea29593b0e07e53dbe06a380c

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7852bbcb4d0d2f0c4d583f40c3bc750ee033265d80598d0f9cb6f372baa6b836
MD5 2d8ae858a72ff6c0d30003fbe70456a1
BLAKE2b-256 3fe03dd3f0451c532c77e35780bafb2b6469a046bc15a6ec2e039475a1d2f161

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 593c114a2221444f30749cc5e5f4012488f56bd14de2af44fe23e1e9894a9c60
MD5 47b4b99333ddaadff078201d7d373b4c
BLAKE2b-256 16f968fc5c8928f63238ce9314f04f3f59d9190a4db924998bb9be99c7aacce8

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 15fccaf62a4889527539ecb86834084ecf6e9ea70588efde86e8bc775e0e7542
MD5 c335d7fee5de3ec1b46e9170e075746a
BLAKE2b-256 508368cc28c00fe681dce6150614f105efe98282da19252cd6e32dfa893bb328

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db1d0b28fcb7f1d35600150c3e4b490775251dea70f894bf15c678fdd84eda6a
MD5 41e02cecc95fa73de088343e848d395c
BLAKE2b-256 7b5d2d4b05feb3fd68eb7c8335f73c81079b56e582633b91002da695ccb439ef

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efb15a17a12497685304b2d976cb4939e55137df7b09fa53f1b6a023f01fcb4e
MD5 58e235f57201718af2164317665ee908
BLAKE2b-256 ab98791f979093ff7f67f80344c182cb0ca4c2c60daed397ecaf454cc8d7a5cd

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c49a76c1038c2dd116fa443eba26bbb8e6c37e924e2513574856de3b6516be99
MD5 5db1efa07a5256c64ced26dbac978f09
BLAKE2b-256 e849052ada2b6e90ed65f0e6a7e548614621b5f8dcd193cb9415d2e6bcecc94a

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6ab29b8a0beb6f8eaf1e5049252cfe74adbaafd39ba91e10f18caeb0e99ffb34
MD5 aac81d3181615dd52c8ff0896f70f596
BLAKE2b-256 8a080d3d074b24d377569ec89d476a95ca918443099c0401bb31b331104e35d1

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ddf5f7d877615f6a1e75971bfa5ac88609af3b74796ff3e06879e8422729fd01
MD5 eb6f2cc059fe663385658bda8a426ff1
BLAKE2b-256 02c261923f2a7c2e14d7424b3a526e054f0358f57ccdf5573d4d3d033b01921a

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 811f23b3351ca532af598405db1093f018edf81368e689d1b508c57dcc6b6a32
MD5 9ea51b77b36e2eb87042dae52b1060f9
BLAKE2b-256 066aff00ed0a2ba45c34b3c366aa5b0004b1a4adcec5a9b5f67dd0648ee1c88a

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f3dc0e330575f5b134918976a645e79adf333c0a1439dcf6899a80776c9ab39
MD5 429027a58474ba201c5d954de0e33f3d
BLAKE2b-256 7c9e0c48e1a48e072a869b8b5e3920c9f6a8092861524a4a6f159cd7e6fda939

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bca390cb247dbfaec3c664326e034ef23882c3f3bfa5fbf0b56cad0320aaca5
MD5 1e3e825fc826ded1dc1bd0b64a762c53
BLAKE2b-256 aa1c2f927408f50593a29465d198ec3c57c835c8602330233163e8d89c1093db

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5ef359ebc6949e3a34c65ce20230fae70920714367c63afd80ea0c2702902ccf
MD5 a24217bf0eded967cc491439cec0e81c
BLAKE2b-256 86004c4619d6fe5c5be32f74d1422fc719b3e6cd7097af0c9e03877ca9bd4ebc

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8cc5203b817b748adccb07f36390feb730b1bc5f56683445bfe924fc270b8816
MD5 c2be1b3d994af5bda7bb1bf6ffbc51e8
BLAKE2b-256 8c1d88bfdbe28a3d1ba5b94a235f188f27726caf8ade9a0e13574848f44fe0fe

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be2b516f56ea883a3e14dda17059716593526e10fb6303189aaf5503937db408
MD5 4b9aa89f17c67c97ddee54d95d700849
BLAKE2b-256 3a51df9c263c861ce93998b5ad2ba3212caab2112d5b66dbe91ddbe90c41ded4

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06a8e2ee1cbac16fe61e51e0b0c269400e781b13bcfc33f5425912391a542985
MD5 1d3e4d181395b11eb5c5ba4ce1221e0f
BLAKE2b-256 4b2042813fc60d9178ba9b1b86c58a5441ddb6cf8ffdfe66387345bff173bcff

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c87bf31b7fdab94ae3adbe4a48e711bfc5f89d21cf4c197e75561def39e223bc
MD5 cd52cd4f9eac3b121d97c4ac934cd3d6
BLAKE2b-256 0787b8f6721668cad74bcc9c7cfe6d0230b304d1250196b221e54294a0d78dbe

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44224d815853962f48fe124748227773acd9686eba6dc102578defd6fc99e8d9
MD5 66261a7c9619e85773a6ce33d7651805
BLAKE2b-256 4e1e0804459ae325a5b95f6f349778fb465f29d2b863e522b6a349db0aaad54c

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 012f176945af138abc10c4a48743327a92b4ca9adc7a0e078077cdb5dbab7be0
MD5 5637e9af9230795dcc8753dec21e7f74
BLAKE2b-256 7be044651fda8c1d865a51b3a81f1956ea55ce16fc568fe7a3e05db7fc22f139

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e97d622cb083e86f18317282084bc9fbf261801b0192c34fe4b1febd9f7ae69
MD5 497847a79f314d9ec7a40f3cef696896
BLAKE2b-256 992de85103aa01d1064e51bc50cb51e7b40150a8ff5d34e5a3173a46b241860b

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14cdb5a9570be5a04eec2ace174a48ae85833c2aadc86de68f55541f66ce42ab
MD5 5860b360b0e1130d14573f046e49ae01
BLAKE2b-256 48945bf5f927d9a2fedd2c978adfb70a3680e16f46d178361685b56244eb52ed

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24213ba85a419103e641e55c27dc7ff03536c4873470c2478cce3311ba1eee7b
MD5 6a4e569fb599b78e8590e98217c27cd6
BLAKE2b-256 a8e91ac90733e36e7848693aece522936a13bf17eeb617da662f94adfafc1c25

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf3d1a519a324af764a46da4115bdbd566b3c73fb793ffb97f9111dbc684fc4d
MD5 bda027ae619a6ebc584fee4ece810fc8
BLAKE2b-256 03f6a6d1e791b7153fb2d101278f7146c0771b0e1569c547f8a8bc3035651984

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 482cafb7dc886bebeb6c9ba7925e03591a62ab34298ee70d3dd47ba966370d2c
MD5 2f7a3b8cdb4a417427cba223252a57ad
BLAKE2b-256 874665e8259432d5f73ca9ebf5edb645ef90e5303724e4e52477516cb4042240

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 076bc454a7e6fd646bc82ea7f98296be0b1219b5e3ef8a488afbdd8e81fbac50
MD5 761eb8dbfd7eaab668406952d7438a65
BLAKE2b-256 e575ee1b8f510978b3de5f185c62535b135e4fc3f5a247ca0c2245137a02d800

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b99acd4730ad1b196bfb03ee0803e4adac371ae8efa7e1cbc820200fc5ded109
MD5 8d8987b07f9c8b0c3e3d87d389ad17d8
BLAKE2b-256 6da677b33da5a0bc04566c7ddcca94500f2c2a2334eecab4885387fffd1fc600

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf14627232dfa8730453752e9cdc210966490992234d77ff90bc8dc0dce361d5
MD5 b5add3714e459a29c192a73e6bd5213f
BLAKE2b-256 8a36a64b583771fc673062a7a1374728a6241d49e2eda5a9041fbf248e18c804

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab7485222db0959a87fbe8125e233b5a6f01f4400785b36e8a7878170d8c3138
MD5 f87a45889323d67643351be7607d4d3d
BLAKE2b-256 e39b112247ad47e9d7f6640889c6e42cc0ded8c8345dd0033c66bcede799b051

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b78f053a7ecfc35f0451d961dacdc671f4bcbc2f58241a7c820e9d82559844cf
MD5 94f2441be3a7f579a66771949b5e14d8
BLAKE2b-256 25171dbe2f619f77795409c1a13ab395b98ed1b215d3e938cacde9b8ffdac53d

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 974d3a2cce5fcfa32f06b13ccc8f20c6ad9c51802bb7f829eae8a1845c4019ec
MD5 5298f9c86c2f638c0f0fdd0513c0dbbf
BLAKE2b-256 cf8d7bb48ae503989b15114baf9f9b19398c86ae93d30959065bc061b31331ee

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4b2c7ac59c5698a7a8207ba72d9e9c15b0fc484a560be0788b31312c2c5504e4
MD5 09e28721539311639e5b0b9ebbc012f3
BLAKE2b-256 ae37015006f669275735049e0549c37cb79c7a4a9350cbee070bbccb5a5b4b8a

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbbaea811a2bba171197b08eea288b9402faa2bab2ba0858eecdd0a4105753a3
MD5 254767ae9a298528f738dc0ff9f97789
BLAKE2b-256 cd0857c919d6b1f3b70bc14433c080a6152bf99454b636eb8a88552de8baaca9

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8b3cf2dc0f0690a33f2d2b2cb15db87a65f1c609f53c37e226f84edb08d10f52
MD5 027ec829192f9e3d2901ac85a0c8c06e
BLAKE2b-256 f127ab52dee4443ef8bdb26473b53c841caafd2bb637a8d85751694e089913bb

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 31d5093d3acd02b31c649d3a69bb072d539d4c7659b87caa4f6d2bcf57c2fa2b
MD5 67891c578ab756df14a2162514926ecd
BLAKE2b-256 39c0ea24627e08d722d5a6a00b3f6c9763fe3ad4650b8485f7a7a56ff932e3af

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3691ed7726fef54e928fe26344d930c0c8575bc968c3e239c2e1a04bd8cf7838
MD5 20ac34a6ea41fd7c4052f3158cf7f7be
BLAKE2b-256 b8d199852f2925992c4d7004e590344e5398eb163750de2a7c1fbe07f182d3c8

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6362cc6c23c08d18ddbf0e8c4d5159b5df74fea1a5278ff4f2c79aed3f4e9f46
MD5 bd3617d0d286e00e24c2e16ee26a2c97
BLAKE2b-256 c2ae3b597e09eae4e75b77ee6c65443593d245bfa067ae6a5d895abaf27cce6c

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98f5635f7b74bcd4f6f72fcd85bea2154b323a9f05226a80bc7398d0c90763b0
MD5 0317a98c54554a32735dda3d72afae5d
BLAKE2b-256 7cb8df6d76a149cbd969a58da478baec0be617287c496c842ddf21fe6bce07b3

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65a96e3e03300b41f261bbfd40dfdbf1c301e87eab7cd61c054b1f2e7c89b9e8
MD5 670f7aaf6d05883bbfe7ee767e4eff69
BLAKE2b-256 5d5ec1b03bef621a8cc51ff551ef223c6ac606fabe0e35c950f56d01423ec2aa

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c9527819b29cd2b9f52033e7fb9ff08073df49b4799c89cb5754624ecd98299
MD5 3c59770755cd7114eae120207734992a
BLAKE2b-256 ef6e1bab78ebb4f5a1c54f0fc10f8d52abc06816a9cb1db52b9c908e3d69f9a8

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3de34936eb1a647aa919655ff8d38b618e9f6b7f250cc19a57a4bf7fd2062b6d
MD5 6df8e7e581253ae1d386ca64fcacdc52
BLAKE2b-256 448c4e14e9c1767d9a6ab1af1fbad9df9c77e050b39b6afe9e8343ec1ba96508

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 03b6002e20938fc6ee0918c81d9e776bebccc84690e2b03ed132331cca065ee5
MD5 cd29cd2aee001ce96302b0693c8f8455
BLAKE2b-256 ee8ee460e7bb820a08cec399971fc3176afc8090dc32fb941f386e0c68bc4ecc

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 386fbe79863eb564e9f3615b959e28b222259da0c48fd1be5929ac838bc65683
MD5 727d1d04e9596bafb58377ff8378167f
BLAKE2b-256 ab700ddb3a61b835068eb0badbe8016b4b65b966bad5f8af0f2d63998ff4cfa4

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 909af95a72cedbefe5596f0bdf3055740f96c1a4baa0dd11fd74ca4de0b4e3f1
MD5 31f6ea68feca24a6b77e58591b8fe18e
BLAKE2b-256 cd2d61c33e01baeb23aebd07620ee4d780ff40f4c17c42289bf02a405f2ac312

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 77c4aa15a89847b9891abf97f3d4048f3c2d667e00f8a623c89ad2dccee6771b
MD5 ff79af5dd673408b703ab6b6b8e54d14
BLAKE2b-256 db7c584d5ca19343c9462d054337828f72628e6dc204424f525df59ebfe75d1e

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 68ff6f48b51bd78ea92b31079817aff539f6c8fc80b6b8d6ca347d7c02384e33
MD5 fc4973f2b575e40a8595387d203dbb2a
BLAKE2b-256 5503731d1116d09ea7a3c6be731ab0eb1faa37b844d3e54fed28e3a6785ba5ab

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40d1c7a7f750b5648642586ba7206999650208dbe5afbcc5284bcec6579c9b91
MD5 d7971f363ed7c30c4bc2457f3da32f0d
BLAKE2b-256 2dd6d94506afaea3aca15ab3f4732d666ad80acd5a035a7478aa6377c9816cf3

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dc49f42422163efb7e6f1df2636fe3db72713f6cd94688e339dbe33fe06d61d
MD5 10dc0cb34d050ed0af91f540d0eb65e3
BLAKE2b-256 456670419d6cb9495ddcebfa54d3db07e6a9716049ef341ded1edd8982f9b7f9

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 99b7920e7165be5a9e9a3a7f1b680f06f68ff0d0328ff4079e5163990d046767
MD5 31ad568f297c12150c999a953bd20999
BLAKE2b-256 2a1097a11dba0f6d16878164b92ce75e2e0196a2fd25560cae8283388a24289b

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5d6958671b296febe7f5f859bea581a21c1d05430d1bbdcf2b393599b1cdce77
MD5 efaf081b7a531991aeecdf3702ace0a4
BLAKE2b-256 767f8b60b93e7dc58d371813a9b8d451b7c9c9c4350f9c505edf6fae80e0812b

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9ef405356ba989fb57f84cac66f7b0260772836191ccefbb987f414bcd2979d9
MD5 a9035882e42bf58d68eab1b3a4d3565c
BLAKE2b-256 10b0a258bfd5ddd3d9c871a8d24e96531cb6e6f0cd98dc3028f0b98302454b23

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68386d78743e6570f054fe7949d6cb37ef2b672b4d3405ce91fafa996f7d9b4d
MD5 defc286613dcd54872ea53e62abf36e4
BLAKE2b-256 68d22054efe02be87a1af92cfcaf6875d7b2c34906c3ee2b90ce82afbc8927a5

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bbbfff4c679c64e6e23cb213f57cc2c9165c9a65d63717108a644eb5a7398df
MD5 f9995d24e2d6015895c2adfe5e4c9852
BLAKE2b-256 9c3ea2f4cee0dca934b1d2c4b6a7821040ce4452b9b2e4347c9be6cb10eaa835

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cfce37f31f20800a6a6620ce2cdd6737b82e42e06e6e9bd1b36f546feb3c44f
MD5 e0dde9cb5f4ea83498ee54c5d76a5661
BLAKE2b-256 1bf18c3a1623b9d526986f03d8158c9c856e00531217998275cc6b4a14b2fb85

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02c13415b5732fb6ee7ff64583a5e6ed1c57aa68f17d2bda79c04888dfdc2769
MD5 58628c338581a70e4ae379b738af88ec
BLAKE2b-256 dc976bdd39c4134ef243ffa9fd19a072ac9a0758d64b6d51eaaaaa34e67b8bcb

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e2e576caec5c6a6b93f41626c9c02fc87cd91538b81a3670b2e04452a63def6
MD5 3c31f79851a77256b6f98cac691df0fd
BLAKE2b-256 4e8328feef5a0bda728adf76e0d076566c26c6da3d29f0ccd998d07c260cae9d

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49c7dbbc1a559ae14fc48387a115b7d4bbc84b4a2c3b9299c31696953c2a5219
MD5 8b5d2423a7debaa381101a99db796004
BLAKE2b-256 fd9c93e9a8f39c78f0c6d938721101e28c57597046f78057ffced8a3fd571839

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b9bae80ed1f338c42f57c16918853dc51775fb5cb61da70d590de14d8b5fb4
MD5 ff270847f2b699fe4d7b2e8db21f138e
BLAKE2b-256 c90bd326251888bb86ff7cb00b171e1cf3b0f0ed695622857f84a98bbc5f254b

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80886dac673ceaef499de2f393fc80bb4481a129e6cb29e624a12e3296cc088f
MD5 0068acb2e0a43ea9e12b252a33d1ee18
BLAKE2b-256 2bc722b0ed548c8660e978e736671f166907fb272d0a4281b2b6833310bce529

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cbad88a61fa743c5d283ad501b01c153820734118b65aee2bd7dbb735475ce0d
MD5 be7f81c26dc592c2b2ea2f14ffe63e8e
BLAKE2b-256 47f2ba44492f257a296c4bb910bf47acf41672421fd455540911b3f13d10d6cd

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.0 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c6b9e6d7e41656d78e37ce754813fa44b455c3d0d0dced2a047def7dc5570b74
MD5 d8c61313ca576c3fd44380e9b02f5be3
BLAKE2b-256 a5fbc5b72bb6fa02660447fdfd0d8aa77fab3c64cf3690b4d7fe490ced18c57a

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.11.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 416.7 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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 47ad15a65fb41c570cd0ad9a9ff8012489e68176e7207ec7b82a0940dddfd8be
MD5 0ed5730845d2429946daf13374997784
BLAKE2b-256 f88a34d119e6513179d7d5a7f5bdacf3a775445837c78b3b5f323e6413a88188

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5532f0441fc09c119e1dca18fbc0687e64fbeb45aa4d6a87211ceaee50a74c4
MD5 6213cf9469d2aab40a576fcbed01466f
BLAKE2b-256 737369b6568b0774ef5905fe69d4e53c7602c5454550dbb927f002f21d9a28fb

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 53bf2097e05c2accc166c142a2090e4c6fd86581bde3fd9b2d3f9e93dda66ac1
MD5 682b471940d75a93bec071a5345047a7
BLAKE2b-256 c556ac432399cb7f9ab1babd8b41c24edde58a35cc9736dacafcb9c582a26c0f

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98283b94cc0e11c73acaf1c9698dea80c830ca476492c0fe2622bd931f34b487
MD5 2b42897f5bc19fe5608c7ca8af1a4225
BLAKE2b-256 bb8cf9cd0e127b7b0044138f57ab531fbfac6a8786e6bbcfdee0fbf254ddfefd

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78153314f26d5abef3239b4a9af20c229c6f3ecb97d4c1c01b22c4f87669820c
MD5 77ceec98e81166f1270f3aeaf617f01b
BLAKE2b-256 91b0c491bd8509501f5fb83795df2363544ac7aaa35be842f4d7fd5e83beed0d

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77ae58586930ee6b2b6f696c82cf8e78c8016ec4795c53e36718365f6959dc82
MD5 e0cc9f61a7b9f1196c52efc0036c1f34
BLAKE2b-256 b9effc5bfe84911484092026f6399dfa7227f3d1839e416b9b3c121a7fbcabfb

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cca22a61b7fe45da8fc73c3443150c3608750bbe27641fc7558ec5117b27fdf
MD5 87e67307787339ba937bc888815cc5c4
BLAKE2b-256 5bcc7a8fadec9610b11af3c65944666e0702c5a8a8f5632c60b2b198c6180a45

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 613e5169f8ae77b1933e42e418a95931fb4867b2991fc311430b15901ed67079
MD5 3d875ff53e759ae9c4774706f1d77082
BLAKE2b-256 0fb810a83d1d0dc9b90c461a58041d8bb0b00f68c6cf07fedf74f1a171383cfa

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 502a1464ccbc800b4b1995b302efaf426e8763fadf185e933c2931df7db9a199
MD5 d68c01537f94e02abac928a6b97f432c
BLAKE2b-256 19664430ef0ba5c88559bc18abeda095fce0225e4fae618c7de0ed6d952ffc47

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e44a9a3c053b90c6f09b1bb4edd880959f5328cf63052503f892c41ea786d99f
MD5 d3ed1a0a1ef113256668bc7e79940658
BLAKE2b-256 99cc18d24ffb6b33071e295707ee5b0133bea46bc84b5c0c0606586855ed69bc

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 86a5dfcc39309470bd7b68c591d84056d195428d5d2e0b5ccadfbaf25b026ebc
MD5 3fc9a8f7d34c2340383f13d755e561c1
BLAKE2b-256 161262f6058e0a9cf09a14a002594da02134ee1eb6cd404e1e379034f38cf589

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04814571cb72d65a6899db6099e377ed00710bf2e3eafd2985166f2918beaf59
MD5 677a0eeb2581155fa2cb50f146d4f10a
BLAKE2b-256 7958de3da0f281460c3c415b2d1fe0d09137612dfcd7d0070837df14f9f3ef9f

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a55d2ad345684e7c3dd2c20d2f9572e9e1d5446d57200ff630e6ede7612e307f
MD5 8ee061d2006f2e7c55174a5b22d2be45
BLAKE2b-256 6f5d81a920e34bb43cd8d6e35b68e62c2ab1597826c6511d6ec5c5c99a4595b5

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.10-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0580f2e12de2138f34debcd5d88894786453a76e98febaf3e8fe5db62d01c9bf
MD5 277cd869e068e1f7da1cdcfe9187d1a8
BLAKE2b-256 1f4b60725fcffe8af2ff2e9c0aaef20a89b11cb8fa1d453abd951e64151db4c9

See more details on using hashes here.

Provenance

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

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS 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