Skip to main content

Async http client/server framework (asyncio)

Reason this release was yanked:

Regression https://github.com/aio-libs/aiohttp/issues/10763

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

Uploaded Source

Built Distributions

aiohttp-3.11.17-cp313-cp313-win_amd64.whl (438.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.11.17-cp313-cp313-win32.whl (411.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.11.17-cp313-cp313-macosx_11_0_arm64.whl (455.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.11.17-cp313-cp313-macosx_10_13_x86_64.whl (463.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.11.17-cp313-cp313-macosx_10_13_universal2.whl (701.1 kB view details)

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

aiohttp-3.11.17-cp312-cp312-win_amd64.whl (439.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.11.17-cp312-cp312-win32.whl (412.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.11.17-cp312-cp312-macosx_11_0_arm64.whl (458.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.11.17-cp312-cp312-macosx_10_13_x86_64.whl (466.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.11.17-cp312-cp312-macosx_10_13_universal2.whl (707.9 kB view details)

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

aiohttp-3.11.17-cp311-cp311-win_amd64.whl (444.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.11.17-cp311-cp311-win32.whl (417.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiohttp-3.11.17-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

aiohttp-3.11.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.11.17-cp311-cp311-macosx_11_0_arm64.whl (458.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.11.17-cp311-cp311-macosx_10_9_x86_64.whl (472.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.11.17-cp311-cp311-macosx_10_9_universal2.whl (713.3 kB view details)

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

aiohttp-3.11.17-cp310-cp310-win_amd64.whl (443.2 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.11.17-cp310-cp310-win32.whl (418.4 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.11.17-cp310-cp310-macosx_11_0_arm64.whl (458.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.11.17-cp310-cp310-macosx_10_9_x86_64.whl (472.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.11.17-cp310-cp310-macosx_10_9_universal2.whl (713.0 kB view details)

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

aiohttp-3.11.17-cp39-cp39-win_amd64.whl (443.5 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.11.17-cp39-cp39-win32.whl (418.7 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

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

aiohttp-3.11.17-cp39-cp39-macosx_11_0_arm64.whl (458.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.11.17-cp39-cp39-macosx_10_9_x86_64.whl (472.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.11.17-cp39-cp39-macosx_10_9_universal2.whl (713.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.17.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17.tar.gz
Algorithm Hash digest
SHA256 2bf3ff374c3abd7a5c6c8de3ad7ed91e0e89a8b53353314c93766c3add5a208a
MD5 d820b16fc336c0d059e634db69960741
BLAKE2b-256 b0559840882e8b8f83014169646638d985ba2a2b55983f6d1f4246a050221373

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 438.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71a1fd6421056980280fe490f211fe0f0c385271b42fb1440c4abcd891b2133a
MD5 5cc6af770aee6964a8375d68bec6473a
BLAKE2b-256 e8d8e50b7b1d35ce4dc3bbc9640c62d7981256a2a6e7d1322b71b5636db585e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp313-cp313-win32.whl
  • Upload date:
  • Size: 411.6 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8962df1a29794f3204863ea6d93001a3d77cb1c4ee87f8c7683fe3fb6ec27373
MD5 d83e0e38c1cea12cba95311d5bc4a3b1
BLAKE2b-256 094d675b9e12004080f755f1fa9a1b95c272243d941dd3de62ccb5fbeac06b80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4a92e2a228829c67f3c633a2329a8b85ed6cfe3b25047f48b4d51e92a655a87
MD5 6c201ddc80f18f214fb0d3f10144274e
BLAKE2b-256 9342eb376f807227f65f3c487ff8dbdce09ea70b1164974f40045f361d6e3fde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4f1c1db9470c9aa1ab45cee80b4b7db51fa4cfc01abc5e648d991266e676ac90
MD5 b985dc9ef1c52c76e2769a98b700a1ab
BLAKE2b-256 7d8566670c3dd894333f8d810a606b6d3c8db23c174f3551c489577137df7e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2bf50db2e855226363aecb78353593987bf9a0b593434814b4a1f09586a116a4
MD5 44d41edaf8b5b750228690a8d039fa8e
BLAKE2b-256 50cbc0eda24e879c91a366cfd40a0f3b29311438649e9e9c97eaae182b0cd5e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a118aae8008e209f100396bbd2d1d798aaa43651202c65cd2664680dd27aa061
MD5 d9e80b01eff9b033b842ed416c186e78
BLAKE2b-256 ba4c0ea917e018eddd6632b4cfe214b4a019c04d0b01af487de790215f847207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ada2a986cdec0caa51ee787b838441eeece50cd1ea075053fef51e0c995114b4
MD5 81d569720d5b94175d4ca59a1f0c345b
BLAKE2b-256 d244e664550e74269c942df97c6b0385157d0916f66ed3bb4ea579c420b7e1db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3d4a383935ed1e39109e43535230b7e61781348fc2cf52c1006ae663dcbbc73
MD5 a77ee1d8dfd06e8974a605e8c33550fa
BLAKE2b-256 de4e3d9b9da2bfb9607cf73684d9895a3623baa9ec8d4fa27b70a4c9c1db3aab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20c68e4411440209fd64abfb27ff5e09e5a59a0fab4dbd07808e762e6fada670
MD5 299d53840c9f0349ede8b917ab3cd9ec
BLAKE2b-256 af26f9aa166e4f313c5a3d9fe06ded39f6b0c17711477637345f1c4ea52ddc42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e4d134b96448c955e3e29e4026ee499441182bfd92f293accfa1cf1525a061b
MD5 85afa8690139cbc725a5b89e18e8f22a
BLAKE2b-256 9979f6195fb6a26bbbbadad1518a5dbda47e93a9cac1d975e8b450d3304864f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3197cd39307747127f7a3489b6aca4286c7613e8509e65f46702831136257d12
MD5 8aca376542911ad87c86b88d9ac83f22
BLAKE2b-256 18013c6252b4f47fba339f2c69eb2ff473c9e2afd2704a093eca3826223525bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f24d2b1f2516953b001736f82be7cf5d3234fc90e82a2d9a33ad8cdffb28f4c5
MD5 b6eb136b91e43352f88a76db5e6badee
BLAKE2b-256 53468833377bd3aed9ec274ca125d823f724c9f0c47e4e9766cb71c7f42a24e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1131f61afa4a4800fd5770ab13b1587bf4d07a0a561ee6f30f58c2300675ec3b
MD5 9d4fdbcf99aa2db04edc4324627b31f2
BLAKE2b-256 e2d4c78d3de080083bf51baf5e91927b69331c77a09c0a140f695be684c67a7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0966f0c14be863cb51e0aa56366c45a2331f46a64347b49a0e9c687c72d43c1
MD5 4c9c205a2c5a4cb7660fc639a31b56d8
BLAKE2b-256 549d520e3523d3a0a2968d47392af174dc2394baf038e0646b964430dd24db9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0d119d1e6d5bf930b285285aec70d66b7a7efa4914231441c7f606e86ca17e2
MD5 aab82725a17209f9da84d0bdf9e30834
BLAKE2b-256 ae105b90ad6d5783ddf35fe8a2d431e8d50e149d8c5781ad526ef2396a84bc25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 57de66477af1176b3d25058594000eb32d21f82039909ef1bf865fe666c8c0ea
MD5 29bbb12eb46703787d0bcaff2bdb4ded
BLAKE2b-256 fd82ea4b01d140656845dc856b64232f4a7ae2782d1ac8344a09777c61765661

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 439.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c43311c94200a63e31b62e82872c6dd43fe904cbb8f161c830bfe65c17583658
MD5 715803ab9436dab82a84ddbb469d8677
BLAKE2b-256 15e9e49add95584796db0e2ba47f92c436fcf9ef6832287ffa618ec1f50c8233

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp312-cp312-win32.whl
  • Upload date:
  • Size: 412.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93a7cfacf28887ddebd9c697d590002e8d52ac51acb4faf0d00abe1bb791339e
MD5 043f678a28c7e7ed2c1c69855d9551ed
BLAKE2b-256 32efcaa85915b5b24217d5c5af055a2e4c49305c10e6e156aeb357fee854dde2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a3fb727360af3e94667e243cb21cf5069c0df9a70adcc81751136d53f526bc6
MD5 16a21142d9443cd5c07c14fd1efbb312
BLAKE2b-256 d0dd9f5413125d9bc980bbddb817956e7d6dda5d05eba506064926bb0e017574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 05eb25fa6e5495b3866a3b974fe3b214d5a0b6bb862cd54b7ec4d997948aa12c
MD5 9864b78d58d67199d9d727f9520688cc
BLAKE2b-256 6eaba92f7e92bc0726abff6e99e0aa69ac2e3ad52f601be6045ed29607fe3761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6e615b94364f7ea0dc95922c351e106ffb2eded09ffd7a7102ab2e202d17bdaa
MD5 964e9eafcb5302a277fa3faa3cb2a296
BLAKE2b-256 9713654ddfb8b767550452ffdf2eb9e46a1f61e2b90e258fff12a08f766902e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 003c955924fa7d1b100599ce4f5da3ce68bd151b81b5a8c18369ba585766ed31
MD5 fb60db47dc2ac0b7e6b79b0a47ca4864
BLAKE2b-256 c488a0a54936ec50412c4237301b1136d8231b356c07ad48b74f79bd71af105a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80ba863e1e1055577f27a484b0f002b31297432016262d5f9d2dab5c6d21c5ad
MD5 b2f6152189872ac9aaf25c9c7daa8073
BLAKE2b-256 1325d53b5b4399cc3c32c1b2ee24600b97dba3e1295be7a8042f5def2a2c11f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dba68088ecdd16b306513463f7e295699bc52bb09573d2bc3ff3d0e7bdc34ff
MD5 7124b95d70df2adf14264565b2a2ccdf
BLAKE2b-256 f52d739de8317f38fe35a165b111fb569c1b7ae73f22289b1a75c88ea7bbea74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b830715cb818efc4fbd7b9631661e3498b068f23680982d7586103333b0d4df
MD5 0ca96d8fa4ef7a433d0fa53da21e5813
BLAKE2b-256 c76e945de945f649c10dc90fa393717f07ba916a58d1b32362899ef791b47d5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aded01d2bda55b2f62a361a2d55f8c9c04436eff6220e579ca7fb72cfe68b48a
MD5 ab004a7b7234aeefe7e611f9cdf7aa5f
BLAKE2b-256 0d4fb94332627a22b3ed06307a51c8d15fc2f15e16fa132f7c1695b4a3ac54c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 626dffeeeee34f2b5a327df05d6cb48ecfabcb141d56590d3c779accedc62d88
MD5 e4899930d1e099bfb348a3fac81001a5
BLAKE2b-256 d936d5f2de5a145b6687a4eed5a4672a0e2819ce099437b2125cb7a5be076c5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9eac3842f3258c77d35bfe93356fedbc6e5e943fd056534be71b694289b36973
MD5 897383b6bbbb1540148cc91548494249
BLAKE2b-256 ad39f4958cc97292d867ddd194072019245cdd36039ec96436a787de76d78f14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ac7ac3d0a7ab5ce1076c788640274f594397603381747b3d4142beec004c44a
MD5 b28b2b99558219ad9f255a1df60b80eb
BLAKE2b-256 92168fd4198a0627d2874ae51b978493f7e0e55486982de7d7d21dd489507761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2620d1cbeb688094045f06000b5b6127df2eb768cae07d95137b0e998cd6ce04
MD5 fda3b1b342292c57175c962e0ee5b7e2
BLAKE2b-256 c3ada58380f8175866c53beee8f6b04b417c1270f67e3666c9e03f7bd85bd176

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2bd255da118f96446567d9870621a07b8f36b1130826b07f2910ef1aeb4a85c0
MD5 f40f86b194aa569a09575fd0f255e8b3
BLAKE2b-256 b9a07ac32c95a935077bdbe8d27163cc1746aecc2a7314d9426501e64e98b10b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 03ee8b587cc7bd345552235cd7117097c169f3a531a7239dc9a3c6b6db1cf46a
MD5 8a6eb6f8033086c6b8546fec5db36fa0
BLAKE2b-256 867a6a6b64b8a7af91d7e1ce7a759413753db7399c57492fd9ce18dfb976a584

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 444.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5e245caba8842f176ecc8ae1fde1ef0c89669614cb379c32e069cd0b96b3547f
MD5 1e0152fd420f3117667eb8fe84e112bc
BLAKE2b-256 6de1a2f6d6fc9569031956026e0a19a9dffd0500993712755160fa4a72099993

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp311-cp311-win32.whl
  • Upload date:
  • Size: 417.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 07e2c1c06c15cb95721670a69f3cbb1dae22b0914de6e362dba2228b6dd675e7
MD5 b75ac8f1dd930be2061301428c94ad58
BLAKE2b-256 55cc886e6f826d72c27fffcaaa9e651bfcf36f62ae780d59d2d9c27a80b9a322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23120ea57904cfd920791afe5a780151cd8e99b039c35c38bb8a0d3e35af049b
MD5 6f47d40adcb3d4830e34ca4351578286
BLAKE2b-256 8d2750829cf136e8e5e03a031d86a435ae9b4edda284d778471cbf6e73be9969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a689fca65127d7599cfb0123c7dccb32d7eebe009d20bfa69ce93aff143dbbc1
MD5 2092b44f0521d4ad7f3aa81088db1c2e
BLAKE2b-256 f4b4a3cc4d12a0d45b21a01d7c5dde85365e32822148d0812f1a30c6d2f924cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b51c9b38d904957ff2df58bf72874634d674b228c03f5d48e143996a8da5c819
MD5 9d02fc651f0c247e6770f1b0c522ab66
BLAKE2b-256 0a69e1d06fa604ad36331a8c23cc208813b6218c0cc6cc3096535ccf461555dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e70a3672c734e6d792903e7b22d2f514ed8cbfa27c4a8e9171191da5c7d3c3b1
MD5 764010acac88e3eb3aae44a28ec7f383
BLAKE2b-256 0b1d2ffd8ab5b939760540492b5f851bf704f629b35bdd1c096dd6f2a738dca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 398a021a7207a04960a8165f53f59e0c0b7cd54fe69ab7f0895f105e391a7964
MD5 1dfaa691f287243cd3eb18024268f07b
BLAKE2b-256 caec323e492663fb6b8fffde4da6d4fd9f0b831524e9b0a352afa6631171abe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 612a5bc4e56a52986e89f1439fca86b765682613fdebc71c01de46736b33bd34
MD5 fc5ab608e2c3732f60272b0d7dc32648
BLAKE2b-256 e5abe4b6dc7524fb8558cbf8b4fee8675c8f66cfbd39476dc0a5ebe5006c47b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf30c77f5ddb1ccf568881f9076d0840f0b9a9c94dabe03126474768f951a48a
MD5 fce49a300f188dbba4bdc625d5d2adc4
BLAKE2b-256 27fc0f5e300ea580fc3b4c46e1c7a66a1f4049dec3b6ad54db957da3cf31803e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dad404c74f4aad90b181db75d79338e87c852e638460003c78bdfd92c07fff3b
MD5 6c80c44b1755e94732318bc9be2d6d32
BLAKE2b-256 95b7e5cd954c2545692ca8e4e9a0f6065c894b410e6111aafbc687a3b4eb6ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01e9d930cea36405ccdcde45921a29c7e22e0b581fc570f630d72a5bcac56c8c
MD5 3fa0038ace98b96732dd2f84b6651e99
BLAKE2b-256 e6df9a2a6971f648df4cc48947c435729e3ab5d7005ec104fbb2c2712d15bd3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb8e28f9b3b15ab1d840a7ffe0d7b63ee8bb01ef68c611f2ddbd5f96fa5f0e53
MD5 943cb185a620b4a804a3fa7d62aaae16
BLAKE2b-256 4807e120ade53354917a3ffcb1358cccfab39390b8d7c6f24f5706eddd300580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1987db5cb7e2c21693047f8f3c07df7bed3cb13403e5df5f684fe6a8478eff85
MD5 026e1147c97c825714bce2d0068362c4
BLAKE2b-256 5d1062a04bf9c34e7cf6b52dec345b7427fdf0d122b27a8bf6c219d1f013b221

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26ac39d318507a7fb79b4eee31d7f92a7198d22c0d26d2c2dee4c945172ee509
MD5 c060ef617300d12599ac042a054a1e18
BLAKE2b-256 934214ef46cc41fe78b3782afe6d0ed6ab0219dea90f4ca4df30425c755d4d36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 127696d62e66badc3b554832343df031fd0012f080002d9074cfb735ce9c677e
MD5 98ee8042c82689f04a16804516713af4
BLAKE2b-256 ebfccf0c2b9d4707efea5fe7823e6758c2df9e0886ecf9eb1073cc39d6461433

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9c10ede918e0d1edf9ef75cedb9ab303e509d0616020ecea42c427e3694a4d63
MD5 e7a054c954d107f12f9af505c3e4b363
BLAKE2b-256 1adf53b96706dddb18c2e6ed618ddfa46d9f1dbcf1f21f0f5a81dd87186cc79e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 443.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c08753a2c4d6f9175b234fd1ee227fc68a3c95ee09d52447af25b1ecb99d5886
MD5 2bf40fda4035596704ac86db1cf78dfd
BLAKE2b-256 942f5244d8dcd10a5df501b83b21615d04e14c634cf9cd2e417eb4e755e570d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp310-cp310-win32.whl
  • Upload date:
  • Size: 418.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 de96c4aba1506b225cf1ab750fdd60e1f8d9d23add6431150a43fbef0542fe18
MD5 ebe471dc66c699352a940c34bb4a43bc
BLAKE2b-256 dc459a5558f13786d1c33fb8417014900f1ebb71cb4d54f47076eb060dee3009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7903749414023ad7d0a46cd4816d9ac99be7552635a0b3deae0b2c9a51d0cfa6
MD5 0e988d0f1fa235829d0f55d28ae3501e
BLAKE2b-256 6f7f4f8786345e43a2981646421b014d532cd380bb6c586145b39715850635a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0e93c46b7cc7476130bd396d63eafc6c458e74eddd1a1c65a2ac8e4bdb4cf1d1
MD5 e413e2cec41c5ce84cacfde95e225251
BLAKE2b-256 9b032c1f1d96853817b5c5a39b44d14e7a6295b0dfb3ad9dbf785ec412fc8916

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3e27e266396db6d6eee76769f66b356020b22e7ae8d7d4d47c9ced6bc53c62a0
MD5 ccaf6a96e590c39c864f7bc8f9234af9
BLAKE2b-256 2e5e26f05da3d492eb97a7ecec0c762f08f4a1a53f52c2a4216ce2b927a73414

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b62134921162627482056379740998c54d51412a7e678a4d84a5510d6f634a7
MD5 410fe2019656cba68b01cbc0b2bb93bb
BLAKE2b-256 3515784aa373e64e0920163fdf1908ad6c46d81bedd6b7f9d4f49eab5aa19aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd89c4399ca67c0d2939211ecf8415747f4e2d855580f1efd9598eff433499ac
MD5 978f3181c06a2346acb96c3fd2ce0fc9
BLAKE2b-256 c1cb8ab616ffe14105f090c568ffe89e4646dd3fd16abd1fdebbc63c6f9c31c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e40eceff6ca85d68d07ebd1533f13727261d17b4bef7a518a6882b8448c83106
MD5 36e223e822b871b8b7c60bc7f45cdc6e
BLAKE2b-256 385b56b72cc4b56dccbf7e561f3b6cb9981c194bee2d0e0646d41653691d0f96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d9130c4380bb02a308c79a25d9b82e642e21bea5ad453553f35f2d490ac47bd
MD5 47fb840250e5d3e2903e5e1a78f58562
BLAKE2b-256 135e1df9241e77b2cada1ee571677dfbf1f631aacaf276451e279a1855eae4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3875dd6571d2709697835cf5e4e7e0e1bf1d6e3aeec21b7766bbd50d9a97b8a3
MD5 b541ba93940796325bd6fbed082e37ba
BLAKE2b-256 30e02f9984b86c63e54b2f46dca330ea715cdcf40b49c9514cb818ae2380d345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 562b47fa14712e47ae7b6cf31998a4c888c35a904845e27f5ec2fc51401304e7
MD5 f05a262fbf0f1261d9baa5ffd8e87ae8
BLAKE2b-256 e887c82c17c3b88bfa5510bda324081375d0218e970426497033e492e22273f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d5f480d3e35a139f0bd31d9037047cc18d6f362d1b06243b694a40f1a658ba8
MD5 abdc261f072faa62419773fd2bfca2b7
BLAKE2b-256 00802ce00b08190cf9b54fe5dc9cf66e41254c0c8115a98d39d71f2d3a0ff5b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71ee4844e4680e69d2acb462073b147a4c2dd6813c30c61979399feddc63b322
MD5 67e3b248ded434685072d4acde1d6985
BLAKE2b-256 aa0bdc4705191910b0a0c60cd05b155ecba772709f5f53462e5b9f07fe99a51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78568d883e7cabf31f110a87bb02cee70e32bbb419eed974027c26ac6be18add
MD5 31af0eafd46657ee9b37a75da8621c87
BLAKE2b-256 8ad0ed95bf72c169039667d1c4c7f7e03dd5aa4ce3de60c586148be218d276ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c73371bb91660eb7971336883eb05ebf3e912a0a183f5029fe6200285dd858e
MD5 4a5bbf4b43fd2cba6ca7ab3157fd21ce
BLAKE2b-256 457368a56e353b873e452189a34566dcdd74e647d2dfc248aae1df5c32110e29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 67eaabe31454d68503ddc10d805944187787b4351600aedda1724f75f3f20b6c
MD5 15b3647109467830de4b2e874a44577b
BLAKE2b-256 75c07a00bb67823ab240388efa02ad736331dbd022f1c6d9becb7af2264baf5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e72767d1798770acdf27a20c523b1cd29973e487f6397b181ef0e7c583acb46
MD5 6e3bc758c9a4a3110daec0ed55163567
BLAKE2b-256 7f7696fb35bbc7a86ee940f279df7c31f8b39125bb777f6160d8ed4c870034d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.17-cp39-cp39-win32.whl
  • Upload date:
  • Size: 418.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e3bddefb2cae68be01186c89d9a41024ae929aaf9e30b65d8977b719185f7e17
MD5 d388e01be4cbd01eae981b9b0269f679
BLAKE2b-256 2cd07c783a2a69734623e517d333da7fca12673cc14873c69ea3fef884e85399

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac9f6cdb02e7376060c4243f17a402b8d895747d788426ef3b8799e7a28a4ee0
MD5 91b19e25c5b106b512d90d817ad2139e
BLAKE2b-256 c7b0fa6fa754af1d12a17053d7ebd52bc48a7627a852be2f8980197f918b6211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 79ae28f78f0a4a18a308d61647e3ee9cc1e641cb3ad5531db059eff68f3ee63c
MD5 43a5dac768e03dc13f234580b91ce1f5
BLAKE2b-256 85dab3a92ed984e65e9f390a174529e6cff4020ec1f1e0f866ee5c3545524f0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c2e376d7f3fedb770106c40546d5f76a61e5ba3d4dac42cc60a8062022586cc
MD5 a6b30490dcf7677cb74097e34f78dc9a
BLAKE2b-256 40c348bb584cb143a40b48f6f276b5babf9de9f4af77d2dae172a2b9368141c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adb504bdf0691101c7c4544e25545df467ea7239097ca6c67d01b27e500037b5
MD5 2a13b8030eb14d5428a758a6ef370f7b
BLAKE2b-256 96061a239444eb90ca4bfae98dfbf259ca348f005b60ea0b614154b91ed54b22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 da0bee7635aa12036269ef8a13fd0fa5549ccfe5eb9ef6c3f0ad7cc574f12e5e
MD5 bf249cc83f6845d996caad4bd6d73ed1
BLAKE2b-256 ff9364334028f9055a13ad303b1d2bda0e091187c445310a24062dca1457f58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_armv7l.whl:

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56a5acb7a715a1a1ad8ed424f7cbb2dc2950dc8b20ae2d83c2117ba5751223b1
MD5 aa2fac77e7742026f751441b1103a209
BLAKE2b-256 0f3d1982a1692796f9711393a40b5d14718efdb501a2240de40a9f1094755563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb753ca25397eac1d38c7112c7b910feabef198d4e411aa5957857795681a25
MD5 3b1bfcff9db4fdeadc2297dcf5bd3bd8
BLAKE2b-256 5ed576f3180bb8b9d14e8cb726e1d2ec73b083b01c3ea18b7f0bd2743e5c6f6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e4122d386a1695aee05f49a8bb4ff69c0e74b2b9db80a4d8157165327d07103
MD5 7676511855f622be9aa4918f058562cf
BLAKE2b-256 2c686c466ad3dbe3d014bcb0949b3cc6bc64639866769c4e5a5ea0b429ee397b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ff5a5c9afbdaff09bf7b4a0655f1084d6c9f562fc33df8c0f7a785480405cf8
MD5 366988f78c051c719aaf5a920793e22f
BLAKE2b-256 109aa66235f7f250ed322011015f721086c5cf84665c30caf30b43c42aaf0d70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dffeb59c7f3414fd4da384cf76428c59b754e80d4b10d8e5d7018bed135d554d
MD5 7780465b9405ffcd48462993a930bdbc
BLAKE2b-256 84168954be372edd7992105890fe5576cfc8d18e38be9addee375eedc98267a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f29e0f47656b826d74034b612c11709842c20ebe373e398812208b84ec57f79a
MD5 d614fe27bc75260c98dc79264029a00b
BLAKE2b-256 862125fde72776d1abda66eb1361c48b33a6f6f733ced06631fda2999c6a8c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 919b411fae2376d5b78901949e556bd646e5de16e0631aed5a1b00ad55b5ec40
MD5 6608bf43f225714e0ad6ab92e3524016
BLAKE2b-256 197c9f4b651d1595ca912e5377372d097eb84452d016766e19f5ff6fa3463173

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7874d1e620159c18c99b87f37c45a8c30abbba2678d31ae3409d7c00c995f62
MD5 ec2a52fe5a2c15db40d09497b3d4a032
BLAKE2b-256 13f59ec4e4ad92ef31030933a60406e0b7d68479808f77f0a155d6899f8dccc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.17-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be033aceea6a8cd03cc2e2b6936beb485bb6b71907ad5a0e78bb942857b4f468
MD5 6e3bafdf253f7f983b220a1bad645c46
BLAKE2b-256 9c324306553bc1fd7c778f493ac73d7b386c19d9be9bbef402c610460231b04a

See more details on using hashes here.

Provenance

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

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

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

Supported by

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