Skip to main content

Async http client/server framework (asyncio)

Reason this release was yanked:

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

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiohttp-3.11.13-cp313-cp313-win_amd64.whl (436.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.11.13-cp313-cp313-win32.whl (410.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.11.13-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.13-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.13-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.13-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.13-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.13-cp313-cp313-macosx_11_0_arm64.whl (453.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.11.13-cp313-cp313-macosx_10_13_x86_64.whl (461.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.11.13-cp313-cp313-macosx_10_13_universal2.whl (698.4 kB view details)

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

aiohttp-3.11.13-cp312-cp312-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.11.13-cp312-cp312-win32.whl (411.7 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.11.13-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.13-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.13-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.13-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.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (456.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.11.13-cp312-cp312-macosx_10_13_x86_64.whl (464.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.11.13-cp312-cp312-macosx_10_13_universal2.whl (705.1 kB view details)

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

aiohttp-3.11.13-cp311-cp311-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.11.13-cp311-cp311-win32.whl (416.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

aiohttp-3.11.13-cp311-cp311-musllinux_1_2_i686.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.11.13-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.13-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.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.13-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.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (456.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.11.13-cp311-cp311-macosx_10_9_x86_64.whl (468.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.11.13-cp311-cp311-macosx_10_9_universal2.whl (709.0 kB view details)

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

aiohttp-3.11.13-cp310-cp310-win_amd64.whl (442.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.11.13-cp310-cp310-win32.whl (417.0 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.11.13-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.13-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.13-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.13-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.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (456.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.11.13-cp310-cp310-macosx_10_9_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.11.13-cp310-cp310-macosx_10_9_universal2.whl (708.9 kB view details)

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

aiohttp-3.11.13-cp39-cp39-win_amd64.whl (442.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.11.13-cp39-cp39-win32.whl (417.3 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.11.13-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.13-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.13-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.13-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.13-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.13-cp39-cp39-macosx_11_0_arm64.whl (456.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.11.13-cp39-cp39-macosx_10_9_x86_64.whl (469.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.11.13-cp39-cp39-macosx_10_9_universal2.whl (709.8 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.13.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.13.tar.gz
Algorithm Hash digest
SHA256 8ce789231404ca8fff7f693cdce398abf6d90fd5dae2b1847477196c243b1fbb
MD5 f4ba6290d7a4d5ccb4cfe22730743879
BLAKE2b-256 b33fc4a667d184c69667b8f16e0704127efc5f1e60577df429382b4d95fd381e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 436.5 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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5ceb81a4db2decdfa087381b5fc5847aa448244f973e5da232610304e199e7b2
MD5 fa4fe6017b6cf33fd05508d1957d054d
BLAKE2b-256 9c54ebb815bc0fe057d8e7a11c086c479e972e827082f39aeebc6019dd4f0862

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 410.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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 507ab05d90586dacb4f26a001c3abf912eb719d05635cbfad930bdbeb469b36c
MD5 054de775ee694bbd0f29b25bc38b3e10
BLAKE2b-256 0361425397a9a2839c609d09fdb53d940472f316a2dbeaa77a35b2628dae6284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b992778d95b60a21c4d8d4a5f15aaab2bd3c3e16466a72d7f9bfd86e8cea0d4b
MD5 2dd6fafcea20bdeb3aabf51e68d39dd6
BLAKE2b-256 7acd68030356eb9a7d57b3e2823c8a852709d437abb0fbff41a61ebc351b7625

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 02876bf2f69b062584965507b07bc06903c2dc93c57a554b64e012d636952654
MD5 88ca11be634e251e76b94f745564da41
BLAKE2b-256 8a2e99672181751f280a85e24fcb9a2c2469e8b1a0de1746b7b5c45d1eb9a999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2a4a13dfbb23977a51853b419141cd0a9b9573ab8d3a1455c6e63561387b52ff
MD5 ca4d8fddbc3ce90332a2849c083aee39
BLAKE2b-256 f5b33f99b6f0a9a79590a7ba5655dbde8408c685aa462247378c977603464d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7f27eec42f6c3c1df09cfc1f6786308f8b525b8efaaf6d6bd76c1f52c6511f6a
MD5 31393dcb5a36385b1892748c8e58d4ac
BLAKE2b-256 126a3242a35100de23c1e8d9e05e8605e10f34268dee91b00d9d1e278c58eb80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a8a6bc19818ac3e5596310ace5aa50d918e1ebdcc204dc96e2f4d505d51740c
MD5 460417ef31772399d3a0374882fdafbb
BLAKE2b-256 7185d13c3ea2e48a10b43668305d4903838834c3d4112e5229177fbcc23a56cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fe4eb0e7f50cdb99b26250d9328faef30b1175a5dbcfd6d0578d18456bac567
MD5 ab618714abf9e4f9793dc8cae8648d56
BLAKE2b-256 049491e0d1ca0793012ccd927e835540aa38cca98bdce2389256ab813ebd64a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e83fb1991e9d8982b3b36aea1e7ad27ea0ce18c14d054c7a404d68b0319eebb
MD5 ba44558f2638500d13d43bd468f67cd3
BLAKE2b-256 0b589da09291e19696c452e7224c1ce8c6d23a291fe8cd5c6b247b51bcda07db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7d474c5c1f0b9405c1565fafdc4429fa7d986ccbec7ce55bc6a330f36409cad
MD5 0b23395601c08190494859e3ecbb0fc8
BLAKE2b-256 274f3a0b6160ce663b8ebdb65d1eedff60900cd7108838c914d25952fe2b909f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b5b95787335c483cd5f29577f42bbe027a412c5431f2f80a749c80d040f7ca9f
MD5 229884e201df16da94d531f8c89e499c
BLAKE2b-256 19eda68c3ab2f92fdc17dfc2096117d1cfaa7f7bdded2a57bacbf767b104165b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba40b7ae0f81c7029583a338853f6607b6d83a341a3dcde8bed1ea58a3af1df9
MD5 93435e7835c5204b71effc966b3ce0f8
BLAKE2b-256 2f1cb8010e4d65c5860d62681088e5376f3c0a940c5e3ca8989cae36ce8c3ea8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4586a68730bd2f2b04a83e83f79d271d8ed13763f64b75920f18a3a677b9a7f0
MD5 ecce0eb54afc3b4178128e52a44dc4b5
BLAKE2b-256 3d186184f2bf8bbe397acbbbaa449937d61c20a6b85765f48e5eddc6d84957fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93a1f7d857c4fcf7cabb1178058182c789b30d85de379e04f64c15b7e88d66fb
MD5 9b6542274b66f493764c2ed10650e790
BLAKE2b-256 961a8143c48a929fa00c6324f85660cb0f47a55ed9385f0c1b72d4b8043acf8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fbfef0666ae9e07abfa2c54c212ac18a1f63e13e0760a769f70b5717742f3ece
MD5 5036e597f0309eee1f0a4c0d1b6c466a
BLAKE2b-256 84e75d88514c9e24fbc8dd6117350a8ec4a9314f4adae6e89fe32e3e639b0c37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9862d077b9ffa015dbe3ce6c081bdf35135948cb89116e26667dd183550833d1
MD5 7a61ca0d2bf9db41c64365b96436fd6e
BLAKE2b-256 87dc7d58d33cec693f1ddf407d4ab975445f5cb507af95600f137b81683a18d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.1 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47dc018b1b220c48089b5b9382fbab94db35bef2fa192995be22cbad3c5730c8
MD5 00da4b2bb613350a6c5c8789371b25a1
BLAKE2b-256 65a913e69ad4fd62104ebd94617f9f2be58231b50bb1e6bac114f024303ac23b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 411.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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7104d5b3943c6351d1ad7027d90bdd0ea002903e9f610735ac99df3b81f102ee
MD5 324b9d7dce9efa008c8dd3cb52756f9f
BLAKE2b-256 fdcf7d29db4e5c28ec316e5d2ac9ac9df0e2e278e9ea910e5c4205b9b64c2c42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afcb6b275c2d2ba5d8418bf30a9654fa978b4f819c2e8db6311b3525c86fe637
MD5 d04182719ca95f8e42d93ddcf6803ac5
BLAKE2b-256 a0bba634cbdd97ce5d05c2054a9a35bfc32792d7e4f69d600ad7e820571d095b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5194143927e494616e335d074e77a5dac7cd353a04755330c9adc984ac5a628e
MD5 464788ea8453444a8b804d047cc084d6
BLAKE2b-256 b8321084e65da3adfb08c7e1b3e94f3e4ded8bd707dee265a412bc377b7cd000

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e06cf4852ce8c4442a59bae5a3ea01162b8fcb49ab438d8548b8dc79375dad8a
MD5 fd6c059c8cb56c799d61eba09ec3217c
BLAKE2b-256 a7dba463700ac85b72f8cf68093e988538faaf4e865e3150aa165cf80ee29d6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b5b37c863ad5b0892cc7a4ceb1e435e5e6acd3f2f8d3e11fa56f08d3c67b820
MD5 9375980954c78961f59bd8d58bdbee97
BLAKE2b-256 718789b979391de840c5d7c34e78e1148cc731b8aafa84b6a51d02f44b4c66e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aa36c35e94ecdb478246dd60db12aba57cfcd0abcad43c927a8876f25734d496
MD5 9b13f299f4222a8fc3fcd1fa4c124f3d
BLAKE2b-256 50c71cb46b72b1788710343b6e59eaab9642bd2422f2d87ede18b1996e0aed8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5724cc77f4e648362ebbb49bdecb9e2b86d9b172c68a295263fa072e679ee69d
MD5 dc1c9deda17e267fa41c9fd7eba0ae23
BLAKE2b-256 a4f9d9c181750980b17e1e13e522d7e82a8d08d3d28a2249f99207ef5d8d738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 669dd33f028e54fe4c96576f406ebb242ba534dd3a981ce009961bf49960f117
MD5 819d2bed7439c857f55095c47e6d4a66
BLAKE2b-256 fffe0f650a8c7c72c8a07edf8ab164786f936668acd71786dd5885fc4b1ca563

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9229d8613bd8401182868fe95688f7581673e1c18ff78855671a4b8284f47bcb
MD5 50b66c74ae8450d62b4ae5e552425500
BLAKE2b-256 d9de35a5ba9e3d21ebfda1ebbe66f6cc5cbb4d3ff9bd6a03e5e8a788954f8f27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d33851d85537bbf0f6291ddc97926a754c8f041af759e0aa0230fe939168852b
MD5 929a8929841421d92e4137ad870d20f2
BLAKE2b-256 24ed84fce816bc8da39aa3f6c1196fe26e47065fea882b1a67a808282029c079

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c929f9a7249a11e4aa5c157091cfad7f49cc6b13f4eecf9b747104befd9f56f2
MD5 cc3eab446b2158946d64a5aa0151d85e
BLAKE2b-256 7f618e2f2af2327e8e475a2b0890f15ef0bbfd117e321cce1e1ed210df81bbac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c1b20a1ace54af7db1f95af85da530fe97407d9063b7aaf9ce6a32f44730778
MD5 3a1418e7d25b35a61271e70feb9c29cb
BLAKE2b-256 a820185378b3483f968c6303aafe1e33b0da0d902db40731b2b2b2680a631131

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55789e93c5ed71832e7fac868167276beadf9877b85697020c46e9a75471f55f
MD5 97f3df26322d9c1d71a7e1d5d21c3605
BLAKE2b-256 223a8773ea866735754004d9f79e501fe988bdd56cfac7fdecbc8de17fc093eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b77ee42addbb1c36d35aca55e8cc6d0958f8419e458bb70888d8c69a4ca833d
MD5 e9556e3e33d6fea6035fb1f2d883764f
BLAKE2b-256 3b06f7df1fe062d16422f70af5065b76264f40b382605cf7477fa70553a9c9c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2eabb269dc3852537d57589b36d7f7362e57d1ece308842ef44d9830d2dc3c90
MD5 45b532c1823a9d67f9df24d86aecb037
BLAKE2b-256 9aa96657664a55f78db8767e396cc9723782ed3311eb57704b0a5dacfa731916

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 442.9 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b73a2b139782a07658fbf170fe4bcdf70fc597fae5ffe75e5b67674c27434a9f
MD5 d543b2b74b04d2d1c75ab80bd1c37c0a
BLAKE2b-256 2923d98d491ca073ee92cc6a741be97b6b097fb06dacc5f95c0c9350787db549

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 416.8 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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42d689a5c0a0c357018993e471893e939f555e302313d5c61dfc566c2cad6185
MD5 6204da14f84f00f48abbfb257179efd4
BLAKE2b-256 a14f67729187e884b0f002a0317d2cc7962a5a0416cadc95ea88ba92477290d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 af55314407714fe77a68a9ccaab90fdb5deb57342585fd4a3a8102b6d4370080
MD5 986b61607ba58ad7c30dc167cd14948b
BLAKE2b-256 3204aafeda6b4ed3693a44bb89eae002ebaa74f88b2265a7e68f8a31c33330f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 35cda4e07f5e058a723436c4d2b7ba2124ab4e0aa49e6325aed5896507a8a42e
MD5 d588354fc46b6c51da4459183df31ef0
BLAKE2b-256 40c9bd950dac0a4c84d44d8da8d6e0f9c9511d45e02cf908a4e1fca591f46a25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ab915a57c65f7a29353c8014ac4be685c8e4a19e792a79fe133a8e101111438e
MD5 c9dcd127afd475f5d086856c8ea3bc7e
BLAKE2b-256 868d4d887df5e732cc70349243c2c9784911979e7bd71c06f9e7717b8a896f75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c97be90d70f7db3aa041d720bfb95f4869d6063fcdf2bb8333764d97e319b7d0
MD5 f62a2bdd46ecd268ffee88861cb8176b
BLAKE2b-256 914530ca0c3ba5bbf7592eee7489eae30437736f7ff912eaa04cfdcf74edca8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a08ad95fcbd595803e0c4280671d808eb170a64ca3f2980dd38e7a72ed8d1fea
MD5 e67280b99e4adb74a5b02a842f0decd0
BLAKE2b-256 b024acb24571815b9a86a8261577c920fd84f819178c02a75b05b1a0d7ab83fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01816f07c9cc9d80f858615b1365f8319d6a5fd079cd668cc58e15aafbc76a54
MD5 172388624d1b1c4026c08dbfc3b80744
BLAKE2b-256 042f31769ed8e29cc22baaa4005bd2749a7fd0f61ad0f86024d38dff8e394cf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f6b2c5b4a4d22b8fb2c92ac98e0747f5f195e8e9448bfb7404cd77e7bfa243f
MD5 4d99667eefc88e8c468629bd1ab2807d
BLAKE2b-256 95defaba18a0af09969e10eb89fdbd4cb968bea95e75449a7fa944d4de7d1d2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 718d5deb678bc4b9d575bfe83a59270861417da071ab44542d0fcb6faa686636
MD5 44e35940ad3822416c09015e67d49e29
BLAKE2b-256 a311325145c6dce8124b5caadbf763e908f2779c14bb0bc5868744d1e5cb9cb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6070bcf2173a7146bb9e4735b3c62b2accba459a6eae44deea0eb23e0035a23
MD5 1b574e45c787a71adb50f36652eff663
BLAKE2b-256 3a4478fd174509c56028672e5dfef886569cfa1fced0c5fd5c4480426db19ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4bea08a6aad9195ac9b1be6b0c7e8a702a9cec57ce6b713698b4a5afa9c2e33
MD5 dcde3faad147fc46a776d9d22e369022
BLAKE2b-256 ba16229d36ed27c2bb350320364efb56f906af194616cc15fc5d87f3ef21dbef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 747ec46290107a490d21fe1ff4183bef8022b848cf9516970cb31de6d9460088
MD5 811eaaec4c7dea8d9abd09ce22b7b2fe
BLAKE2b-256 ea530437c46e960b79ae3b1ff74c1ec12f04bf4f425bd349c8807acb38aae3d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f55d0f242c2d1fcdf802c8fabcff25a9d85550a4cf3a9cf5f2a6b5742c992839
MD5 1aa73766964f8cfa66fa780a6b6f87a5
BLAKE2b-256 d91c56906111ac9d4dab4baab43c89d35d5de1dbb38085150257895005b08bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f81cba651db8795f688c589dd11a4fbb834f2e59bbf9bb50908be36e416dc760
MD5 ed8f12080399a1562e02a0f12eade797
BLAKE2b-256 d8befc7c436678ffe547d038319add8e44fd5e33090158752e5c480aed51a8d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6b35aab22419ba45f8fc290d0010898de7a6ad131e468ffa3922b1b0b24e9d2e
MD5 d62cf52ded863ac31f464e035acfff42
BLAKE2b-256 3b938e012ae31ff1bda5d43565d6f9e0bad325ba6f3f2d78f298bd39645be8a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 442.4 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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90d571c98d19a8b6e793b34aa4df4cee1e8fe2862d65cc49185a3a3d0a1a3996
MD5 5a6e6907aecfd20e79069148c5973bd8
BLAKE2b-256 b02db6be8e7905ceba64121268ce28208bafe508a742c1467bf636a41d152284

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 417.0 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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 00c8ac69e259c60976aa2edae3f13d9991cf079aaa4d3cd5a49168ae3748dee3
MD5 e58f199ad4265febb010d225533ee2e5
BLAKE2b-256 8a03b1b552d1112b72da94bd1f9f5efb8adbcbbafaa8d495fc0924cd80493f17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf1f31f83d16ec344136359001c5e871915c6ab685a3d8dee38e2961b4c81730
MD5 8b5f7cafbda822df6a46481ce57e2e46
BLAKE2b-256 7046ef8a02cb171d4779ca1632bc8ac0c5bb89729b091e2a3f4b895d688146b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 967b93f21b426f23ca37329230d5bd122f25516ae2f24a9cea95a30023ff8283
MD5 7439984b5fdeccc2939b40ec058937ab
BLAKE2b-256 a4fd492dec170df6ea57bef4bcd26374befdc170b10ba9ac7f51a0214943c20a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 64815c6f02e8506b10113ddbc6b196f58dbef135751cc7c32136df27b736db09
MD5 de44f8b7c399d727f6facdbc7ff2ea7e
BLAKE2b-256 198910eb37351dd2b52928a54768a70a58171e43d7914685fe3feec8f681d905

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ad8f1c19fe277eeb8bc45741c6d60ddd11d705c12a4d8ee17546acff98e0802
MD5 b42196248764fb4ad6f397589eacb5d6
BLAKE2b-256 0daee45491c8ca4d1e30ff031fb25b44842e16c326f8467026c3eb2a9c167608

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66047eacbc73e6fe2462b77ce39fc170ab51235caf331e735eae91c95e6a11e4
MD5 b9e74936946f614b4591aa7881595732
BLAKE2b-256 11c603bdcb73a67a380b9593d52613ea88edd21ddc4ff5aaf06d4f807dfa2220

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e4dd9c34ec7b8b121854eb5342bac8b02aa03075ae8618b6210a06bbb8a115
MD5 335dfd3e290a78b4a466a3001600ff41
BLAKE2b-256 20b0b2ad9d24fe85db8330034ac45dde67799af40ca2363c0c9b30126e204ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa48dac27f41b36735c807d1ab093a8386701bbf00eb6b89a0f69d9fa26b3671
MD5 966f51496ad5063d995c27129b02285d
BLAKE2b-256 fa9ed0bbdc82236c3fe43b28b3338a13ef9b697b0f7a875b33b950b975cab1f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce10ddfbe26ed5856d6902162f71b8fe08545380570a885b4ab56aecfdcb07f4
MD5 4cbdd1ab62e1a7de05a1f8640ee3b1b5
BLAKE2b-256 2d8eda1a20fbd2c961f824dc8efeb8d31c32ed4af761c87de83032ad4c4f5237

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b88aca5adbf4625e11118df45acac29616b425833c3be7a05ef63a6a4017bfdb
MD5 45baaf4ff0982b582fc76be84be37062
BLAKE2b-256 7510c1e6d59030fcf04ccc253193607b5b7ced0caffd840353e109c51134e5e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28a772757c9067e2aee8a6b2b425d0efaa628c264d6416d283694c3d86da7689
MD5 69ff15a3152b97b219eb496fd10069b3
BLAKE2b-256 18bced0dce45da90d4618ae14e677abbd704aec02e0f54820ea3815c156f0759

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89ce611b1eac93ce2ade68f1470889e0173d606de20c85a012bfa24be96cf867
MD5 4a86dc9a36bc96d3dcf87f341d04a0e5
BLAKE2b-256 ed14248ed0385baeee854e495ca7f33b48bb151d1b226ddbf1585bdeb2301fbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9840be675de208d1f68f84d578eaa4d1a36eee70b16ae31ab933520c49ba1325
MD5 648d74a9ac77b60bb235f4a4aec7eb94
BLAKE2b-256 7693159d3a2561bc6d64d32f779d08b17570b1c5fe55b985da7e2df9b3a4ff8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e64ca2dbea28807f8484c13f684a2f761e69ba2640ec49dacd342763cc265ef
MD5 9da69fabe428570cf967dd065d872a17
BLAKE2b-256 9924417e5ab7074f5c97c9a794b6acdc59f47f2231d43e4d5cec06150035e61e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a4fe27dbbeec445e6e1291e61d61eb212ee9fed6e47998b27de71d70d3e8777d
MD5 0a78a5683a0a7418988229344211a8e8
BLAKE2b-256 f24918bde4fbe1f98a12fb548741e65b27c5f0991c1af4ad15c86b537a4ce94a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 442.6 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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82c249f2bfa5ecbe4a1a7902c81c0fba52ed9ebd0176ab3047395d02ad96cfcb
MD5 7ff2ed9d28ac820c7d9be77c01c8afac
BLAKE2b-256 caa1c7c0cdccbad4678dfb51f4d4f22dc6aacf8e3cdd6b99071170246106c364

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.11.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 417.3 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.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 684eea71ab6e8ade86b9021bb62af4bf0881f6be4e926b6b5455de74e420783a
MD5 7f2507d3b63b186c772d4e7fed7317e0
BLAKE2b-256 fc40427dafa3664413d29c5b3546aaacafb33e7725b1f6e15ce54cb857183c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a86dc177eb4c286c19d1823ac296299f59ed8106c9536d2b559f65836e0fb2c6
MD5 2013d106590155ec284fa0a7ef23a828
BLAKE2b-256 3abb0629e93af6317b277285a472d8e7aa92fa4e654dca00cf70f89f1788bd89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 85fa0b18558eb1427090912bd456a01f71edab0872f4e0f9e4285571941e4090
MD5 c9c23f7115d93d43673af665eff4c7d6
BLAKE2b-256 3ff3c7e502478b8a181a85ac1524a6755dbb41959ee82edb681981733dcac87e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7836587eef675a17d835ec3d98a8c9acdbeb2c1d72b0556f0edf4e855a25e9c1
MD5 5b443852aa7636b4c34bfdb91994cb8d
BLAKE2b-256 cc964ad817e79b0a3cc5089b818fccaf724d7d179f5840bc43fa538a2506f396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe7065e2215e4bba63dc00db9ae654c1ba3950a5fff691475a32f511142fcddb
MD5 1ccb7cf55d89f4a55bf900ea65608c29
BLAKE2b-256 32cc3ae7e23762b28fa9f794d89fde21111c5af85a2ec081a15812c312febfa7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25de43bb3cf83ad83efc8295af7310219af6dbe4c543c2e74988d8e9c8a2a917
MD5 6572e56b18f884efb6780e7a76998ffa
BLAKE2b-256 fc275d1636c675f4f5ad0a8a68874d78fe6049041274d4d5da682f4ffee78097

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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.13-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa1fb1b61881c8405829c50e9cc5c875bfdbf685edf57a76817dfb50643e4a1a
MD5 e0d9fcac68d95a46511509684855e8c5
BLAKE2b-256 739b26da500b8de48a88b287936fae66d4f52306daedc6b6a273e97f479db685

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b27961d65639128336b7a7c3f0046dcc62a9443d5ef962e3c84170ac620cec47
MD5 d5872906e4403b11026bf9d4d9858b92
BLAKE2b-256 f4fd2d1934d22b89de0d6b9dbb30c310996e440fffc08f95b083d91b6a7916c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2b25b2eeb35707113b2d570cadc7c612a57f1c5d3e7bb2b13870fe284e08fc0
MD5 005bb42c9cc356ee1623607c85e24b6e
BLAKE2b-256 a6ff3bc33d6ab85046ecc3319817c1f473061cd97caba5a1cd154be181ab56ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1982c98ac62c132d2b773d50e2fcc941eb0b8bad3ec078ce7e7877c4d5a2dce7
MD5 5e57b3a986f83dce7f166679be1248df
BLAKE2b-256 2301ef79aeb337702bbfd034b1d1a6357dca4a270ebe2b0ff80bb8ba90851ea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baae005092e3f200de02699314ac8933ec20abf998ec0be39448f6605bce93df
MD5 d4d8595eee3bcded92a0643095804b8e
BLAKE2b-256 1dd5ab9ad5242c7920e224cbdc1c9bec62a79f75884049ccb86edb64225e4c0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a01fe9f1e05025eacdd97590895e2737b9f851d0eb2e017ae9574d9a4f0b6252
MD5 e5092d3b0a13ab2b667a0c6f268b37ee
BLAKE2b-256 3501b13fe945b056a910fe98f659e6533b4a9e7f08f414f6c5447a9726df81e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9eb7e5764abcb49f0e2bd8f5731849b8728efbf26d0cac8e81384c95acec3f
MD5 3ecc95576385cba9644352b39813f88e
BLAKE2b-256 8cabd6257596cad471675419673d53f6e409d9eb7acfa7e36dfb77e8b65504b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e271beb2b1dabec5cd84eb488bdabf9758d22ad13471e9c356be07ad139b3012
MD5 d54371d7927f4cc4f9bf5739203795ee
BLAKE2b-256 cae6d7ee65a814615fb6de79d124bb72be4e84f9d68485751c5279994554f061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.11.13-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 51c3ff9c7a25f3cad5c09d9aacbc5aefb9267167c4652c1eb737989b554fe278
MD5 d702196b5f830f2961fc69bdecac5559
BLAKE2b-256 8688c80c0972d35cdce2a62905a2053fc483685bf5f3930f1ab269ec006e1e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.13-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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page