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

Uploaded Source

Built Distributions

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

aiohttp-3.13.4-cp314-cp314t-win_amd64.whl (506.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.13.4-cp314-cp314t-win32.whl (472.5 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-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.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (2.0 MB view details)

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

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

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

aiohttp-3.13.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.8 MB view details)

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

aiohttp-3.13.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl (518.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.13.4-cp314-cp314t-macosx_10_13_x86_64.whl (514.4 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

aiohttp-3.13.4-cp314-cp314t-macosx_10_13_universal2.whl (781.5 kB view details)

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

aiohttp-3.13.4-cp314-cp314-win_amd64.whl (465.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.13.4-cp314-cp314-win32.whl (438.7 kB view details)

Uploaded CPython 3.14Windows x86

aiohttp-3.13.4-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.4-cp314-cp314-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

aiohttp-3.13.4-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.4-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.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (500.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.13.4-cp314-cp314-macosx_10_13_x86_64.whl (499.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

aiohttp-3.13.4-cp314-cp314-macosx_10_13_universal2.whl (749.4 kB view details)

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

aiohttp-3.13.4-cp313-cp313-win_amd64.whl (459.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.13.4-cp313-cp313-win32.whl (433.2 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

aiohttp-3.13.4-cp313-cp313-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

aiohttp-3.13.4-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.4-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.4-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.4-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.4-cp313-cp313-macosx_11_0_arm64.whl (498.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.13.4-cp313-cp313-macosx_10_13_x86_64.whl (498.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.13.4-cp313-cp313-macosx_10_13_universal2.whl (745.7 kB view details)

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

aiohttp-3.13.4-cp312-cp312-win_amd64.whl (461.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.13.4-cp312-cp312-win32.whl (434.2 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

aiohttp-3.13.4-cp312-cp312-musllinux_1_2_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

aiohttp-3.13.4-cp312-cp312-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-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.4-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.4-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.4-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.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

aiohttp-3.13.4-cp312-cp312-macosx_11_0_arm64.whl (501.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.13.4-cp312-cp312-macosx_10_13_x86_64.whl (501.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.13.4-cp312-cp312-macosx_10_13_universal2.whl (752.2 kB view details)

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

aiohttp-3.13.4-cp311-cp311-win_amd64.whl (463.8 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.13.4-cp311-cp311-win32.whl (439.7 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

aiohttp-3.13.4-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.4-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.4-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.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

aiohttp-3.13.4-cp311-cp311-macosx_11_0_arm64.whl (502.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.13.4-cp311-cp311-macosx_10_9_x86_64.whl (508.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.13.4-cp311-cp311-macosx_10_9_universal2.whl (760.0 kB view details)

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

aiohttp-3.13.4-cp310-cp310-win_amd64.whl (463.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.13.4-cp310-cp310-win32.whl (440.3 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.13.4-cp310-cp310-musllinux_1_2_riscv64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-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.4-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.4-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.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

aiohttp-3.13.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (498.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.13.4-cp310-cp310-macosx_10_9_x86_64.whl (505.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.13.4-cp310-cp310-macosx_10_9_universal2.whl (753.1 kB view details)

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

aiohttp-3.13.4-cp39-cp39-win_amd64.whl (464.0 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.13.4-cp39-cp39-win32.whl (441.0 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.4-cp39-cp39-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.13.4-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.4-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.4-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.4-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.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

aiohttp-3.13.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (499.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.13.4-cp39-cp39-macosx_10_9_x86_64.whl (506.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.13.4-cp39-cp39-macosx_10_9_universal2.whl (755.7 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.4.tar.gz
Algorithm Hash digest
SHA256 d97a6d09c66087890c2ab5d49069e1e570583f7ac0314ecf98294c1b6aaebd38
MD5 92be48d940ad3b635163b614e55a8fe1
BLAKE2b-256 454a064321452809dae953c1ed6e017504e72551a26b6f5708a5a80e4bf556ff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 014dcc10ec8ab8db681f0d68e939d1e9286a5aa2b993cbbdb0db130853e02144
MD5 b50f2cb890dc6b8d6cfae78e1c8f89e0
BLAKE2b-256 bc8f87c56a1a1977d7dddea5b31e12189665a140fdb48a71e9038ff90bb564ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 472.5 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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c606aa5656dab6552e52ca368e43869c916338346bfaf6304e15c58fb113ea30
MD5 2512c3c7e0771f16bb995cef2236b03b
BLAKE2b-256 37581b11c71904b8d079eb0c39fe664180dd1e14bebe5608e235d8bfbadc8929

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb19177205d93b881f3f89e6081593676043a6828f59c78c17a0fd6c1fbed2ba
MD5 15333b3abe0e6b17ba2c2a44ad48f8ff
BLAKE2b-256 1ae61b3566e103eca6da5be4ae6713e112a053725c584e96574caf117568ffef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d99a9d168ebaffb74f36d011750e490085ac418f4db926cce3989c8fe6cb6b1b
MD5 941f15c2467918f9f54d92f33e220a66
BLAKE2b-256 8f7207181226bc99ce1124e0f89280f5221a82d3ae6a6d9d1973ce429d48e52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0c296f1221e21ba979f5ac1964c3b78cfde15c5c5f855ffd2caab337e9cd9182
MD5 a86c4ec1b515efa71c736c792ce9bd1a
BLAKE2b-256 a97fb3481a81e7a586d02e99387b18c6dafff41285f6efd3daa2124c01f87eae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e217cf9f6a42908c52b46e42c568bd57adc39c9286ced31aaace614b6087965
MD5 0ef9228dc00c1370c73331246f00fad0
BLAKE2b-256 84439b2147a1df3559f49bd723e22905b46a46c068a53adb54abdca32c4de180

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34e89912b6c20e0fd80e07fa401fd218a410aa1ce9f1c2f1dad6db1bd0ce0927
MD5 2e8ec55e5da94203ec4a1ca226b1cb59
BLAKE2b-256 5c10c00323348695e9a5e316825969c88463dcc24c7e9d443244b8a2c9cf2eae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea2e071661ba9cfe11eabbc81ac5376eaeb3061f6e72ec4cc86d7cdd1ffbdbbb
MD5 0d1efbfebbfb1d88d08875f90265c823
BLAKE2b-256 d6c17bad8be33bb06c2bb224b6468874346026092762cbec388c3bdb65a368ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ca114790c9144c335d538852612d3e43ea0f075288f4849cf4b05d6cd2238ce7
MD5 a87d73843e5b3f0320e07289be2ae167
BLAKE2b-256 d823e98075c5bb146aa61a1239ee1ac7714c85e814838d6cebbe37d3fe19214a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98e968cdaba43e45c73c3f306fca418c8009a957733bac85937c9f9cf3f4de27
MD5 76e1a7b7b9b342d76b0dd56ac440d6f8
BLAKE2b-256 d6b5e4eb20275a866dde0f570f411b36c6b48f7b53edfe4f4071aa1b0728098a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8ac32a189081ae0a10ba18993f10f338ec94341f0d5df8fff348043962f3c6f8
MD5 8be2e1c4372590db1c74c6094f273441
BLAKE2b-256 ad529204bb59c014869b71971addad6778f005daa72a96eed652c496789d7468

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0e5d701c0aad02a7dce72eef6b93226cf3734330f1a31d69ebbf69f33b86666e
MD5 8f5aeb31da601c352ab182bc6d6aebd6
BLAKE2b-256 9e2d0883ef9d878d7846287f036c162a951968f22aabeef3ac97b0bea6f76d5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1db491abe852ca2fa6cc48a3341985b0174b3741838e1341b82ac82c8bd9e871
MD5 222718d21c7e831e52d80d38bf4afe1c
BLAKE2b-256 d2b4a24d82112c304afdb650167ef2fe190957d81cbddac7460bedd245f765aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dae86be9811493f9990ef44fff1685f5c1a3192e9061a71a109d527944eed551
MD5 9cc2fb3681d387063c277b47c4181044
BLAKE2b-256 90572326b37b10896447e3c6e0cbef4fe2486d30913639a5cfd1332b5d870f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c97989ae40a9746650fa196894f317dafc12227c808c774929dda0ff873a5954
MD5 50137553f812cdb2fcf4b64d9a45f9c6
BLAKE2b-256 1b1f62e5d400603e8468cd635812d99cb81cfdc08127a3dc474c647615f31339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 74c80b2bc2c2adb7b3d1941b2b60701ee2af8296fc8aad8b8bc48bc25767266c
MD5 2ff48c91fb545416326911e329d0b3f7
BLAKE2b-256 9753532b8d28df1e17e44c4d9a9368b78dcb6bf0b51037522136eced13afa9e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 45abbbf09a129825d13c18c7d3182fecd46d9da3cfc383756145394013604ac1
MD5 290bddbc5acb677ef01e1dcc4dbe7b16
BLAKE2b-256 47fbe41b63c6ce71b07a59243bb8f3b457ee0c3402a619acb9d2c0d21ef0e647

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c555db4bc7a264bead5a7d63d92d41a1122fcd39cc62a4db815f45ad46f9c2c8
MD5 760577b989bd5890dc8afd40e4846920
BLAKE2b-256 40b254b487316c2df3e03a8f3435e9636f8a81a42a69d942164830d193beb56a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 438.7 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a598a5c5767e1369d8f5b08695cab1d8160040f796c4416af76fd773d229b3c9
MD5 2e80235090fd13697cc95f0f25ca7a4c
BLAKE2b-256 5374b32458ca1a7f34d65bdee7aef2036adbe0438123d3d53e2b083c453c24dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3295f98bfeed2e867cab588f2a146a9db37a85e3ae9062abf46ba062bd29165
MD5 48150ef0bd4075646a489942192b9a61
BLAKE2b-256 18bc28d4970e7d5452ac7776cdb5431a1164a0d9cf8bd2fffd67b4fb463aa56d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bcf0c9902085976edc0232b75006ef38f89686901249ce14226b6877f88464fb
MD5 7168f0e17edbdc74cda28c957c826b3f
BLAKE2b-256 679f13b72435f99151dd9a5469c96b3b5f86aa29b7e785ca7f35cf5e538f74c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d5bea57be7aca98dbbac8da046d99b5557c5cf4e28538c4c786313078aca09e
MD5 be59a4b947e1ecf22996c8dbc69d652f
BLAKE2b-256 5abf72326f8a98e4c666f292f03c385545963cc65e358835d2a7375037a97b57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5903e2db3d202a00ad9f0ec35a122c005e85d90c9836ab4cda628f01edf425e2
MD5 3df94ef81232faaba89d07b0f3e506d0
BLAKE2b-256 2febaf0ab1a3650092cbd8e14ef29e4ab0209e1460e1c299996c3f8288b3f1ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f6ec32162d293b82f8b63a16edc80769662fbd5ae6fbd4936d3206a2c2cc63b
MD5 d40fc945a4c157e83c082f5fbc1a88a3
BLAKE2b-256 d80d66402894dbcf470ef7db99449e436105ea862c24f7ea4c95c683e635af35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76093107c531517001114f0ebdb4f46858ce818590363e3e99a4a2280334454a
MD5 477762799038aea793388dc00d2e7f4a
BLAKE2b-256 9817e689fd500da52488ec5f889effd6404dece6a59de301e380f3c64f167beb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f062c45de8a1098cb137a1898819796a2491aec4e637a06b03f149315dff4d8f
MD5 4c23300b5e3a355aae70457768a73f13
BLAKE2b-256 20a20d4b03d011cca6b6b0acba8433193c1e484efa8d705ea58295590fe24203

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0c0c7c07c4257ef3a1df355f840bc62d133bcdef5c1c5ba75add3c08553e2eed
MD5 b9211fe736e9aec753d5dbed433bc6cc
BLAKE2b-256 5a5f5b46fe8694a639ddea2cd035bf5729e4677ea882cb251396637e2ef1590d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 92deb95469928cc41fd4b42a95d8012fa6df93f6b1c0a83af0ffbc4a5e218cde
MD5 5b2d9a1d539c5c89055048f89a534171
BLAKE2b-256 9301c81e97e85c774decbaf0d577de7d848934e8166a3a14ad9f8aa5be329d28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 42adaeea83cbdf069ab94f5103ce0787c21fb1a0153270da76b59d5578302329
MD5 e45a0721bdbb1a103c8ec73d65abdba8
BLAKE2b-256 577c8972ae3fb7be00a91aee6b644b2a6a909aedb2c425269a3bfd90115e6f8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d36fc1709110ec1e87a229b201dd3ddc32aa01e98e7868083a794609b081c349
MD5 f877f896a6fba48c925c9bde3dd4efd8
BLAKE2b-256 b0b9a7a0463a09e1a3fe35100f74324f23644bfc3383ac5fd5effe0722a5f0b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f989ac8bc5595ff761a5ccd32bdb0768a117f36dd1504b1c2c074ed5d3f4df9c
MD5 b60a4cc4128e7e473d17c2b669504fc5
BLAKE2b-256 e5feee6298e8e586096fb6f5eddd31393d8544f33ae0792c71ecbb4c2bef98ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 351f3171e2458da3d731ce83f9e6b9619e325c45cbd534c7759750cabf453ad7
MD5 99a0c70640fe2957c7ccf37282ab03bc
BLAKE2b-256 9313e372dd4e68ad04ee25dafb050c7f98b0d91ea643f7352757e87231102555

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 153274535985a0ff2bff1fb6c104ed547cec898a09213d21b0f791a44b14d933
MD5 89b6fd1f2ee6dc407b1d780432d38f9a
BLAKE2b-256 907f30ccdf67ca3d24b610067dc63d64dcb91e5d88e27667811640644aa4a85d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 e0a2c961fc92abeff61d6444f2ce6ad35bb982db9fc8ff8a47455beacf454a57
MD5 9f8952c99948642ad96a97c2c60ca7ad
BLAKE2b-256 6d296657cc37ae04cacc2dbf53fb730a06b6091cc4cbe745028e047c53e6d840

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 459.8 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 74a2eb058da44fa3a877a49e2095b591d4913308bb424c418b77beb160c55ce3
MD5 5b058dd8f9e9536ec71523a47f25ca4b
BLAKE2b-256 eac0649856ee655a843c8f8664592cfccb73ac80ede6a8c8db33a25d810c12db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 433.2 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48708e2706106da6967eff5908c78ca3943f005ed6bcb75da2a7e4da94ef8c70
MD5 3ba894e94b3fe9ff14435ceacfd2c845
BLAKE2b-256 7bf213e46e0df051494d7d3c68b7f72d071f48c384c12716fc294f75d5b1a064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c946f10f413836f82ea4cfb90200d2a59578c549f00857e03111cf45ad01ca5
MD5 6e506056e274c25cdbb8fcef9bb0e96f
BLAKE2b-256 177d5873e98230bde59f493bf1f7c3e327486a4b5653fa401144704df5d00211

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a533ec132f05fd9a1d959e7f34184cd7d5e8511584848dab85faefbaac573069
MD5 32c364ff8f9c11e0289f80cedbcc19ee
BLAKE2b-256 50b48032cc9b82d17e4277704ba30509eaccb39329dc18d6a35f05e424439e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 90c06228a6c3a7c9f776fe4fc0b7ff647fffd3bed93779a6913c804ae00c1073
MD5 bb56e47886dcd584fd68fa452777a275
BLAKE2b-256 e030836278675205d58c1368b21520eab9572457cf19afd23759216c04483048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 29be00c51972b04bf9d5c8f2d7f7314f48f96070ca40a873a53056e652e805f7
MD5 8b9df5f78d38f6d6422ae9ff066aa884
BLAKE2b-256 553acbc6b3b124859a11bc8055d3682c26999b393531ef926754a3445b99dfef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9eb9c2eea7278206b5c6c1441fdd9dc420c278ead3f3b2cc87f9b693698cc500
MD5 1bd419d7e6c241c754d2a35a027afe29
BLAKE2b-256 7963d8f29021e39bc5af8e5d5e9da1b07976fb9846487a784e11e4f4eeda4666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e587fcfce2bcf06526a43cb705bdee21ac089096f2e271d75de9c339db3100c
MD5 99e859a9a7672078a81eec52d8ba65e1
BLAKE2b-256 b6774ab5a546857bb3028fbaf34d6eea180267bdab022ee8b1168b1fcde4bfdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 320e40192a2dcc1cf4b5576936e9652981ab596bf81eb309535db7e2f5b5672f
MD5 01095d0ba2999b1ad910da755875f21e
BLAKE2b-256 49613ce326a1538781deb89f6cf5e094e2029cd308ed1e21b2ba2278b08426f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 534913dfb0a644d537aebb4123e7d466d94e3be5549205e6a31f72368980a81a
MD5 4607b6f1328bce9a937989dd10ba9844
BLAKE2b-256 c894d99dbfbd1924a87ef643833932eb2a3d9e5eee87656efea7d78058539eff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 13a5cc924b59859ad2adb1478e31f410a7ed46e92a2a619d6d1dd1a63c1a855e
MD5 319d1a87fbcdfdff0d93ee2ac5d61ca1
BLAKE2b-256 0d2dc20791e3437700a7441a7edfb59731150322424f5aadf635602d1d326101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 20af8aad61d1803ff11152a26146d8d81c266aa8c5aa9b4504432abb965c36a0
MD5 f67ee96b79d000657be7df389f99b9c8
BLAKE2b-256 7b6c5d0a3394dd2b9f9aeba6e1b6065d0439e4b75d41f1fb09a3ec010b43552b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b252e8d5cd66184b570d0d010de742736e8a4fab22c58299772b0c5a466d4b21
MD5 7b50c1cf98f52172aaf00a7cb323ae87
BLAKE2b-256 e24de02627b2683f68051246215d2d62b2d2f249ff7a285e7a858dc47d6b6a14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b061e7b5f840391e3f64d0ddf672973e45c4cfff7a0feea425ea24e51530fc2
MD5 0e00308c41ca0d7f068f44d1aad88816
BLAKE2b-256 20d6492f46bf0328534124772d0cf58570acae5b286ea25006900650f69dae0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda8f16ea99d6a6705e5946732e48487a448be874e54a4f73d514660ff7c05d3
MD5 87d56530b8d4d3b231b79be0ae78f0af
BLAKE2b-256 944207e1b543a61250783650df13da8ddcdc0d0a5538b2bd15cef6e042aefc61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 746ac3cc00b5baea424dacddea3ec2c2702f9590de27d837aa67004db1eebc6e
MD5 51eb2ff32d92c73304beb59adf976e2f
BLAKE2b-256 97a9c5b87e4443a2f0ea88cb3000c93a8fdad1ee63bffc9ded8d8c8e0d66efc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 63dd5e5b1e43b8fb1e91b79b7ceba1feba588b317d1edff385084fcc7a0a4538
MD5 f394157cf51b86c816f97568ff19a427
BLAKE2b-256 e3ac892f4162df9b115b4758d615f32ec63d00f3084c705ff5526630887b9b42

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 461.3 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6148c9ae97a3e8bff9a1fc9c757fa164116f86c100468339730e717590a3fb77
MD5 7e2dc8894bdc638e2cac6520b3481d4f
BLAKE2b-256 1e1ad92e3325134ebfff6f4069f270d3aac770d63320bd1fcd0eca023e74d9a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 434.2 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fc432f6a2c4f720180959bc19aa37259651c1a4ed8af8afc84dd41c60f15f791
MD5 7aa0bc556129bf2207ae24c430b4c26d
BLAKE2b-256 02bf535e58d886cfbc40a8b0013c974afad24ef7632d645bca0b678b70033a60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b08149419994cdd4d5eecf7fd4bc5986b5a9380285bcd01ab4c0d6bfca47b79d
MD5 3d0ad83d91ada4b0747a3815e5d50589
BLAKE2b-256 eb0f60374e18d590de16dcb39d6ff62f39c096c1b958e6f37727b5870026ea30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3d1ba8afb847ff80626d5e408c1fdc99f942acc877d0702fe137015903a220a9
MD5 2cb5dcbe6976e17907b3dbc8d3cf1dc4
BLAKE2b-256 784512e1a3d0645968b1c38de4b23fdf270b8637735ea057d4f84482ff918ad9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2062f675f3fe6e06d6113eb74a157fb9df58953ffed0cdb4182554b116545758
MD5 bd3bb4ec23722c545212867e9034aa0a
BLAKE2b-256 e4288f7a2d4492e336e40005151bdd94baf344880a4707573378579f833a64c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4a31c0c587a8a038f19a4c7e60654a6c899c9de9174593a13e7cc6e15ff271f9
MD5 dd460fcf97d9bff703c52e95d4bed49f
BLAKE2b-256 f430e717fc5df83133ba467a560b6d8ef20197037b4bb5d7075b90037de1018e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7bc30cceb710cf6a44e9617e43eebb6e3e43ad855a34da7b4b6a73537d8a6763
MD5 936c48d14a0e92627a5eaa2fcd2f037c
BLAKE2b-256 960a3e86d039438a74a86e6a948a9119b22540bae037d6ba317a042ae3c22711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 898ea1850656d7d61832ef06aa9846ab3ddb1621b74f46de78fbc5e1a586ba83
MD5 be309c4c67ce1d4caf4cf0a0d4ddb2b1
BLAKE2b-256 6c58e1289661a32161e24c1fe479711d783067210d266842523752869cc1d9c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 358a6af0145bc4dda037f13167bef3cce54b132087acc4c295c739d05d16b1c3
MD5 b5a24f705787403631d327558266765e
BLAKE2b-256 aa06f207cb3121852c989586a6fc16ff854c4fcc8651b86c5d3bd1fc83057650

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 54203e10405c06f8b6020bd1e076ae0fe6c194adcee12a5a78af3ffa3c57025e
MD5 beaf6a7ef797f733bdb7222aab3fab6f
BLAKE2b-256 b0b6f7f4f318c7e58c23b761c9b13b9a3c9b394e0f9d5d76fbc6622fa98509f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5977f701b3fff36367a11087f30ea73c212e686d41cd363c50c022d48b011d8d
MD5 3023d3de557fffd79746b292f3501497
BLAKE2b-256 1047689c743abf62ea7a77774d5722f220e2c912a77d65d368b884d9779ef41b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e08abcfe752a454d2cb89ff0c08f2d1ecd057ae3e8cc6d84638de853530ebab
MD5 9c358214236ee59ac7033cdfd81eafeb
BLAKE2b-256 ecdf28146785a007f7820416be05d4f28cc207493efd1e8c6c1068e9bdc29198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 0ce692c3468fa831af7dceed52edf51ac348cebfc8d3feb935927b63bd3e8576
MD5 8e1e00cfb508c07ca0d0fe5c4713f542
BLAKE2b-256 8b15fdb90a5cf5a1f52845c276e76298c75fbbcc0ac2b4a86551906d54529965

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d738ebab9f71ee652d9dbd0211057690022201b11197f9a7324fd4dba128aa97
MD5 cda8abf8628901b4c2eeec4aab86cd7d
BLAKE2b-256 d61088ff67cd48a6ec36335b63a640abe86135791544863e0cfe1f065d6cef7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4baa48ce49efd82d6b1a0be12d6a36b35e5594d1dd42f8bfba96ea9f8678b88c
MD5 286da3516d39e5afae0fbbf128fcbc4c
BLAKE2b-256 faf9a5ede193c08f13cc42c0a5b50d1e246ecee9115e4cf6e900d8dbd8fd6acb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c0fd8f41b54b58636402eb493afd512c23580456f022c1ba2db0f810c959ed0d
MD5 4ec10d3ac44ec677189a5bbb3f21a501
BLAKE2b-256 90de581c053253c07b480b03785196ca5335e3c606a37dc73e95f6527f1591fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ee62d4471ce86b108b19c3364db4b91180d13fe3510144872d6bad5401957360
MD5 b7cae3d0b700830efd61bddf8dcc2853
BLAKE2b-256 1ebdede278648914cabbabfdf95e436679b5d4156e417896a9b9f4587169e376

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 463.8 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c033f2bc964156030772d31cbf7e5defea181238ce1f87b9455b786de7d30145
MD5 92a7d6e64409c083d05b8e74445c0cf2
BLAKE2b-256 0cf5ac409ecd1007528d15c3e8c3a57d34f334c70d76cfb7128a28cffdebd4c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 439.7 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54049021bc626f53a5394c29e8c444f726ee5a14b6e89e0ad118315b1f90f5e3
MD5 b19b7616f592ce959c41a119f1795f3f
BLAKE2b-256 1e198bbf6a4994205d96831f97b7d21a0feed120136e6267b5b22d229c6dc4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6630ec917e85c5356b2295744c8a97d40f007f96a1c76bf1928dc2e27465393
MD5 fcbaa7f85533a13732ce34f630077a17
BLAKE2b-256 f55c9dc8293ed31b46c39c9c513ac7ca152b3c3d38e0ea111a530ad12001b827

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 67a3ec705534a614b68bbf1c70efa777a21c3da3895d1c44510a41f5a7ae0453
MD5 8bce5de27c90b9328cf47a709d4fc684
BLAKE2b-256 bc894eecad8c1858e6d0893c05929e22343e0ebe3aec29a8a399c65c3cc38311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7f78cb080c86fbf765920e5f1ef35af3f24ec4314d6675d0a21eaf41f6f2679c
MD5 8bff12a150b07e7ecef73d041b59564e
BLAKE2b-256 fb7fb48d5577338d4b25bbdbae35c75dbfd0493cb8886dc586fbfb2e90862239

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 49f0b18a9b05d79f6f37ddd567695943fcefb834ef480f17a4211987302b2dc7
MD5 f0120d1e84d5321568d13077903ae140
BLAKE2b-256 22048cdd99af988d2aa6922714d957d21383c559835cbd43fbf5a47ddf2e0f05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d85965d3ba21ee4999e83e992fecb86c4614d6920e40705501c0a1f80a583c12
MD5 753a89204b56d2e40dafbb5ab4fae386
BLAKE2b-256 d4011ef1adae1454341ec50a789f03cfafe4c4ac9c003f6a64515ecd32fe4210

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba5cf98b5dcb9bddd857da6713a503fa6d341043258ca823f0f5ab7ab4a94ee8
MD5 3261ac8d71d1ffa7cac5df14d2c59250
BLAKE2b-256 d74b4813344aacdb8127263e3eec343d24e973421143826364fa9fc847f6283f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5c7ff1028e3c9fc5123a865ce17df1cb6424d180c503b8517afbe89aa566e6be
MD5 60a8ed2d3c550fcebe96abf9104fd251
BLAKE2b-256 f357462fe1d3da08109ba4aa8590e7aed57c059af2a7e80ec21f4bac5cfe1094

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0bc0a5cf4f10ef5a2c94fdde488734b582a3a7a000b131263e27c9295bd682d9
MD5 5361a780ad11cadb4e79216f0ac94232
BLAKE2b-256 af5329f9e2054ea6900413f3b4c3eb9d8331f60678ec855f13ba8714c47fd48d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8af249343fafd5ad90366a16d230fc265cf1149f26075dc9fe93cfd7c7173942
MD5 aad1c44f62f69092a6326eab93199afb
BLAKE2b-256 2a1f79acf0974ced805e0e70027389fccbb7d728e6f30fcac725fb1071e63075

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e56423766399b4c77b965f6aaab6c9546617b8994a956821cc507d00b91d978c
MD5 e19d945d3e1748319f6f08115b7b9d21
BLAKE2b-256 811678a2f5d9c124ad05d5ce59a9af94214b6466c3491a25fb70760e98e9f762

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 473bb5aa4218dd254e9ae4834f20e31f5a0083064ac0136a01a62ddbae2eaa42
MD5 c36f6e18f061d1651d6542b59bdb01cc
BLAKE2b-256 98afaf6e20113ba6a48fd1cd9e5832c4851e7613ef50c7619acdaee6ec5f1aff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3262386c4ff370849863ea93b9ea60fd59c6cf56bf8f93beac625cf4d677c04d
MD5 4001ea9ae5bdb101cb0d196ab3d0b0b6
BLAKE2b-256 fad6acd47b5f17c4430e555590990a4746efbcb2079909bb865516892bf85f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dcfb50ee25b3b7a1222a9123be1f9f89e56e67636b561441f0b304e25aaef8f
MD5 d48231ca4cc1766a514c9fcd8653b884
BLAKE2b-256 36a3d28b2722ec13107f2e37a86b8a169897308bab6a3b9e071ecead9d67bd9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f742e1fa45c0ed522b00ede565e18f97e4cf8d1883a712ac42d0339dfb0cce7
MD5 80cf96e55bd53fa6d629346b304b5356
BLAKE2b-256 5ecd2db3c9397c3bd24216b203dd739945b04f8b87bb036c640da7ddb63c75ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8ea0c64d1bcbf201b285c2246c51a0c035ba3bbd306640007bc5844a3b4658c1
MD5 2ce7fb09a7390e3c0ea798cb6e9768ea
BLAKE2b-256 d47ecb94129302d78c46662b47f9897d642fd0b33bdfef4b73b20c6ced35aa4c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a7058af1f53209fdf07745579ced525d38d481650a989b7aa4a3b484b901cdab
MD5 3d3f8966f3491337add42384e5719d0a
BLAKE2b-256 23f97cf1688da4dd0885f914ee40bc8e1dce776df98fe6518766de975a570538

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 440.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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 13168f5645d9045522c6cef818f54295376257ed8d02513a37c2ef3046fc7a97
MD5 f2ac287e224d5cc96dc98287e42bcfd6
BLAKE2b-256 52c1bb33be79fd285c69f32e5b074b299cae8847f748950149c3965c1b3b3adf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 463fa18a95c5a635d2b8c09babe240f9d7dbf2a2010a6c0b35d8c4dff2a0e819
MD5 6ed0d1c06204fee3a8c3a852b59addce
BLAKE2b-256 199ff64b95392ddd4e204fd9ab7cd33dd18d14ac9e4b86866f1f6a69b7cda83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ec75fc18cb9f4aca51c2cbace20cf6716e36850f44189644d2d69a875d5e0532
MD5 9a91e7809a3d2d32ae1a2cf13488ae31
BLAKE2b-256 18e793d5fa06fe00219a81466577dacae9e3732f3b4f767b12b2e2cc8c35c970

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6b335919ffbaf98df8ff3c74f7a6decb8775882632952fd1810a017e38f15aee
MD5 05c108e29e7fe4c89e2b8c2b83f8ef84
BLAKE2b-256 1c45314e8e64c7f328174964b6db511dd5e9e60c9121ab5457bc2c908b7d03a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7c65738ac5ae32b8feef699a4ed0dc91a0c8618b347781b7461458bbcaaac7eb
MD5 6e0166372023be3db3c7ca16d7b429d0
BLAKE2b-256 fffaab316931afc7a73c7f493bb1b30fbd61e28ec2d3ea50353336e76293e8ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb10ce8c03850e77f4d9518961c227be569e12f71525a7e90d17bca04299921d
MD5 cae93d731848954230d567ab992afa1c
BLAKE2b-256 4015bcad6b68d7bef27ae7443288215767263c7753ede164267cf6cf63c94a87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10fb7b53262cf4144a083c9db0d2b4d22823d6708270a9970c4627b248c6064c
MD5 7141ac448845e2a3cd12e9ddc9f5ad2e
BLAKE2b-256 daf121cbf5f7fa1e267af6301f886cab9b314f085e4d0097668d189d165cd7da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0d0dbc6c76befa76865373d6aa303e480bb8c3486e7763530f7f6e527b471118
MD5 1faef61147ca5c7ac7b2304d72da90e2
BLAKE2b-256 c954841e87b8c51c2adc01a3ceb9919dc45c7899fe4c21deb70aada734ea5a38

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cdd3393130bf6588962441ffd5bde1d3ea2d63a64afa7119b3f3ba349cebbe7
MD5 24559cc2de2f4948ae44dd9ff03239fa
BLAKE2b-256 4a4c0051d4550fb9e8b5ca4e0fe1ccd58652340915180c5164999e6741bf2083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6234bf416a38d687c3ab7f79934d7fb2a42117a5b9813aca07de0a5398489023
MD5 3a8526b06a4f4cca9178905475f7a59a
BLAKE2b-256 4ca6575886f417ac3c08e462f2ca237cc49f436bd992ca3f7ff95b7dd9c44205

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1867087e2c1963db1216aedf001efe3b129835ed2b05d97d058176a6d08b5726
MD5 f5544dc9b2f8c9fcf638b8ac8aa07a72
BLAKE2b-256 a1e8d2f1a2da2743e32fe348ebf8a4c59caad14a92f5f18af616fd33381275e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 383880f7b8de5ac208fa829c7038d08e66377283b2de9e791b71e06e803153c2
MD5 97a70d6e6d449552406d3efc1685efcb
BLAKE2b-256 1c723775116969931f151be116689d2ae6ddafff2ec2887d8f9b4e7043f32e74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 717d17347567ded1e273aa09918650dfd6fd06f461549204570c7973537d4123
MD5 9e8fca9980599044af9d04e716a35bc5
BLAKE2b-256 8ca4bbc989f5362066b81930da1a66084a859a971d03faab799dc59a3ce3a220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2710ae1e1b81d0f187883b6e9d66cecf8794b50e91aa1e73fc78bfb5503b5d9
MD5 7cb01cb223e3c83cfc6ab87dad0d5b82
BLAKE2b-256 b4e58f42033c7ce98b54dfd3791f03e60231cfe4a2db4471b5fc188df2b8a6ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7520d92c0e8fbbe63f36f20a5762db349ff574ad38ad7bc7732558a650439845
MD5 69b715f32ae77d1aca38f4c54ed59d23
BLAKE2b-256 b4c1e5b7f25f6dd1ab57da92aa9d226b2c8b56f223dd20475d3ddfddaba86ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6290fe12fe8cefa6ea3c1c5b969d32c010dfe191d4392ff9b599a3f473cbe722
MD5 d214fa4f00587698d315435ca2942369
BLAKE2b-256 2c056817e0390eb47b0867cf8efdb535298191662192281bc3ca62a0cb7973eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 464.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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5444dce2e6fba0a1dc2d58d026e674f25f21de178c6f844342629bcef019f2f
MD5 d5da4c9d38949ac4d48d95f1e5d04f98
BLAKE2b-256 b1618a7191782a31ae3c7f7cee2cd2e37b3ee5849666767db116d449cfe20b88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 441.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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1746338dc2a33cf706cd7446575d13d451f28f9860bebc908c7632b22e71ae3f
MD5 0a4edce5545ea54789826e3516006b35
BLAKE2b-256 21723fb0ea857c891de89f6914f737f7423b7fa4dd1f46d8ce621eb07595ff4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d904084985ca66459e93797e5e05985c048a9c0633655331144c089943e53d12
MD5 54318bf67c95283cf588e6174afea939
BLAKE2b-256 d43c9b39bc9609cac87e19b3394b7ed4bbab3787b434b14e012b9e16be64e9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c344c47e85678e410b064fc2ace14db86bb69db7ed5520c234bf13aed603ec30
MD5 b9871521945b1f8a4ee8755a6d7a7269
BLAKE2b-256 72636b80cef343a0527690588808d02aad7604cc4e23eaab207179e77dd607be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 19f60011ad60e40a01d242238bb335399e3a4d8df958c63cbb835add8d5c3b5a
MD5 a79acd69f2c3ecd9c1334a282d3b1a15
BLAKE2b-256 c1863b742bd9204b7deb4f61e6723b1f42a8211ccc60dfddb3e52a6cd4329d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2d15e7e4f1099d9e4d863eaf77a8eee5dcb002b7d7188061b0fbee37f845899e
MD5 e3d431d67e39a56e9ad1b0a0104300da
BLAKE2b-256 dac831e487fb16d37c89cc6ee190a424b218471750ac48a227e042e200a17687

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 797613182ffaaca0b9ad5f3b3d3ce5d21242c768f75e66c750b8292bd97c9de3
MD5 3cd75b300b1acfeb8bc8ee96b8609a92
BLAKE2b-256 cf983d63d2f2e06808911e103d6d47c400548cf26a23dd3275de594339ff8e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e2e68085730a03704beb2cff035fa8648f62c9f93758d7e6d70add7f7bb5b3b
MD5 138d1719e7da6004396c190fef611455
BLAKE2b-256 bc56e7e972f1bed922297d72cc1d27bae6b2e28fdc2d6a895320e396a93c0f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 b3d525648fe7c8b4977e460c18098f9f81d7991d72edfdc2f13cf96068f279bc
MD5 bf5b623e725c22957eef8b7a46d9ab5f
BLAKE2b-256 7d8cf1b7f03e745fa6281dd949673297c7ac54d7cc54d2e58beb5135ac5c6204

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c3f733916e85506b8000dddc071c6b82f8c68f56c99adb328d6550017db062d
MD5 0c933920ca7b2bb0646f45d5481f74ea
BLAKE2b-256 fa69e6b566c638b37bfa14b98c2c429fcdba3b097a990acc9845fcc779ce39cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 26ed03f7d3d6453634729e2c7600d7255d65e879559c5a48fe1bb78355cde74b
MD5 27dd28d6fbf875c71dbf2d32eca61009
BLAKE2b-256 15fde41981d0f9e0dccfb8f2580d4e64e6c59d293b9b0815849950cc499fe53a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ce7320a945aac4bf0bb8901600e4f9409eb602f25ce3ef4d275b48f6d704a862
MD5 04a2bcb77ad3fd7c1884a9f4b304c4d4
BLAKE2b-256 89803793f0a1148a42190f6824ce9a0af79910cd3df8dfc58fa784234a7d9e41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3b4e07d8803a70dd886b5f38588e5b49f894995ca8e132b06c31a2583ae2ef6e
MD5 0b111178beee1ecdf3363b3119583132
BLAKE2b-256 7a406f4ca61736a16deed2d2762a8dbeaaa48ad292974489be2a2f32f62a4e0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5539ec0d6a3a5c6799b661b7e79166ad1b7ae71ccb59a92fcb6b4ef89295bc94
MD5 274304ea42c876848005e778af6f9be0
BLAKE2b-256 52cd7824ee57dde8ca7f62e7fbc247ebe1aa3b5495d3598f0c516f06de1ef7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 907ad36b6a65cff7d88d7aca0f77c650546ba850a4f92c92ecb83590d4613249
MD5 94e18f390971b94863c1e42ca87b5ff2
BLAKE2b-256 cffbdacf759c43cfb5fa32568bd369f054eeb23906ab23f4e3663e01e04c7988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb15595eb52870f84248d7cc97013a76f52ab02ff74d394be093b1d9b8b82bc0
MD5 9d85c06a8184b85734372134e1f3be5d
BLAKE2b-256 27b3fdb36e59b9fb37297b1651248d3d84e61faa49af2faabc1e243d3f75585f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b3f00bb9403728b08eb3951e982ca0a409c7a871d709684623daeab79465b181
MD5 0f9ca7d2b0e90ab3cc0849a6f168dc05
BLAKE2b-256 0af917e8a70abe874ec694395119338fde2f13ee1903bd14f3fd5b310b77a1ea

See more details on using hashes here.

Provenance

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