Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version Downloads count Latest Read The Docs Codspeed.io status for aiohttp

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


Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org LFX Health Score

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.13.5.tar.gz (7.9 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.13.5-cp314-cp314t-win_amd64.whl (505.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.13.5-cp314-cp314t-win32.whl (471.8 kB view details)

Uploaded CPython 3.14tWindows x86

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.13.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp314-cp314t-macosx_11_0_arm64.whl (516.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.13.5-cp314-cp314t-macosx_10_13_x86_64.whl (512.9 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

aiohttp-3.13.5-cp314-cp314t-macosx_10_13_universal2.whl (778.8 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ universal2 (ARM64, x86-64)

aiohttp-3.13.5-cp314-cp314-win_amd64.whl (464.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.13.5-cp314-cp314-win32.whl (438.1 kB view details)

Uploaded CPython 3.14Windows x86

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp314-cp314-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.13.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp314-cp314-macosx_11_0_arm64.whl (499.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.13.5-cp314-cp314-macosx_10_13_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

aiohttp-3.13.5-cp314-cp314-macosx_10_13_universal2.whl (745.7 kB view details)

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

aiohttp-3.13.5-cp313-cp313-win_amd64.whl (458.9 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.13.5-cp313-cp313-win32.whl (432.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp313-cp313-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp313-cp313-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp313-cp313-macosx_11_0_arm64.whl (497.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.13.5-cp313-cp313-macosx_10_13_x86_64.whl (496.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.13.5-cp313-cp313-macosx_10_13_universal2.whl (742.9 kB view details)

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

aiohttp-3.13.5-cp312-cp312-win_amd64.whl (460.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.13.5-cp312-cp312-win32.whl (433.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp312-cp312-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp312-cp312-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp312-cp312-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp312-cp312-macosx_11_0_arm64.whl (500.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.13.5-cp312-cp312-macosx_10_13_x86_64.whl (499.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.13.5-cp312-cp312-macosx_10_13_universal2.whl (748.9 kB view details)

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

aiohttp-3.13.5-cp311-cp311-win_amd64.whl (462.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.13.5-cp311-cp311-win32.whl (439.1 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.13.5-cp311-cp311-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp311-cp311-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

aiohttp-3.13.5-cp311-cp311-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.13.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp311-cp311-macosx_11_0_arm64.whl (501.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.13.5-cp311-cp311-macosx_10_9_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.13.5-cp311-cp311-macosx_10_9_universal2.whl (757.5 kB view details)

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

aiohttp-3.13.5-cp310-cp310-win_amd64.whl (462.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.13.5-cp310-cp310-win32.whl (439.5 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl (497.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl (503.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl (750.5 kB view details)

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

aiohttp-3.13.5-cp39-cp39-win_amd64.whl (463.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.13.5-cp39-cp39-win32.whl (440.3 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.5-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.13.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

aiohttp-3.13.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiohttp-3.13.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

aiohttp-3.13.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

aiohttp-3.13.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

aiohttp-3.13.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiohttp-3.13.5-cp39-cp39-macosx_11_0_arm64.whl (499.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.13.5-cp39-cp39-macosx_10_9_x86_64.whl (504.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.13.5-cp39-cp39-macosx_10_9_universal2.whl (752.9 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5.tar.gz
Algorithm Hash digest
SHA256 9d98cc980ecc96be6eb4c1994ce35d28d8b1f5e5208a23b421187d1209dbb7d1
MD5 eb22a738fd03b7b009286e048a015780
BLAKE2b-256 779a152096d4808df8e4268befa55fba462f440f14beab85e8ad9bf990516918

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5.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.13.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.13.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 505.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 18a2f6c1182c51baa1d28d68fea51513cb2a76612f038853c0ad3c145423d3d9
MD5 2bacbbe8f41c2c5a42f5e4b8f7089030
BLAKE2b-256 62292f8418269e46454a26171bfdd6a055d74febf32234e474930f2f60a17145

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: aiohttp-3.13.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 471.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 9a0f4474b6ea6818b41f82172d799e4b3d29e22c2c520ce4357856fced9af2f8
MD5 349e82a38d786caf5c6c87721326bae4
BLAKE2b-256 7edf57ba7f0c4a553fc2bd8b6321df236870ec6fd64a2a473a8a13d4f733214e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b13560160d07e047a93f23aaa30718606493036253d5430887514715b67c9d9
MD5 ac1f5696bab789523c003b228eb7d78f
BLAKE2b-256 78b715fb7a9d52e112a25b621c67b69c167805cb1f2ab8f1708a5c490d1b52fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a8aca50daa9493e9e13c0f566201a9006f080e7c50e5e90d0b06f53146a54500
MD5 7d3d0c90fbaa9e2c73f3e3caa6be44aa
BLAKE2b-256 17d6fd518d668a09fd5a3319ae5e984d4d80b9a4b3df4e21c52f02251ef5a32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 157826e2fa245d2ef46c83ea8a5faf77ca19355d278d425c29fda0beb3318037
MD5 263049db7c48877958d0753cb68e0d72
BLAKE2b-256 590cbfed7f30662fcf12206481c2aac57dedee43fe1c49275e85b3a1e1742294

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_riscv64.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.13.5-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2994be9f6e51046c4f864598fd9abeb4fba6e88f0b2152422c9666dcd4aea9c6
MD5 d140d03d8cb06f525baf5660064ac260
BLAKE2b-256 0b63fb8d0ad63a0b8a99be97deac8c04dacf0785721c158bdf23d679a87aa99e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c564dd5f09ddc9d8f2c2d0a301cd30a79a2cc1b46dd1a73bef8f0038863d016b
MD5 67dd5357d31eb32d17129ae438b575f5
BLAKE2b-256 20a5f671e5cbec1c21d044ff3078223f949748f3a7f86b14e34a365d74a5d21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cf81fe010b8c17b09495cbd15c1d35afbc8fb405c0c9cf4738e5ae3af1d65be
MD5 b09d8c8271e79e04d4681e4d34c3725e
BLAKE2b-256 253c734c878fb43ec083d8e31bf029daae1beafeae582d1b35da234739e82ee7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0494a01ca9584eea1e5fbd6d748e61ecff218c51b576ee1999c23db7066417d8
MD5 07bdb50aff6560beffa7d0ddbeacef2a
BLAKE2b-256 0eb457712dfc6f1542f067daa81eb61da282fab3e6f1966fca25db06c4fc62d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 898703aa2667e3c5ca4c54ca36cd73f58b7a38ef87a5606414799ebce4d3fd3a
MD5 5a774fe6ee7faedadfe3f1f069ccd9b7
BLAKE2b-256 661df31ec3f1013723b3babe3609e7f119c2c2fb6ef33da90061a705ef3e1bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 53fc049ed6390d05423ba33103ded7281fe897cf97878f369a527070bd95795b
MD5 b3ce54eefdcbd21a5a43e96efdb6ad07
BLAKE2b-256 c03f2c1e2f5144cefa889c8afd5cf431994c32f3b29da9961698ff4e3811b79a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6f1cbf0c7926d315c3c26c2da41fd2b5d2fe01ac0e157b78caefc51a782196cf
MD5 63758f15ed7eecfeda8e167d9986755f
BLAKE2b-256 33b9cd6fe579bed34a906d3d783fe60f2fa297ef55b27bb4538438ee49d4dc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 330f5da04c987f1d5bdb8ae189137c77139f36bd1cb23779ca1a354a4b027800
MD5 769a3ea307bfb5c64bdf4d06736baca0
BLAKE2b-256 b7e3a7ad633ca1ca497b852233a3cce6906a56c3225fb6d9217b5e5e60b7419d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cf20a8d6868cb15a73cab329ffc07291ba8c22b1b88176026106ae39aa6df0f
MD5 18e3bd93881ed1fd425bc5a1db5aaca2
BLAKE2b-256 79b3ca078f9f2fa9563c36fb8ef89053ea2bb146d6f792c5104574d49d8acb63

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20058e23909b9e65f9da62b396b77dfa95965cbe840f8def6e572538b1d32e36
MD5 8c1474b48b2fa4c14ebfc33f90639399
BLAKE2b-256 bba6aa109a33671f7a5d3bd78b46da9d852797c5e665bfda7d6b373f56bff2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fee86b7c4bd29bdaf0d53d14739b08a106fdda809ca5fe032a15f52fae5fe254
MD5 a5903deca06427a13d7564c526b4e898
BLAKE2b-256 04fb377aead2e0a3ba5f09b7624f702a964bdf4f08b5b6728a9799830c80041e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1efb06900858bb618ff5cee184ae2de5828896c448403d51fb633f09e109be0a
MD5 d09d7d0cbf366890aba95a3aeccae147
BLAKE2b-256 7911c27d9332ee20d68dd164dc12a6ecdef2e2e35ecc97ed6cf0d2442844624b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314t-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.13.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.13.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 464.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f85c6f327bf0b8c29da7d93b1cabb6363fb5e4e160a32fa241ed2dce21b73162
MD5 5afc97228d30eb347228210cde0046b3
BLAKE2b-256 224deaedff67fc805aeba4ba746aec891b4b24cebb1a7d078084b6300f79d063

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiohttp-3.13.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 438.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b20df693de16f42b2472a9c485e1c948ee55524786a0a34345511afdd22246f3
MD5 d0e86cb82693197a654166b6f3780b7e
BLAKE2b-256 6ccf9e1795b4160c58d29421eafd1a69c6ce351e2f7c8d3c6b7e4ca44aea1a5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20ae0ff08b1f2c8788d6fb85afcb798654ae6ba0b747575f8562de738078457b
MD5 c2b2e55146a11ac0aba8b2a189b52b7a
BLAKE2b-256 c12bcce5b0ffe0de99c83e5e36d8f828e4161e415660a9f3e58339d07cce3006

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f92995dfec9420bb69ae629abf422e516923ba79ba4403bc750d94fb4a6c68c1
MD5 c6332d701895c15c7caf2d4dcb146549
BLAKE2b-256 daa66cc25ed8dfc6e00c90f5c6d126a98e2cf28957ad06fa1036bd34b6f24a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fceedde51fbd67ee2bcc8c0b33d0126cc8b51ef3bbde2f86662bd6d5a6f10ec5
MD5 9f85e95e4ae8e23fc1ea9545b3b91638
BLAKE2b-256 8a669d308ed71e3f2491be1acb8769d96c6f0c47d92099f3bc9119cada27b357

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_riscv64.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.13.5-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c632ce9c0b534fbe25b52c974515ed674937c5b99f549a92127c85f771a78772
MD5 fc2f59a88540e2277f34290dc0c6dc10
BLAKE2b-256 d878ea0ae5ec8ba7a5c10bdd6e318f1ba5e76fcde17db8275188772afc7917a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a79a6d399cef33a11b6f004c67bb07741d91f2be01b8d712d52c75711b1e07c7
MD5 ab7d4c118bf8b212737b47c0e5ffe595
BLAKE2b-256 d8408ebc6658d48ea630ac7903912fe0dd4e262f0e16825aa4c833c56c9f1f56

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e27ea05d184afac78aabbac667450c75e54e35f62238d44463131bd3f96753d
MD5 2261d68c66dd330bdf62ab261c7aa9db
BLAKE2b-256 c3201e9e6650dfc436340116b7aa89ff8cb2bbdf0abc11dfaceaad8f74273a10

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c974fb66180e58709b6fc402846f13791240d180b74de81d23913abe48e96d94
MD5 0df61b94ca923aaed5b7eacd38f0e95a
BLAKE2b-256 ce75ee1fd286ca7dc599d824b5651dad7b3be7ff8d9a7e7b3fe9820d9180f7db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 241a94f7de7c0c3b616627aaad530fe2cb620084a8b144d3be7b6ecfe95bae3b
MD5 fa6b527f318b2de09edfe19e3eaed992
BLAKE2b-256 bdc9989f4034fb46841208de7aeeac2c6d8300745ab4f28c42f629ba77c2d916

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 df6104c009713d3a89621096f3e3e88cc323fd269dbd7c20afe18535094320be
MD5 a327e36887b5cc2c82ccb317e42fecb7
BLAKE2b-256 c7ef720e639df03004fee2d869f771799d8c23046dec47d5b81e396c7cda583a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0f7a18f258d124cd678c5fe072fe4432a4d5232b0657fca7c1847f599233c83a
MD5 20731409e8e5207ba19e9ca0f89e81c5
BLAKE2b-256 2373bcee1c2b79bc275e964d1446c55c54441a461938e70267c86afaae6fba27

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 10a75acfcf794edf9d8db50e5a7ec5fc818b2a8d3f591ce93bc7b1210df016d2
MD5 593631c5e9f4ff889e7524f610f604ca
BLAKE2b-256 450cc091ac5c3a17114bd76cbf85d674650969ddf93387876cf67f754204bd77

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ecc26751323224cf8186efcf7fbcbc30f4e1d8c7970659daf25ad995e4032a56
MD5 4ecab7fe2ca67ba430db9919cebb085a
BLAKE2b-256 0a33a8362cb15cf16a3af7e86ed11962d5cd7d59b449202dc576cdc731310bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 756c3c304d394977519824449600adaf2be0ccee76d206ee339c5e76b70ded25
MD5 9890134696956165f72172b907d8f26a
BLAKE2b-256 9b91cc8cc78a111826c54743d88651e1687008133c37e5ee615fee9b57990fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7e5dc4311bd5ac493886c63cbf76ab579dbe4641268e7c74e48e774c74b6f2be
MD5 80669c2fc02ebe06ffd3930b57c57538
BLAKE2b-256 13fe8a2efd7626dbe6049b2ef8ace18ffda8a4dfcbe1bcff3ac30c0c7575c20b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp314-cp314-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.13.5-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 eb4639f32fd4a9904ab8fb45bf3383ba71137f3d9d4ba25b3b3f3109977c5b8c
MD5 fe06590da861f530a5bdb527aed1b832
BLAKE2b-256 5dce46572759afc859e867a5bc8ec3487315869013f59281ce61764f76d879de

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 69f571de7500e0557801c0b51f4780482c0ec5fe2ac851af5a92cfce1af1cb83
MD5 1d6c3fc11896a51d5e46b26a2272f2f1
BLAKE2b-256 c01bac685a8882896acf0f6b31d689e3792199cfe7aba37969fa91da63a7fa27

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 329f292ed14d38a6c4c435e465f48bebb47479fd676a0411936cc371643225cc
MD5 b616f6206ecb99b558d9b08b53b49fdf
BLAKE2b-256 e485fc8601f59dfa8c9523808281f2da571f8b4699685f9809a228adcc90838d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d6d44a5b48132053c2f6cd5c8cb14bc67e99a63594e336b0f2af81e94d5530c
MD5 281a330605e88557a97bd8e71dd2910f
BLAKE2b-256 01a462f05a0a98d88af59d93b7fcac564e5f18f513cb7471696ac286db970d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ec707059ee75732b1ba130ed5f9580fe10ff75180c812bc267ded039db5128c6
MD5 ecec2d750245810221b4f867ff417c41
BLAKE2b-256 57ae76177b15f18c5f5d094f19901d284025db28eccc5ae374d1d254181d33f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 999802d5fa0389f58decd24b537c54aa63c01c3219ce17d1214cbda3c2b22d2d
MD5 94e916455de71d14f49adc9e97a2a77b
BLAKE2b-256 0b934ca8ee2ef5236e2707e0fd5fecb10ce214aee1ff4ab307af9c558bda3b37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9b16c653d38eb1a611cc898c41e76859ca27f119d25b53c12875fd0474ae31a8
MD5 de7449db60addd0b95cdd8eb72515404
BLAKE2b-256 e4b6c8534862126191a034f68153194c389addc285a0f1347d85096d349bbc15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 676e5651705ad5d8a70aeb8eb6936c436d8ebbd56e63436cb7dd9bb36d2a9a46
MD5 4f6d6e7d1115a3efc68a7669367a003f
BLAKE2b-256 98fcbfb437a99a2fcebd6b6eaec609571954de2ed424f01c352f4b5504371dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7becdf835feff2f4f335d7477f121af787e3504b48b449ff737afb35869ba7bb
MD5 f8ce814bebcbe57d8465c45af6d63b1d
BLAKE2b-256 eca69b3e91eb8ae791cce4ee736da02211c85c6f835f1bdfac0594a8a3b7018c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 fe6970addfea9e5e081401bcbadf865d2b6da045472f58af08427e108d618540
MD5 e046bbd34137d158f130e12081018219
BLAKE2b-256 fb563f653d7f53c89669301ec9e42c95233e2a0c0a6dd051269e6e678db4fdb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3df334e39d4c2f899a914f1dba283c1aadc311790733f705182998c6f7cae665
MD5 3fb70818434128e8a636f69e8d9f6e8e
BLAKE2b-256 f0d2e2f77eef1acb7111405433c707dc735e63f67a56e176e72e9e7a2cd3f493

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d97f93fdae594d886c5a866636397e2bcab146fd7a132fd6bb9ce182224452f8
MD5 58097d1b0e3a5af4daa682cf7f50c650
BLAKE2b-256 eb40333ca27fb74b0383f17c90570c748f7582501507307350a79d9f9f3c6eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c719f65bebcdf6716f10e9eff80d27567f7892d8988c06de12bbbd39307c6e3a
MD5 a4b264b72c0bc07a1219f3ecc03648be
BLAKE2b-256 d456ea11a9f01518bd5a2a2fcee869d248c4b8a0cfa0bb13401574fa31adf4d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e5e5f7debc7a57af53fdf5c5009f9391d9f4c12867049d509bf7bb164a6e295b
MD5 87775886905c57e79e320a7b68e7b2e7
BLAKE2b-256 b5e54e161f84f98d80c03a238671b4136e6530453d65262867d989bbe78244d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 57653eac22c6a4c13eb22ecf4d673d64a12f266e72785ab1c8b8e5940d0e8090
MD5 2a3e5a62ab32dff299a12853730444dd
BLAKE2b-256 3b86b7c870053e36a94e8951b803cb5b909bfbc9b90ca941527f5fcafbf6b0fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a84792f8631bf5a94e52d9cc881c0b824ab42717165a5579c760b830d9392ac9
MD5 4dd2bfb9bc323913d65498540fc0190e
BLAKE2b-256 9cf50fb20fb49f8efdcdce6cd8127604ad2c503e754a8f139f5e02b01626523f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4bb6bf5811620003614076bdc807ef3b5e38244f9d25ca5fe888eaccea2a9832
MD5 8a9ef23dd86fc855628d298620078bb5
BLAKE2b-256 57004b7b70223deaebd9bb85984d01a764b0d7bd6526fcdc73cca83bcbe7243e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 a5029cc80718bbd545123cd8fe5d15025eccaaaace5d0eeec6bd556ad6163d61
MD5 ef4b049aefa09f69cea03c35f647d7ad
BLAKE2b-256 78e9d76bf503005709e390122d34e15256b88f7008e246c4bdbe915cd4f1adce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 110e448e02c729bcebb18c60b9214a87ba33bac4a9fa5e9a5f139938b56c6cb1
MD5 54dc83c52622999bcde0806f524508a4
BLAKE2b-256 aacaeadf6f9c8fa5e31d40993e3db153fb5ed0b11008ad5d9de98a95045bed84

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8bd3ec6376e68a41f9f95f5ed170e2fcf22d4eb27a1f8cb361d0508f6e0557f3
MD5 de605deb1babb1d31b98467d8251be57
BLAKE2b-256 98decf2f44ff98d307e72fb97d5f5bbae3bfcb442f0ea9790c0bf5c5c2331404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 888e78eb5ca55a615d285c3c09a7a91b42e9dd6fc699b166ebd5dee87c9ccf14
MD5 45a67df36bfe0e8cba9efd1d29c67d79
BLAKE2b-256 84637749337c90f92bc2cb18f9560d67aa6258c7060d1397d21529b8004fcf6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 31cebae8b26f8a615d2b546fee45d5ffb76852ae6450e2a03f42c9102260d6fe
MD5 1b9043462d020ee0c93e9db3cb09ac60
BLAKE2b-256 30e64a799798bf05740e66c3a1161079bda7a3dd8e22ca392481d7a7f9af82a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 02e048037a6501a5ec1f6fc9736135aec6eb8a004ce48838cb951c515f32c80b
MD5 3219e5bbc3068b5d63b2e9df8ce787b9
BLAKE2b-256 08d541eebd16066e59cd43728fe74bce953d7402f2b4ddfdfef2c0e9f17ca274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 df23d57718f24badef8656c49743e11a89fd6f5358fa8a7b96e728fda2abf7d3
MD5 3d0884bac769b09a2be567cdfcf90c6a
BLAKE2b-256 1871901db0061e0f717d226386a7f471bb59b19566f2cae5f0d93874b017271f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7c35b0bf0b48a70b4cb4fc5d7bed9b932532728e124874355de1a0af8ec4bc88
MD5 23c16471cd0b44ea1bf2b6ca13ac12d8
BLAKE2b-256 48457dfba71a2f9fd97b15c95c06819de7eb38113d2cdb6319669195a7d64270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 327cc432fdf1356fb4fbc6fe833ad4e9f6aacb71a8acaa5f1855e4b25910e4a9
MD5 e5c5dac39d19a8565b9b40e6421b5bbc
BLAKE2b-256 41db073e4ebe00b78e2dfcacff734291651729a62953b48933d765dc513bf798

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 33add2463dde55c4f2d9635c6ab33ce154e5ecf322bd26d09af95c5f81cfa286
MD5 efc6b08e597c4f522c4bde679e7fc815
BLAKE2b-256 3104d3f8211f273356f158e3464e9e45484d3fb8c4ce5eb2f6fe9405c3273983

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b18f31b80d5a33661e08c89e202edabf1986e9b49c42b4504371daeaa11b47c1
MD5 d202de0f9547b152b01163c3bcb69a90
BLAKE2b-256 57d88d44036d7eb7b6a8ec4c5494ea0c8c8b94fbc0ed3991c1a7adf230df03bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b38765950832f7d728297689ad78f5f2cf79ff82487131c4d26fe6ceecdc5f8e
MD5 4158c456abcf55284231dbce1ea8675b
BLAKE2b-256 989db65ec649adc5bccc008b0957a9a9c691070aeac4e41cea18559fef49958b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c2b2355dc094e5f7d45a7bb262fe7207aa0460b37a0d87027dcf21b5d890e7d5
MD5 c45ac45eea1e7b778cce4b75e446b31f
BLAKE2b-256 49a024409c12217456df0bae7babe3b014e460b0b38a8e60753d6cb339f6556d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 55b3bdd3292283295774ab585160c4004f4f2f203946997f49aac032c84649e9
MD5 d892c9e27f706911d537bc85468162ed
BLAKE2b-256 f0d33c6d610e66b495657622edb6ae7c7fd31b2e9086b4ec50b47897ad6042a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a60eaa2d440cd4707696b52e40ed3e2b0f73f65be07fd0ef23b6b539c9c0b0b4
MD5 c6dd968bc34066c54cd90e7d5d657245
BLAKE2b-256 6784c9ecc5828cb0b3695856c07c0a6817a99d51e2473400f705275a2b3d9239

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab2899f9fa2f9f741896ebb6fa07c4c883bfa5c7f2ddd8cf2aafa86fa981b2d2
MD5 442039e178e4c0d5664fe6c49aa23ac1
BLAKE2b-256 29477be41556bfbb6917069d6a6634bb7dd5e163ba445b783a90d40f5ac7e3a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15c933ad7920b7d9a20de151efcd05a6e38302cbf0e10c9b2acb9a42210a2416
MD5 35d1ec016c08233efcf18e970c73cadd
BLAKE2b-256 f51b428a7c64687b3b2e9cd293186695affc0e1e54a445d0361743b231f11066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 023ecba036ddd840b0b19bf195bfae970083fd7024ce1ac22e9bba90464620e9
MD5 b6fd9cd6fca5ac9d2b949f09de24b769
BLAKE2b-256 be6f353954c29e7dcce7cf00280a02c75f30e133c00793c7a2ed3776d7b2f426

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3a4834f221061624b8887090637db9ad4f61752001eae37d56c52fddade2dc8
MD5 deb17d2bf28686ae6372713f695593c8
BLAKE2b-256 c0438c7163a596dab4f8be12c190cf467a1e07e4734cf90eebb39f7f5d53fc6a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 77dfa48c9f8013271011e51c00f8ada19851f013cde2c48fca1ba5e0caf5bb06
MD5 39c12ab5702de19d4ac3f58933ad59b8
BLAKE2b-256 8806e4a2e49255ea23fa4feeb5ab092d90240d927c15e47b5b5c48dff5a9ce29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7996023b2ed59489ae4762256c8516df9820f751cf2c5da8ed2fb20ee50abab3
MD5 efd07025882c3b58bcd2a24980bbed49
BLAKE2b-256 e5675b3ac26b80adb20ea541c487f73730dc8fa107d632c998f25bbbab98fcda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ca9ac61ac6db4eb6c2a0cd1d0f7e1357647b638ccc92f7e9d8d133e71ed3c6ac
MD5 ba9a20197f0b8c7d694c17e97051e4e1
BLAKE2b-256 defc76f80ef008675637d88d0b21584596dc27410a990b0918cb1e5776545b5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8b14eb3262fad0dc2f89c1a43b13727e709504972186ff6a99a3ecaa77102b6c
MD5 c18298257d40264b3ec0d21cd28ba055
BLAKE2b-256 a619edabed62f718d02cff7231ca0db4ef1c72504235bc467f7b67adb1679f48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f1162a1492032c82f14271e831c8f4b49f2b6078f4f5fc74de2c912fa225d51d
MD5 e85c677cc982b959182ea410ea1ec554
BLAKE2b-256 6dc5705a3929149865fc941bcbdd1047b238e4a72bcb215a9b16b9d7a2e8d992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26d2f8546f1dfa75efa50c3488215a903c0168d253b75fba4210f57ab77a0fb8
MD5 4f5bc61b5937089f0fcab17a52a2df50
BLAKE2b-256 6e555564e7ae26d94f3214250009a0b1c65a0c6af4bf88924ccb6fdab901de28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60869c7ac4aaabe7110f26499f3e6e5696eae98144735b12a9c3d9eae2b51a49
MD5 b571745f56c8a59750c7783636327d0b
BLAKE2b-256 6f4127392a61ead8ab38072105c71aa44ff891e71653fe53d576a7067da2b4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 aa6d0d932e0f39c02b80744273cd5c388a2d9bc07760a03164f229c8e02662f6
MD5 c2d643ef53ff8a896ed39792cd2a1797
BLAKE2b-256 f678a38f8c9105199dd3b9706745865a8a59d0041b6be0ca0cc4b2ccf1bab374

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a807cabd5115fb55af198b98178997a5e0e57dead43eb74a93d9c07d6d4a7dc
MD5 79bb7b0316679d9d2796909a72737718
BLAKE2b-256 7ea50521aa32c1ddf3aa1e71dcc466be0b7db2771907a13f18cddaa45967d97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2294172ce08a82fb7c7273485895de1fa1186cc8294cfeb6aef4af42ad261174
MD5 2cee4086d9e2f6716df4776490662221
BLAKE2b-256 5306ecbc63dc937192e2a5cb46df4d3edb21deb8225535818802f210a6ea5816

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c9883051c6972f58bfc4ebb2116345ee2aa151178e99c3f2b2bbe2af712abd13
MD5 484a9f0b24f60471cfde890d33a2ddb7
BLAKE2b-256 6bf3ed17a6f2d742af17b50bae2d152315ed1b164b07a5fd5cc1754d99e4dfa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 fb0540c854ac9c0c5ad495908fdfd3e332d553ec731698c0e29b1877ba0d2ec6
MD5 a022b9b728903829337a02fbd4b63c98
BLAKE2b-256 5eabe87744cf18f1bd78263aba24924d4953b41086bd3a31d22452378e9028a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a2567b72e1ffc3ab25510db43f355b29eeada56c0a622e58dcdb19530eb0a3cb
MD5 995bc0c5422466ddd46a437a32251627
BLAKE2b-256 baba3bc7525d7e2beaa11b309a70d48b0d3cfc3c2089ec6a7d0820d59c657053

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7d2f8616f0ff60bd332022279011776c3ac0faa0f1b463f7bb12326fbc97a1c
MD5 7214c771787b4a0560b415207542495c
BLAKE2b-256 87ece38ce072e724fd7add6243613f8d1810da084f54175353d25ccf9f9c7e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8f14c50708bb156b3a3ca7230b3d820199d56a48e3af76fa21c2d6087190fe3d
MD5 3369aaa5ce435bba3416044bd8d81c1a
BLAKE2b-256 750a39fa6c6b179b53fcb3e4b3d2b6d6cad0180854eda17060c7218540102bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7ab7229b6f9b5c1ba4910d6c41a9eb11f543eadb3f384df1b4c293f4e73d44d6
MD5 092e600da1cb471f2b5759c3c329561a
BLAKE2b-256 d6f5a20c4ac64aeaef1679e25c9983573618ff765d7aa829fa2b84ae7573169e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cd3db5927bf9167d5a6157ddb2f036f6b6b0ad001ac82355d43e97a4bde76d76
MD5 19dc91fcead34f051b711c61a515aac7
BLAKE2b-256 e57106956304cb5ee439dfe8d86e1b2e70088bd88ed1ced1f42fb29e5d855f0e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c4b6668b2b2b9027f209ddf647f2a4407784b5d88b8be4efcc72036f365baf9
MD5 68826a35c06df8de316b578ef531fd46
BLAKE2b-256 ef428461a2aaf60a8f4ea4549a4056be36b904b0eb03d97ca9a8a2604681a500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9010032a0b9710f58012a1e9c222528763d860ba2ee1422c03473eab47703e7
MD5 384ea44b4f0f181f5e4817e30107cc77
BLAKE2b-256 7ab41f1c287f4a79782ef36e5a6e62954c85343bc30470d862d30bd5f26c9fa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2837fb92951564d6339cedae4a7231692aa9f73cbc4fb2e04263b96844e03b4e
MD5 320668bbae69d3a28b7ad67e82370717
BLAKE2b-256 161313296ffe2c132d888b3fe2c195c8b9c0c24c89c3fa5cc2c44464dc23b22e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c180f480207a9b2475f2b8d8bd7204e47aec952d084b2a2be58a782ffcf96074
MD5 3e0640b5dd70e127cf5f78f9f95b8469
BLAKE2b-256 786eb6173a8ff03d01d5e1a694bc06764b5dad1df2d4ed8f0ceec12bb3277936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4beac52e9fe46d6abf98b0176a88154b742e878fdf209d2248e99fcdf73cd297
MD5 c1dc5f1af6c7e4455863dcdbd7b62850
BLAKE2b-256 b726a56feace81f3d347b4052403a9d03754a0ab23f7940780dada0849a38c92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4eac02d9af4813ee289cd63a361576da36dba57f5a1ab36377bc2600db0cbb73
MD5 3f3a0d7d92b38bfd005601503ec87f29
BLAKE2b-256 256fe96988a6c982d047810c772e28c43c64c300c943b0ed5c1c0c4ce1e1027c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f34ecee82858e41dd217734f0c41a532bd066bcaab636ad830f03a30b2a96f2a
MD5 7a18b3e74848bf990c85937bbe4dceac
BLAKE2b-256 412cdb61b64b0249e30f954a65ab4cb4970ced57544b1de2e3c98ee5dc24165f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 019a67772e034a0e6b9b17c13d0a8fe56ad9fb150fc724b7f3ffd3724288d9e5
MD5 f0620223e181fbff9636701c904d4191
BLAKE2b-256 fb6884cd3dab6b7b4f3e6fe9459a961acb142aaab846417f6e8905110d7027e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bca9ef7517fd7874a1a08970ae88f497bf5c984610caa0bf40bd7e8450852b95
MD5 d943272e5110918d5ebc0f5d8fe0e79a
BLAKE2b-256 2f86a6f3ff1fd795f49545a7c74b2c92f62729135d73e7e4055bf74da5a26c82

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6a7cbeb06d1070f1d14895eeeed4dac5913b22d7b456f2eb969f11f4b3993796
MD5 0209a46a089b6d990aac358571c42700
BLAKE2b-256 de6cd20d7de23f0b52b8c1d9e2033b2db1ac4dacbb470bb74c56de0f5f86bb4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 636bc362f0c5bbc7372bc3ae49737f9e3030dbce469f0f422c8f38079780363d
MD5 549161f7378b55c0e86f6f0604dc213b
BLAKE2b-256 919f78eb1a20c1c28ae02f6a3c0f4d7b0dcc66abce5290cadd53d78ce3084175

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b6f6cd1560c5fa427e3b6074bb24d2c64e225afbb7165008903bd42e4e33e28a
MD5 2689f5f830c1fd44594e2556ffa30311
BLAKE2b-256 0144056fd37b1bb52eac760303e5196acc74d9d546631b035704ae5927f7b4ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c86969d012e51b8e415a8c6ce96f7857d6a87d6207303ab02d5d11ef0cad2274
MD5 eba5d27203c152f20c50fc762a9860af
BLAKE2b-256 e4d6f47d1c690f115a5c2a5e8938cce4a232a5be9aac5c5fb2647efcbbbda333

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f546a4dc1e6a5edbb9fd1fd6ad18134550e096a5a43f4ad74acfbd834fc6670
MD5 79e9f6f63a986f9425947fa4eae29a25
BLAKE2b-256 6f4d926c183e06b09d5270a309eb50fbde7b09782bfd305dec1e800f329834fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bace460460ed20614fa6bc8cb09966c0b8517b8c58ad8046828c6078d25333b5
MD5 95a2166f094c68cae1a6e2ddcbb8854e
BLAKE2b-256 0598afd308e35b9d3d8c9ec54c0918f1d722c86dc17ddfec272fcdbcce5a3124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02222e7e233295f40e011c1b00e3b0bd451f22cf853a0304c3595633ee47da4b
MD5 11b7b93211722a39dd44fa05a8df8edf
BLAKE2b-256 bd85cebc47ee74d8b408749073a1a46c6fcba13d170dc8af7e61996c6c9394ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cb979826071c0986a5f08333a36104153478ce6018c58cba7f9caddaf63d5d67
MD5 0214e662bb3939c783dcd995e1534b90
BLAKE2b-256 2561b0203c2ef6bd268fca0eda142f0efbba7cbebd7ad38f7bb01dd31c2ff68e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f497a6876aa4b1a102b04996ce4c1170c7040d83faa9387dd921c16e30d5c83
MD5 6fb6cbd3e02aa0c7953fc4ff13b8564f
BLAKE2b-256 b098bcc35d4db687acabf06d41f561a99fa88bca145292513388c858d99b72c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8a4d3427e8de1312ddf309cc482186466c79895b3a139fed3259fc01dfa9a5b
MD5 6323e970a31a50eff2f6ae2a810f8b1c
BLAKE2b-256 c49aaab4469689024046220ea438aa020ea2ae04cd1dd71aea3057e094f8c357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4e704c52438f66fdd89588346183d898bb42167cf88f8b7ff1c0f9fc957c348f
MD5 d39ae75a9397ac2bdcb6c2dc1af04bbc
BLAKE2b-256 db62ab0f1304def56ce2356e6fbb9f0b024d6544010351430070f48f53b89e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9277145d36a01653863899c665243871434694bcc3431922c3b35c978061bdb8
MD5 393812d4e6dbdebc67db44be33266d98
BLAKE2b-256 d1e632d245876f211a7308a7d5437707f9296b1f9837a2888a407ed04e61321c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d147004fede1b12f6013a6dbb2a26a986a671a03c6ea740ddc76500e5f1c399f
MD5 8dc367436ed6679776d10c75207e698e
BLAKE2b-256 b279c4bbcf4cac3a4715a326e49720ccdc3a4b5e14a367c5029eae7727d06029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 147b4f501d0292077f29d5268c16bb7c864a1f054d7001c4c1812c0421ea1ed0
MD5 3db6240c398805056380571b830ab527
BLAKE2b-256 60423f1928107131f1413a5972ace14ddcd5364968e9bd7b3ad71272defafc9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9efcc0f11d850cefcafdd9275b9576ad3bfb539bed96807663b32ad99c4d4b88
MD5 c953d077c738108349cd6b4a98f4ba0a
BLAKE2b-256 92e8bd889697916f10b65524422c61b4eeaf919eb35a170290cccb680cbe4eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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.13.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 39380e12bd1f2fdab4285b6e055ad48efbaed5c836433b142ed4f5b9be71036a
MD5 6e6ee218eb2045a7ca1fd4b6a3fd10b1
BLAKE2b-256 14a8d8d5d1ab6d29a4a3bdb9db31f161e338bfdf6638f6574ea8380f1d4a243c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.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.13.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e999f0c88a458c836d5fb521814e92ed2172c649200336a6df514987c1488258
MD5 45034a42b65d113ae98bc29ad3ef3c0f
BLAKE2b-256 379984b448291e9996bb83bf4fad3a71a9786d542f19c50a3ff0531bfaba6fac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_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.13.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 912d4b6af530ddb1338a66229dac3a25ff11d4448be3ec3d6340583995f56031
MD5 b8c5c7515f8be886edc077711dc7604a
BLAKE2b-256 71945a878e728e30699d22b118f1a6ad576ab6fff9eb2c6fc8a7faa9376a1c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_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.13.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 95d14ca7abefde230f7639ec136ade282655431fd5db03c343b19dda72dd1643
MD5 216d30b625bd681205f92b5ea8f94e53
BLAKE2b-256 3a7f605d766887594a88dcc27a19663499c7c5e13e7aa87f129b763765a2ee63

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_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.13.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ee5e86776273de1795947d17bddd6bb19e0365fd2af4289c0d2c5454b6b1d36b
MD5 42a2fa3f306cb4dcc56a77d147cf5060
BLAKE2b-256 c2273b2288e66dcec8b04771b2bee3909f70e4072bea995cde5ab7e775e73ddc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_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.13.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 206b7b3ef96e4ce211754f0cd003feb28b7d81f0ad26b8d077a5d5161436067f
MD5 2ec80b4576f666df3415b37dadc8f3d7
BLAKE2b-256 dacfc6f97006093d1e8ca40fbab843ff49ec7725ab668f0714dd1cb702c62cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.13.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af545c2cffdb0967a96b6249e6f5f7b0d92cdfd267f9d5238d5b9ca63e8edb10
MD5 1194592dad19a5a6392c549b38c40220
BLAKE2b-256 d5348413eafee3421ade2d6ce9e7c0da1213e1d7f0049be09dcdc342b03a39ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 178c7b5e62b454c2bc790786e6058c3cc968613b4419251b478c153a4aec32b1
MD5 f643dcfaf82908169520b0438000d915
BLAKE2b-256 cdb86a19dda37fda94a9ebefb3c1ae0ff419ac7fbf4fb40750e992829fc13614

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 347542f0ea3f95b2a955ee6656461fa1c776e401ac50ebce055a6c38454a0adf
MD5 667d4a4eca1ab58cb3fa6d22c46cf313
BLAKE2b-256 e2a5630bc484695d4a1342bbae85fb8689bf979106525684fc88f05b397324ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.5-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