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.2.tar.gz (7.8 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.2-cp314-cp314t-win_amd64.whl (498.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.13.2-cp314-cp314t-win32.whl (464.7 kB view details)

Uploaded CPython 3.14tWindows x86

aiohttp-3.13.2-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.2-cp314-cp314t-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-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.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

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

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

aiohttp-3.13.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (509.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.13.2-cp314-cp314t-macosx_10_13_x86_64.whl (504.6 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

aiohttp-3.13.2-cp314-cp314t-macosx_10_13_universal2.whl (767.4 kB view details)

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

aiohttp-3.13.2-cp314-cp314-win_amd64.whl (457.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.13.2-cp314-cp314-win32.whl (431.6 kB view details)

Uploaded CPython 3.14Windows x86

aiohttp-3.13.2-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.2-cp314-cp314-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

aiohttp-3.13.2-cp314-cp314-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

aiohttp-3.13.2-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.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

aiohttp-3.13.2-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.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (491.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.13.2-cp314-cp314-macosx_10_13_x86_64.whl (490.7 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

aiohttp-3.13.2-cp314-cp314-macosx_10_13_universal2.whl (735.2 kB view details)

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

aiohttp-3.13.2-cp313-cp313-win_amd64.whl (452.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.13.2-cp313-cp313-win32.whl (425.9 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.13.2-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.2-cp313-cp313-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (489.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.13.2-cp313-cp313-macosx_10_13_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.13.2-cp313-cp313-macosx_10_13_universal2.whl (732.1 kB view details)

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

aiohttp-3.13.2-cp312-cp312-win_amd64.whl (453.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.13.2-cp312-cp312-win32.whl (426.7 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.13.2-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.2-cp312-cp312-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (491.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.13.2-cp312-cp312-macosx_10_13_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.13.2-cp312-cp312-macosx_10_13_universal2.whl (737.6 kB view details)

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

aiohttp-3.13.2-cp311-cp311-win_amd64.whl (456.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.13.2-cp311-cp311-win32.whl (431.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.2-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.2-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.2-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.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.2-cp311-cp311-macosx_11_0_arm64.whl (493.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.13.2-cp311-cp311-macosx_10_9_x86_64.whl (497.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.13.2-cp311-cp311-macosx_10_9_universal2.whl (743.4 kB view details)

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

aiohttp-3.13.2-cp310-cp310-win_amd64.whl (455.1 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.13.2-cp310-cp310-win32.whl (432.3 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.13.2-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.2-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.2-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-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.2-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.2-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.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

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

aiohttp-3.13.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (489.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.13.2-cp310-cp310-macosx_10_9_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.13.2-cp310-cp310-macosx_10_9_universal2.whl (736.5 kB view details)

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

aiohttp-3.13.2-cp39-cp39-win_amd64.whl (456.0 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.13.2-cp39-cp39-win32.whl (433.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.13.2-cp39-cp39-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.13.2-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.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (490.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.13.2-cp39-cp39-macosx_10_9_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.13.2-cp39-cp39-macosx_10_9_universal2.whl (739.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.2.tar.gz
  • Upload date:
  • Size: 7.8 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.2.tar.gz
Algorithm Hash digest
SHA256 40176a52c186aefef6eb3cad2cdd30cd06e3afbe88fe8ab2af9c0b90f228daca
MD5 336f47ec48aff07052a7f1dcf38dfbac
BLAKE2b-256 1cce3b83ebba6b3207a7135e5fcaba49706f8a4b6008153b4e30540c982fae26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 498.1 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ff0a7b0a82a7ab905cbda74006318d1b12e37c797eb1b0d4eb3e316cf47f658f
MD5 f396ea2ac7be098af12ec7265f05f090
BLAKE2b-256 9f4dd22668674122c08f4d56972297c51a624e64b3ed1efaa40187607a7cb66e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 464.7 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d23b5fe492b0805a50d3371e8a728a9134d8de5447dce4c885f5587294750734
MD5 48aa8982b3fd4fd623873289179f673b
BLAKE2b-256 7e831a5a1856574588b1cad63609ea9ad75b32a8353ac995d830bf5da9357364

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf00e5db968c3f67eccd2778574cf64d8b27d95b237770aa32400bd7a1ca4f6c
MD5 2d6c638bd043e32d035132146ae3969b
BLAKE2b-256 fff7ba5f0ba4ea8d8f3c32850912944532b933acbf0f3a75546b89269b9b7dde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fa4dcb605c6f82a80c7f95713c2b11c3b8e9893b3ebd2bc9bde93165ed6107be
MD5 34dde04006b04f58b0e4b9ba28aa2caa
BLAKE2b-256 7d4ba6212790c50483cb3212e507378fbe26b5086d73941e1ec4b56a30439688

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 94f05348c4406450f9d73d38efb41d669ad6cd90c7ee194810d0eefbfa875a7a
MD5 c749506bc5db1bb12f2bc33d9fd49153
BLAKE2b-256 e7807368bd0d06b16b3aba358c16b919e9c46cf11587dc572091031b0e9e3ef0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9ec49dff7e2b3c85cdeaa412e9d438f0ecd71676fde61ec57027dd392f00c693
MD5 fd974afd1e7adb7b88c0637d723fa404
BLAKE2b-256 0475f74fd178ac81adf4f283a74847807ade5150e48feda6aef024403716c30c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20b10bbfbff766294fe99987f7bb3b74fdd2f1a2905f2562132641ad434dcf98
MD5 cf5c5c05a5443f6549cb67835c77df97
BLAKE2b-256 c938c15dcf6d4d890217dae79d7213988f4e5fe6183d43893a9cf2fe9e84ca8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78cd586d8331fb8e241c2dd6b2f4061778cc69e150514b39a9e28dd050475661
MD5 41388972fbb8b673320ea917176432e1
BLAKE2b-256 9bc23b6034de81fbcc43de8aeb209073a2286dfb50b86e927b4efd81cf848197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 56d36e80d2003fa3fc0207fac644216d8532e9504a785ef9a8fd013f84a42c61
MD5 bfc3d3ee105a64a8def6fd5d1ceee0ca
BLAKE2b-256 4175aaf1eea4c188e51538c04cc568040e3082db263a57086ea74a7d38c39e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a653d872afe9f33497215745da7a943d1dc15b728a9c8da1c3ac423af35178e
MD5 62ea04143f896f7b9edf90f64928430a
BLAKE2b-256 0b781eeb63c3f9b2d1015a4c02788fb543141aad0a03ae3f7a7b669b2483f8d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0a3d54e822688b56e9f6b5816fb3de3a3a64660efac64e4c2dc435230ad23bad
MD5 9aaaaf99aa19b7029670365da1580890
BLAKE2b-256 e9e094d7215e405c5a02ccb6a35c7a3a6cfff242f457a00196496935f700cde5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2e1a9bea6244a1d05a4e57c295d69e159a5c50d8ef16aa390948ee873478d9a5
MD5 801a244d6ba24326a06acb9d681c83ac
BLAKE2b-256 f5558df2ed78d7f41d232f6bd3ff866b6f617026551aa1d07e2f03458f964575

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 23fb0783bc1a33640036465019d3bba069942616a6a2353c6907d7fe1ccdaf4e
MD5 c996ac7b6c1921186aef0ec04720318b
BLAKE2b-256 8f6575a9a76db8364b5d0e52a0c20eabc5d52297385d9af9c35335b924fafdee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e96eb1a34396e9430c19d8338d2ec33015e4a87ef2b4449db94c22412e25ccdf
MD5 2064b70e0e5b5eac1972c00190c342ea
BLAKE2b-256 7ff0c68dac234189dae5c4bbccc0f96ce0cc16b76632cfc3a08fff180045cfa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c20423ce14771d98353d2e25e83591fa75dfa90a3c1848f3d7c68243b4fbded3
MD5 69c09ce7fd0f7a006c6af51ccb8e4214
BLAKE2b-256 c6aaed341b670f1bc8a6f2c6a718353d13b9546e2cef3544f573c6a1ff0da711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e7c952aefdf2460f4ae55c5e9c3e80aa72f706a6317e06020f80e96253b1accd
MD5 3cbd42e660aa0718814fb21ada2026a1
BLAKE2b-256 a40f6a03e3fc7595421274fa34122c973bde2d89344f8a881b728fa8c774e4f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f10d9c0b0188fe85398c61147bbd2a657d616c876863bfeff43376e0e3134673
MD5 957bc3d73abe05a82ddf1483f7c96ebe
BLAKE2b-256 c78e3824ef98c039d3951cb65b9205a96dd2b20f22241ee17d89c5701557c826

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 457.6 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fe242cd381e0fb65758faf5ad96c2e460df6ee5b2de1072fe97e4127927e00b4
MD5 e853705b53da7ff9247672c1ba08063d
BLAKE2b-256 fb41554a8a380df6d3a2bba8a7726429a23f4ac62aaf38de43bb6d6cde7b4d4d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 431.6 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f7c183e786e299b5d6c49fb43a769f8eb8e04a2726a2bd5887b98b5cc2d67940
MD5 1015952e74e2c365509f90d6ef527915
BLAKE2b-256 0c079127916cb09bb38284db5036036042b7b2c514c8ebaeee79da550c43a6d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88d6c017966a78c5265d996c19cdb79235be5e6412268d7e2ce7dee339471b7a
MD5 bc9ac4fde230bb25efad45678ac77368
BLAKE2b-256 677fdb2fc7618925e8c7a601094d5cbe539f732df4fb570740be88ed9e40e99a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5b927cf9b935a13e33644cbed6c8c4b2d0f25b713d838743f8fe7191b33829c4
MD5 a6606823ea0a6b932c50a9d4cc08c01b
BLAKE2b-256 cf87860f2803b27dfc5ed7be532832a3498e4919da61299b4a1f8eb89b8ff44d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ec7534e63ae0f3759df3a1ed4fa6bc8f75082a924b590619c0dd2f76d7043caa
MD5 2919adc4db36091b85555b79398a93ec
BLAKE2b-256 19e219bd4c547092b773caeb48ff5ae4b1ae86756a0ee76c16727fcfd281404b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 98c4fb90bb82b70a4ed79ca35f656f4281885be076f3f970ce315402b53099ae
MD5 0d8cde75eef32ef72f883597cc71fe2c
BLAKE2b-256 1651c709f352c911b1864cfd1087577760ced64b3e5bee2aa88b8c0c8e2e4972

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b88ebe35ce54205c7074f7302bd08a4cb83256a3e0870c72d6f68a3aaf8e49
MD5 d6c011e680b8b77cd8dba683ed3f425c
BLAKE2b-256 3f3043d3e0f9d6473a6db7d472104c4eff4417b1e9df01774cb930338806d36b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ebf9cfc9ba24a74cf0718f04aac2a3bbe745902cc7c5ebc55c0f3b5777ef213
MD5 3be400c4ffd87272ebed54c2bcd450f2
BLAKE2b-256 3164b9d733296ef79815226dab8c586ff9e3df41c6aff2e16c06697b2d2e6775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 66bac29b95a00db411cd758fea0e4b9bdba6d549dfe333f9a945430f5f2cc5a6
MD5 a8e2ef473ea49f3384a2563d66ddd8d9
BLAKE2b-256 d751b311500ffc860b181c05d91c59a1313bdd05c82960fdd4035a15740d431e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c038a8fdc8103cd51dbd986ecdce141473ffd9775a7a8057a6ed9c3653478011
MD5 e2adfd06f9bc942270d7a543b885c61d
BLAKE2b-256 d7ef39f3448795499c440ab66084a9db7d20ca7662e94305f175a80f5b7e0072

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b009194665bcd128e23eaddef362e745601afa4641930848af4c8559e88f18f9
MD5 13e09883f1c7adb97b6a2bee7d246574
BLAKE2b-256 acb48e940dfb03b7e0f68a82b88fd182b9be0a65cb3f35612fe38c038c3112cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0db1e24b852f5f664cd728db140cf11ea0e82450471232a394b3d1a540b0f906
MD5 8500a52df3bb35b0d33b34d1a0ae9e17
BLAKE2b-256 874f36c1992432d31bbc789fa0b93c768d2e9047ec8c7177e5cd84ea85155f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 93655083005d71cd6c072cdab54c886e6570ad2c4592139c3fb967bfc19e4694
MD5 dd9d09f9f2fe8dd34eaf42c6695a4e17
BLAKE2b-256 08aa6a01848d6432f241416bc4866cae8dc03f05a5a884d2311280f6a09c73d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d7f02042c1f009ffb70067326ef183a047425bb2ff3bc434ead4dd4a4a66a2b
MD5 5af4253f20705061af3665b2e228e2f2
BLAKE2b-256 571e209958dbb9b01174870f6a7538cd1f3f28274fdbc88a750c238e2c456295

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae32f24bbfb7dbb485a24b30b1149e2f200be94777232aeadba3eecece4d0aa4
MD5 206b7796bcf6dbe7553ebb2840805e7b
BLAKE2b-256 1aaa7a451b1d6a04e8d15a362af3e9b897de71d86feac3babf8894545d08d537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f33c8748abef4d8717bb20e8fb1b3e07c6adacb7fd6beaae971a764cf5f30d61
MD5 2bb979cb0df6dd6d69a340a538e3b69c
BLAKE2b-256 cae31ee62dde9b335e4ed41db6bba02613295a0d5b41f74a783c142745a12763

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2475391c29230e063ef53a66669b7b691c9bfc3f1426a0f7bcdf1216bdbac38b
MD5 fa90aff1654f976d1eabd9691bd63838
BLAKE2b-256 9b36e2abae1bd815f01c957cbf7be817b3043304e1c87bad526292a0410fdcf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 452.2 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a88d13e7ca367394908f8a276b89d04a3652044612b9a408a0bb22a5ed976a1a
MD5 f8d089d9e9263c05bccf623d40f6a344
BLAKE2b-256 5d28a8a9fc6957b2cee8902414e41816b5ab5536ecf43c3b1843c10e82c559b2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 425.9 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0740f31a60848d6edb296a0df827473eede90c689b8f9f2a4cdde74889eb2254
MD5 d3039d6a490875637fc12ca008d3e726
BLAKE2b-256 5d8bf5bd1a75003daed099baec373aed678f2e9b34f2ad40d85baa1368556396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0c8e31cfcc4592cb200160344b2fb6ae0f9e4effe06c644b5a125d4ae5ebe23
MD5 e1da251dcda86cdc78a5a335018c33aa
BLAKE2b-256 f9c80932b558da0c302ffd639fc6362a313b98fdf235dc417bc2493da8394df7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fe91b87fc295973096251e2d25a811388e7d8adf3bd2b97ef6ae78bc4ac6c476
MD5 ce0be076a9dd09c4f8c2a5b738c1d0b9
BLAKE2b-256 694612dce9be9d3303ecbf4d30ad45a7683dc63d90733c2d9fe512be6716cd40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 550bf765101ae721ee1d37d8095f47b1f220650f85fe1af37a90ce75bab89d04
MD5 db92770b5cfd4ed493be68ef7b29b906
BLAKE2b-256 34cb90f15dd029f07cebbd91f8238a8b363978b530cd128488085b5703683594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e1b4951125ec10c70802f2cb09736c895861cd39fd9dcb35107b4dc8ae6220b8
MD5 2c044d05a80fc8afb03820c345cd2655
BLAKE2b-256 112c22799d8e720f4697a9e66fd9c02479e40a49de3de2f0bbe7f9f78a987808

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb7fb776645af5cc58ab804c58d7eba545a97e047254a52ce89c157b5af6cd0b
MD5 2dca2306e8979dc49dcf819196237023
BLAKE2b-256 71013afe4c96854cfd7b30d78333852e8e851dceaec1c40fd00fec90c6402dd2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 16f15a4eac3bc2d76c45f7ebdd48a65d41b242eb6c31c2245463b40b34584ded
MD5 c71dd25a4685c4108769e4a722febd2f
BLAKE2b-256 48309586667acec5993b6f41d2ebcf96e97a1255a85f62f3c653110a5de4d346

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f2bef8237544f4e42878c61cef4e2839fee6346dc60f5739f876a9c50be7fcdb
MD5 3aead21b9c50257d0f01dbeef629818f
BLAKE2b-256 c4527bd3c6693da58ba16e657eb904a5b6decfc48ecd06e9ac098591653b1566

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac6cde5fba8d7d8c6ac963dbb0256a9854e9fafff52fbcc58fdf819357892c3e
MD5 4341ae6be9b888ebc4d905c42a143fa3
BLAKE2b-256 f70d4764669bdf47bd472899b3d3db91fffbe925c8e3038ec591a2fd2ad6a14d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 228a1cd556b3caca590e9511a89444925da87d35219a49ab5da0c36d2d943a6a
MD5 824505b25865e2891cc65193be6c0ed7
BLAKE2b-256 973d801ca172b3d857fafb7b50c7c03f91b72b867a13abca982ed6b3081774ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a2713a95b47374169409d18103366de1050fe0ea73db358fc7a7acb2880422d4
MD5 3001cafaca0f89b1aa19cb9eca62989e
BLAKE2b-256 48ab3d98007b5b87ffd519d065225438cc3b668b2f245572a8cb53da5dd2b1bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 96581619c57419c3d7d78703d5b78c1e5e5fc0172d60f555bdebaced82ded19a
MD5 f62ad092573543d858db746ab8c2577d
BLAKE2b-256 31078ea4326bd7dae2bd59828f69d7fdc6e04523caa55e4a70f4a8725a7e4ed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1237c1375eaef0db4dcd7c2559f42e8af7b87ea7d295b118c60c36a6e61cb811
MD5 0bef1281b7e8fc0a7c32ce600dfd308b
BLAKE2b-256 d204db5279e38471b7ac801d7d36a57d1230feeee130bbe2a74f72731b23c2b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5276807b9de9092af38ed23ce120539ab0ac955547b38563a9ba4f5b07b95293
MD5 724565b8b2b384ec9218d964f29a81f9
BLAKE2b-256 687bfe0fe0f5e05e13629d893c760465173a15ad0039c0a5b0d0040995c8075e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 088912a78b4d4f547a1f19c099d5a506df17eacec3c6f4375e2831ec1d995742
MD5 5115449bf8a3a7a5639d89dcc03ed7d3
BLAKE2b-256 dbed1f59215ab6853fbaa5c8495fa6cbc39edfc93553426152b75d82a5f32b76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7519bdc7dfc1940d201651b52bf5e03f5503bda45ad6eacf64dda98be5b2b6be
MD5 45ea3915b61b466b9a2bfe970d65fbe9
BLAKE2b-256 bf787e90ca79e5aa39f9694dcfd74f4720782d3c6828113bb1f3197f7e7c4a56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 453.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8709a0f05d59a71f33fd05c17fc11fcb8c30140506e13c2f5e8ee1b8964e1b45
MD5 2f06c325e891c4144c1d5c384087d66c
BLAKE2b-256 0a0db10ac09069973d112de6ef980c1f6bb31cb7dcd0bc363acbdad58f927873

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 426.7 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 27e569eb9d9e95dbd55c0fc3ec3a9335defbf1d8bc1d20171a49f3c4c607b93e
MD5 234b3d4c174d21bf68f17015370bccf6
BLAKE2b-256 70306355a737fed29dcb6dfdd48682d5790cb5eab050f7b4e01f49b121d3acad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff15c147b2ad66da1f2cbb0622313f2242d8e6e8f9b79b5206c84523a4473248
MD5 216383a48764b9f926d52d7404aac0b9
BLAKE2b-256 bae419ce547b58ab2a385e5f0b8aa3db38674785085abcf79b6e0edd1632b12f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9434bc0d80076138ea986833156c5a48c9c7a8abb0c96039ddbb4afc93184169
MD5 aa8d84f85948b61ba879fc71008be7d9
BLAKE2b-256 39b846790692dc46218406f94374903ba47552f2f9f90dad554eed61bfb7b64c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9eb3e33fdbe43f88c3c75fa608c25e7c47bbd80f48d012763cb67c47f39a7e16
MD5 ed0d083c4c8bc54dde876059afc4a095
BLAKE2b-256 03d3ddd348f8a27a634daae39a1b8e291ff19c77867af438af844bf8b7e3231b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8aa7c807df234f693fed0ecd507192fc97692e61fee5702cdc11155d2e5cadc8
MD5 cd3d19c03935bf9c3c5303c7187366be
BLAKE2b-256 9bd48f8f3ff1fb7fb9e3f04fcad4e89d8a1cd8fc7d05de67e3de5b15b33008ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa89cb11bc71a63b69568d5b8a25c3ca25b6d54c15f907ca1c130d72f320b76b
MD5 e8a855278312781002a842d4c3910055
BLAKE2b-256 2c3c52d2658c5699b6ef7692a3f7128b2d2d4d9775f2a68093f74bca06cf01e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d8a9b889aeabd7a4e9af0b7f4ab5ad94d42e7ff679aaec6d0db21e3b639ad58d
MD5 e7f3b509746899b35e9b24193d985156
BLAKE2b-256 390f9f3d32271aa8dc35036e9668e31870a9d3b9542dd6b3e2c8a30931cb27ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 eeacf451c99b4525f700f078becff32c32ec327b10dcf31306a8a52d78166de7
MD5 49cfca7e40323c22926fbfd9b0f50076
BLAKE2b-256 30ab593855356eead019a74e862f21523db09c27f12fd24af72dbc3555b9bfd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4356474ad6333e41ccefd39eae869ba15a6c5299c9c01dfdcfdd5c107be4363e
MD5 dcad285fbf57ab5b59c05cbcfd710769
BLAKE2b-256 b948adf56e05f81eac31edcfae45c90928f4ad50ef2e3ea72cb8376162a368f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e67446b19e014d37342f7195f592a2a948141d15a312fe0e700c2fd2f03124f6
MD5 29c627ecd56a1befa8a4152cf6dcf994
BLAKE2b-256 f849a825b79ffec124317265ca7d2344a86bcffeb960743487cb11988ffb3494

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 39d02cb6025fe1aabca329c5632f48c9532a3dabccd859e7e2f110668972331f
MD5 109455451e8ee55eec0376dc48731451
BLAKE2b-256 da0473f5f02ff348a3558763ff6abe99c223381b0bace05cd4530a0258e52597

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 585542825c4bc662221fb257889e011a5aa00f1ae4d75d1d246a5225289183e3
MD5 29131db0af561dbfefc8b74b5611127f
BLAKE2b-256 9dfa4ebdf4adcc0def75ced1a0d2d227577cd7b1b85beb7edad85fcc87693c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba2715d842ffa787be87cbfce150d5e88c87a98e0b62e0f5aa489169a393dbbb
MD5 7e00228a364271222714c865eb69d9dd
BLAKE2b-256 00298e4609b93e10a853b65f8291e64985de66d4f5848c5637cddc70e98f01f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5c94825f744694c4b8db20b71dba9a257cd2ba8e010a803042123f3a25d50d7
MD5 2e38f88ec1b7d5a477c01ebbda906869
BLAKE2b-256 2866d35dcfea8050e131cdd731dff36434390479b4045a8d0b9d7111b0a968f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 364e25edaabd3d37b1db1f0cbcee8c73c9a3727bfa262b83e5e4cf3489a2a9dc
MD5 34e69d0a23a162f971d33fcaf85bbe8d
BLAKE2b-256 5a1b4be39c445e2b2bd0aab4ba736deb649fabf14f6757f405f0c9685019b9e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b1e56bab2e12b2b9ed300218c351ee2a3d8c8fdab5b1ec6193e11a817767e47b
MD5 e1fd5ab571db07411855ae194d2b5bf6
BLAKE2b-256 299b01f00e9856d0a73260e86dd8ed0c2234a466c5c1712ce1c281548df39777

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 456.2 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7fd19df530c292542636c2a9a85854fab93474396a52f1695e799186bbd7f24c
MD5 03a15da17c706d8ca200dceef409b75d
BLAKE2b-256 c363688462108c1a00eb9f05765331c107f95ae86f6b197b865d29e930b7e462

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 431.9 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 868e195e39b24aaa930b063c08bb0c17924899c16c672a28a65afded9c46c6ec
MD5 fd6c29a056dbab0b11af0f48b755d991
BLAKE2b-256 176b3747644d26a998774b21a616016620293ddefa4d63af6286f389aedac844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9acda8604a57bb60544e4646a4615c1866ee6c04a8edef9b8ee6fd1d8fa2ddc8
MD5 b589d3d818cee46b1c533eb9f9f31816
BLAKE2b-256 d11191133c8b68b1da9fc16555706aa7276fdf781ae2bb0876c838dd86b8116e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 47f438b1a28e926c37632bff3c44df7d27c9b57aaf4e34b1def3c07111fdb782
MD5 50039665481bb87e259e328f379c6740
BLAKE2b-256 e5c78e22d5d28f94f67d2af496f14a83b3c155d915d1fe53d94b66d425ec5b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2ca6ffef405fc9c09a746cb5d019c1672cd7f402542e379afc66b370833170cf
MD5 99bded2a33892a6fa366b3417e4c9a00
BLAKE2b-256 30bef6a7a426e02fc82781afd62016417b3948e2207426d90a0e478790d1c8a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 99c5280a329d5fa18ef30fd10c793a190d996567667908bef8a7f81f8202b948
MD5 9e385bc99aedc3838e1e0c09fdda3951
BLAKE2b-256 666534564b8765ea5c7d79d23c9113135d1dd3609173da13084830f1507d56cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed2f9c7216e53c3df02264f25d824b079cc5914f9e2deba94155190ef648ee40
MD5 4197c8c3a31548def576a82653eeb6be
BLAKE2b-256 edfc9d2ccc794fc9b9acd1379d625c3a8c64a45508b5091c546dea273a41929e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e8f8afb552297aca127c90cb840e9a1d4bfd6a10d7d8f2d9176e1acc69bad30
MD5 376e65b98ddf380e83086280f5d2f3cd
BLAKE2b-256 974be78b854d82f66bb974189135d31fce265dee0f5344f64dd0d345158a5973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 97a0895a8e840ab3520e2288db7cace3a1981300d48babeb50e7425609e2e0ab
MD5 752b20f4e1848d1ad0c32b39d2f6774b
BLAKE2b-256 ac6198a47319b4e425cc134e05e5f3fc512bf9a04bf65aafd9fdcda5d57ec693

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3b6fb0c207cc661fa0bf8c66d8d9b657331ccc814f4719468af61034b478592
MD5 02d9dea7a9bea7106520ecb1a8bb637d
BLAKE2b-256 6bf3083907ee3437425b4e376aa58b2c915eb1a33703ec0dc30040f7ae3368c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ff5e771f5dcbc81c64898c597a434f7682f2259e0cd666932a913d53d1341d1a
MD5 7c5d5b1c916773ca66a4d75403d51615
BLAKE2b-256 3458b0583defb38689e7f06798f0285b1ffb3a6fb371f38363ce5fd772112724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e736c93e9c274fce6419af4aac199984d866e55f8a4cec9114671d0ea9688780
MD5 31c8a675a246bf90bbcd1b2255eb40f3
BLAKE2b-256 8e024e16154d8e0a9cf4ae76f692941fd52543bbb148f02f098ca73cab9b1c1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 53b07472f235eb80e826ad038c9d106c2f653584753f3ddab907c83f49eedead
MD5 adcef2ed2fc18b2716a72f3fc9beb081
BLAKE2b-256 e86304efe156f4326f31c7c4a97144f82132c3bb21859b7bb84748d452ccc17c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2a9ea08e8c58bb17655630198833109227dea914cd20be660f52215f6de5613
MD5 84042ea741de9c3e946148c58ec5fe97
BLAKE2b-256 9831913f774a4708775433b7375c4f867d58ba58ead833af96c8af3621a0d243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43dff14e35aba17e3d6d5ba628858fb8cb51e30f44724a2d2f0c75be492c55e9
MD5 23611e4d8c3dc97305d5f1c430af3e89
BLAKE2b-256 ebd37f68bc02a67716fe80f063e19adbd80a642e30682ce74071269e17d2dba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3403f24bcb9c3b29113611c3c16a2a447c3953ecf86b79775e7be06f7ae7ccb
MD5 b13400d610c0cf6570293fe77d87f5fc
BLAKE2b-256 993d91524b905ec473beaf35158d17f82ef5a38033e5809fe8742e3657cdbb97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4647d02df098f6434bafd7f32ad14942f05a9caa06c7016fdcc816f343997dd0
MD5 59c7040e022176e89de95028ce354378
BLAKE2b-256 3574b321e7d7ca762638cdf8cdeceb39755d9c745aff7a64c8789be96ddf6e96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 455.1 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 364f55663085d658b8462a1c3f17b2b84a5c2e1ba858e1b79bff7b2e24ad1514
MD5 b8dd5da1865a818a93f0b75a5f17aa83
BLAKE2b-256 8bea1c2eb7098b5bad4532994f2b7a8228d27674035c9b3234fe02c37469ef14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 432.3 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e574a7d61cf10351d734bcddabbe15ede0eaa8a02070d85446875dc11189a251
MD5 dd81fb04e3d546e08db53ad12bb38041
BLAKE2b-256 0d42d511aff5c3a2b06c09d7d214f508a4ad8ac7799817f7c3d23e7336b5e896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c4dd3c48fb5f15db31f57eb35374cb0c09afdde532e7fb70a75aede0ed30f6
MD5 1bbac9b13ab2a90d91b1e27965c86d44
BLAKE2b-256 99a2ffe8e0e1c57c5e542d47ffa1fcf95ef2b3ea573bf7c4d2ee877252431efc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 204ffff2426c25dfda401ba08da85f9c59525cdc42bda26660463dd1cbcfec6f
MD5 4e9ce9289c893d3eb3e0953f4702523c
BLAKE2b-256 e92d1683e8d67ec72d911397fe4e575688d2a9b8f6a6e03c8fdc9f3fd3d4c03f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b395bbca716c38bef3c764f187860e88c724b342c26275bc03e906142fc5964f
MD5 66c702ac8d8377e559ba89914a97394e
BLAKE2b-256 95ebae5cab15efa365e13d56b31b0d085a62600298bf398a7986f8388f73b598

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fed38a5edb7945f4d1bcabe2fcd05db4f6ec7e0e82560088b754f7e08d93772d
MD5 74a7cc5338c5cd750c01c6b962d00736
BLAKE2b-256 66203af1ab663151bd3780b123e907761cdb86ec2c4e44b2d9b195ebc91fbe37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c00dbcf5f0d88796151e264a8eab23de2997c9303dd7c0bf622e23b24d3ce22
MD5 d42c696bdfa2f3a5b2f690ef56efa8af
BLAKE2b-256 7227c37e85cd3ece6f6c772e549bd5a253d0c122557b25855fb274224811e4f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 960c2fc686ba27b535f9fd2b52d87ecd7e4fd1cf877f6a5cba8afb5b4a8bd204
MD5 86689d3e0467bb1ecd9e57b574aa04bb
BLAKE2b-256 5a2bf3781899b81c45d7cbc7140cddb8a3481c195e7cbff8e36374759d2ab5a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 20db2d67985d71ca033443a1ba2001c4b5693fe09b0e29f6d9358a99d4d62a8a
MD5 aa30ed75905a3aaa91245ba5fd2f8928
BLAKE2b-256 f8fe1fe2e1179a0d91ce09c99069684aab619bf2ccde9b20bd6ca44f8837203e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b59d13c443f8e049d9e94099c7e412e34610f1f49be0f230ec656a10692a5802
MD5 f96be82daaf4055ebedc7e45baa3d3ea
BLAKE2b-256 a14fca2ef819488cbb41844c6cf92ca6dd15b9441e6207c58e5ae0e0fc8d70ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a09a6d073fb5789456545bdee2474d14395792faa0527887f2f4ec1a486a59d3
MD5 87d7ccb45fcebe6defed6781ef88adf3
BLAKE2b-256 e62e3ebfe12fdcb9b5f66e8a0a42dffcd7636844c8a018f261efb2419f68220b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e09a0a06348a2dd73e7213353c90d709502d9786219f69b731f6caa0efeb46f5
MD5 3ed954c597f985ab210355789609d6ed
BLAKE2b-256 84378708cf678628216fb678ab327a4e1711c576d6673998f4f43e86e9ae90dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6e7352512f763f760baaed2637055c49134fd1d35b37c2dedfac35bfe5cf8725
MD5 5172c93c5001eaab0f7c2ff1744161af
BLAKE2b-256 ebc64cdfb4440d0e28483681a48f69841fa5e39366347d66ef808cbdadddb20e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6315fb6977f1d0dd41a107c527fee2ed5ab0550b7d885bc15fee20ccb17891da
MD5 13be78afa8f1c05ad0bb984fee15f9b6
BLAKE2b-256 380f46c24e8dae237295eaadd113edd56dee96ef6462adf19b88592d44891dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 939ced4a7add92296b0ad38892ce62b98c619288a081170695c6babe4f50e636
MD5 6bb9f9c9c12eb679828187da469b06b7
BLAKE2b-256 9d8771c8867e0a1d0882dcbc94af767784c3cb381c1c4db0943ab4aae4fed65e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7f8659a48995edee7229522984bd1009c1213929c769c2daa80b40fe49a180c
MD5 7bfa716b2074e03ce5b6b8cbc88dd3dc
BLAKE2b-256 fdcfdcbdf2df7f6ca72b0bb4c0b4509701f2d8942cf54e29ca197389c214c07f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2372b15a5f62ed37789a6b383ff7344fc5b9f243999b0cd9b629d8bc5f5b4155
MD5 0aabd8a3cdf7684f537b4d665cfd135d
BLAKE2b-256 6d34939730e66b716b76046dedfe0842995842fa906ccc4964bba414ff69e429

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 456.0 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9c705601e16c03466cb72011bd1af55d68fa65b045356d8f96c216e5f6db0fa5
MD5 cde3505dc921ccc0828e820f3699ca8d
BLAKE2b-256 ada9d47e7873175a4d8aed425f2cdea2df700b2dd44fac024ffbd83455a69a50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 433.0 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9f377d0a924e5cc94dc620bc6366fc3e889586a7f18b748901cf016c916e2084
MD5 3f8aea0777492548cf754a3a84bfaf18
BLAKE2b-256 e5fdffbc1b6aa46fc6c284af4a438b2c7eab79af1c8ac4b6d2ced185c17f403e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04c3971421576ed24c191f610052bcb2f059e395bc2489dd99e397f9bc466329
MD5 2b3f075f954d13230ee5e5e57a84a231
BLAKE2b-256 6208e8593f39f025efe96ef59550d17cf097222d84f6f84798bedac5bf037fce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8b2f1414f6a1e0683f212ec80e813f4abef94c739fd090b66c9adf9d2a05feac
MD5 a3cb01755c16ce1401a870e0999f7b51
BLAKE2b-256 24e7a802619308232499482bf30b3530efb5d141481cfd61850368350fb1acb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dacd50501cd017f8cccb328da0c90823511d70d24a323196826d923aad865901
MD5 0152e09a7e9692a90ae75fbeac6e02a6
BLAKE2b-256 45fe4d9df516268867d83041b6c073ee15cd532dbea58b82d675a7e1cf2ec24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d7bc4b7f9c4921eba72677cd9fedd2308f4a4ca3e12fab58935295ad9ea98700
MD5 6aad9dd9f91b442b2a7556491ee160ac
BLAKE2b-256 a3de58ae6dc73691a51ff16f69a94d13657bf417456fa0fdfed2b59dd6b4c293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dd3db9d0f4ebca1d887d76f7cdbcd1116ac0d05a9221b9dad82c64a62578c4d
MD5 6a0c268bd33c718d6851fb81625815a4
BLAKE2b-256 832e5d065091c4ae8b55a153f458f19308191bad3b62a89496aa081385486338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29562998ec66f988d49fb83c9b01694fa927186b781463f376c5845c121e4e0b
MD5 ace29a55f2d3bf131f9f4dc247368d33
BLAKE2b-256 e5d19e5f4f40f9d0ee5668e9b5e7ebfb0eaf371cc09da03785decdc5da56f4b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 070599407f4954021509193404c4ac53153525a19531051661440644728ba9a7
MD5 b8027d965b015f7a53cbec537695284c
BLAKE2b-256 44cc1af9e466eafd9b5d8922238c69aaf95b656137add4c5db65f63ee129bf3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a92cf4b9bea33e15ecbaa5c59921be0f23222608143d025c989924f7e3e0c07
MD5 24edde1566db232295cf054326ef75c1
BLAKE2b-256 601ba46f6e1c2a347b9c7a789292279c159b327fadecbf8340f3b05fffff1151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1f9b2c2d4b9d958b1f9ae0c984ec1dd6b6689e15c75045be8ccb4011426268ca
MD5 a5d25fa048d50a275dd3c105281bddeb
BLAKE2b-256 668867ad5ff11dd61dd1d7882cda39f085d5fca31cf7e2143f5173429d8a591e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 23ad365e30108c422d0b4428cf271156dd56790f6dd50d770b8e360e6c5ab2e6
MD5 0e8c2e3e5be4171c6dbe7603043e8542
BLAKE2b-256 a6427ee0e699111f5fc20a69b3203e8f5d5da0b681f270b90bc088d15e339980

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.2-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.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e036a3a645fe92309ec34b918394bb377950cbb43039a97edae6c08db64b23e2
MD5 2953e23938664cae6576f4e3b52fbe50
BLAKE2b-256 9e93ce2ca7584555a6c7dd78f2e6b539a96c5172d88815e13a05a576e14a5a22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2adebd4577724dcae085665f294cc57c8701ddd4d26140504db622b8d566d7aa
MD5 1aa9f993278c50f6cd307bcf70258dab
BLAKE2b-256 0273361cd4cac9d98a5a4183d1f26faf7b777330f8dba838c5aae2412862bdd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e87dff73f46e969af38ab3f7cb75316a7c944e2e574ff7c933bc01b10def7f5
MD5 3a1487ddaf4447089dc932821e55210d
BLAKE2b-256 4eb4a0638ae1f12d09a0dc558870968a2f19a1eba1b10ad0a85ef142ddb40b50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c3a50345635a02db61792c85bb86daffac05330f6473d524f1a4e3ef9d0046d
MD5 01952d688fe33b7f4c0cde7184653b16
BLAKE2b-256 8974fefa6f7939cdc1d77e5cad712004e675a8847dccc589dcc3abca7feaed73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7fbdf5ad6084f1940ce88933de34b62358d0f4a0b6ec097362dcd3e5a65a4989
MD5 2dfec9918e607da52fdc89c394fb2293
BLAKE2b-256 044a3da532fdf51b5e58fffa1a86d6569184cb1bf4bf81cd4434b6541a8d14fd

See more details on using hashes here.

Provenance

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