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).

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.14.1.tar.gz (8.0 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.14.1-cp314-cp314t-win_arm64.whl (469.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiohttp-3.14.1-cp314-cp314t-win_amd64.whl (530.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.14.1-cp314-cp314t-win32.whl (494.2 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.7 MB view details)

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

aiohttp-3.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

aiohttp-3.14.1-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.14.1-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.14.1-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.14.1-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.14.1-cp314-cp314t-macosx_11_0_arm64.whl (532.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.14.1-cp314-cp314t-macosx_10_15_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiohttp-3.14.1-cp314-cp314t-macosx_10_15_universal2.whl (793.3 kB view details)

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

aiohttp-3.14.1-cp314-cp314-win_arm64.whl (453.8 kB view details)

Uploaded CPython 3.14Windows ARM64

aiohttp-3.14.1-cp314-cp314-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.14.1-cp314-cp314-win32.whl (457.8 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.14.1-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.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

aiohttp-3.14.1-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.14.1-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.14.1-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.14.1-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.14.1-cp314-cp314-macosx_11_0_arm64.whl (512.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.14.1-cp314-cp314-macosx_10_15_x86_64.whl (512.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiohttp-3.14.1-cp314-cp314-macosx_10_15_universal2.whl (758.0 kB view details)

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

aiohttp-3.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (502.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (494.0 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl (487.9 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

aiohttp-3.14.1-cp314-cp314-android_24_x86_64.whl (514.7 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

aiohttp-3.14.1-cp314-cp314-android_24_arm64_v8a.whl (508.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

aiohttp-3.14.1-cp313-cp313-win_arm64.whl (447.7 kB view details)

Uploaded CPython 3.13Windows ARM64

aiohttp-3.14.1-cp313-cp313-win_amd64.whl (479.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.14.1-cp313-cp313-win32.whl (452.7 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

aiohttp-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.14.1-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.14.1-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.14.1-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.14.1-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.14.1-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.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

aiohttp-3.14.1-cp313-cp313-macosx_11_0_arm64.whl (508.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl (510.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.14.1-cp313-cp313-macosx_10_13_universal2.whl (752.0 kB view details)

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

aiohttp-3.14.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (501.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (492.1 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl (485.8 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

aiohttp-3.14.1-cp313-cp313-android_21_x86_64.whl (515.3 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

aiohttp-3.14.1-cp313-cp313-android_21_arm64_v8a.whl (506.9 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

aiohttp-3.14.1-cp312-cp312-win_arm64.whl (448.1 kB view details)

Uploaded CPython 3.12Windows ARM64

aiohttp-3.14.1-cp312-cp312-win_amd64.whl (479.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.14.1-cp312-cp312-win32.whl (452.8 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.14.1-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.14.1-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.14.1-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.14.1-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.14.1-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.14.1-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.14.1-cp312-cp312-macosx_11_0_arm64.whl (512.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl (512.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.14.1-cp312-cp312-macosx_10_13_universal2.whl (757.4 kB view details)

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

aiohttp-3.14.1-cp311-cp311-win_arm64.whl (453.0 kB view details)

Uploaded CPython 3.11Windows ARM64

aiohttp-3.14.1-cp311-cp311-win_amd64.whl (483.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.14.1-cp311-cp311-win32.whl (458.4 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

aiohttp-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

aiohttp-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.14.1-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.14.1-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.14.1-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.14.1-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.14.1-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.14.1-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.14.1-cp311-cp311-macosx_11_0_arm64.whl (514.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl (518.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.14.1-cp311-cp311-macosx_10_9_universal2.whl (765.2 kB view details)

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

aiohttp-3.14.1-cp310-cp310-win_arm64.whl (453.5 kB view details)

Uploaded CPython 3.10Windows ARM64

aiohttp-3.14.1-cp310-cp310-win_amd64.whl (482.6 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.14.1-cp310-cp310-win32.whl (458.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.14.1-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.14.1-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.14.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

aiohttp-3.14.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

aiohttp-3.14.1-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.14.1-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.14.1-cp310-cp310-macosx_11_0_arm64.whl (514.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl (519.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.14.1-cp310-cp310-macosx_10_9_universal2.whl (766.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1.tar.gz
Algorithm Hash digest
SHA256 307f2cff90a764d329e77040603fa032db89c5c24fdad50c4c15334cba744035
MD5 4e93a92a72e98a53f7d08110e2dbd1a6
BLAKE2b-256 82788ea7308cac6934de8c74a14f3d5f65d1c89287426688be79538d0e5c013d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1.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.14.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 469.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 90d53f1609c29ccc2193945ef732428382a28f78d0456ae4d3daf0d48b74f0f6
MD5 18d232604c01a66dfd85de51c69599ba
BLAKE2b-256 2a716e22be134a4061ada85a92951b842f2657f17d926b727f3f94c56ae963d6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 5e78b522b7a6e27e0b25d19b247b75039ac4c94f99823e3c9e53ae1603a9f7e9
MD5 dbab82b80b52e1ecc2a97ee3d4051759
BLAKE2b-256 8a84ec80c2c1f66a952555a9f86df6b33af65108a6febfa0471b69013a12f807

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 47ddf841cdecc810749921d25606dee45857d12d2ad5ddb7b5bd7eab12e4b365
MD5 4fb4cf0cc923800efe975d4f71d2350e
BLAKE2b-256 7b3cbb4a7cba26956cb3da4553cc2056cf67be5b5ff6e6d8fa4fbdff73bfb7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99abd37084b82f5830c635fddd0b4993b9742a66eb746dacf433c8590e8f9e3c
MD5 c681c9bb72d4756bfe8380281f4664cd
BLAKE2b-256 44be0474c5a8b5640e1e4aa1923430a91f4151be82e511373fe764189b89aef5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ed09c7eb1c391271c2ed0314a51903e72a3acb653d5ccfc264cdf3ef11f8269d
MD5 a660cd2fb0d376b2ff396b4e1a4f9f99
BLAKE2b-256 3f227f73303d64dd567ff3addca90b556690ed1233a47b8f55d242fb90af3681

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b165790117eea512d7f3fb22f1f6dad3d55a7189571993eb015591c1401276d1
MD5 0dcb8a9f5a094cc6098fe80a541bd55c
BLAKE2b-256 93bdfb25f3049957553d4ce0ba6ae480aa2f592a6985497fca590837d16c1be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eefd9cc9b6d4a2db5f00a26bc3e4f9acf71926a6ec557cd56c9c6f27c290b665
MD5 e1760e7e8479169854e134ce0979a724
BLAKE2b-256 a8ae90395d4376deceb74e09ec26b6adf7d2015a6f8802d6d84446af860fef04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4132e72c608fe9fecb8f409113567605915b83e9bdd3ea56538d2f9cd35002f1
MD5 17549e26cf804a2420f4bedd8f548605
BLAKE2b-256 3dc0bbd054e2bee909f529523a5af3891052606af5143c09f5f183ec3b234676

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38e1e7daaea81df51c952e18483f323d878499a1e2bfe564790e0f9701d6f203
MD5 989ea0de25f76456a67a1c047b855a5e
BLAKE2b-256 6ac948255813cca749a229ef0ab476004ec623728ad79a9c0840616f6c076325

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 979ed4717f59b8bb12e3963378fa285d93d367e15bcd66c721311826d3c44a6c
MD5 ce8cc6bc52560dd602371190865cf7b2
BLAKE2b-256 0df14745806578d447db4a784a8591e2dae3afdfc2bcb96f8f81271b13df6543

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc0cacab7ba4e56f0f81c82a98c09bed2f39c940107b03a34b168bdf7597edd3
MD5 48898450b5d39d53ff3e52e24eaff4fd
BLAKE2b-256 664e560c7472d3d198a23aa5c8b19a5115bf6a9b77b7d3e4bb363da320430ad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c389c482a7e9b9dc3ee2701ac46c4125297a3818875b9c305ddb603c04828fd1
MD5 072f8953e5d519391cc810d2457fe17b
BLAKE2b-256 735d1430334858b1022b58ae50399a918f0bd6fe8fa7fa183598d657ff61e040

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4691802dda97be727f79d86818acaad7eb8e9252626a1d6b519fedbb92d5e251
MD5 3c47ac9fa3561fcf6cd408a59d402490
BLAKE2b-256 0bcbe2ee978a00cfb2df829704a69528b18154eba5939f45bc1efa8f33aee4c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 9e8f2d660c350b3d0e259c7a7e3d9b7fc8b41210cbcc3d4a7076ff0a5e5c2fdc
MD5 59f74696cc6538327e566285281f4ef1
BLAKE2b-256 c03ed3ba07a0ab38b5389e10bec4362d21e10a4f667cba2d79ba30837b3a5059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d6e0ac9da31c9c04c84e1c0182ad8d6df35965a85cae29cd71d089621b3ae94
MD5 16850b47e54d076bfa2029a31ca9ca4a
BLAKE2b-256 7e029ac85e081e53da2e061b02fa7758fe0a12d17b8ce2d1f5e6c7cb76730328

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1601cc37baf5750ccacae618ec2daf020769581695550e3b654a911f859c563d
MD5 220b1b9b6f921d8a51935907ec3eb09e
BLAKE2b-256 b9c814ce60ec31a2e5f5274bb17d383a6f7a3aabca31ac04eee05585bbadab16

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10ee9c1753a8f706345b22496c79fbddb5be0599e0823f3738b1534058e25340
MD5 9423747625e32ed42151a087d79383e8
BLAKE2b-256 7f201b7182219ba1b108430d6e4dc53d25ae02dcfcf5a045b33af4e8c5167527

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314t-macosx_10_15_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.14.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 819c054312f1af92947e6a55883d1b66feefab11531a7fc45e0fb9b63880b5c2
MD5 ff747e882ad503983b4904af2e1df58d
BLAKE2b-256 34e319dbe1a1f4cc6230eb9e314de7fe68053b0992f9302b27d12141a0b5db53

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314t-macosx_10_15_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.14.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cf4491381b1b57425c315a56a439251b1bdac07b2275f19a8c44bc57744532ec
MD5 5812f041b5a745944bf04d47bde0b6e3
BLAKE2b-256 df30491acfa2c4d6c3ff59c49a14fc1b50be3241e25bbb0c84c09e2da4d11395

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af8b4b81a960eeaf1234971ac3cd0ba5901f3cd42eae42a46b4d089a8b492719
MD5 ce7e1f72c428c134f669a365f41410df
BLAKE2b-256 f02b13e8d741a9ec5db7d900c060554cf8352ab85e44e2a4469ebb9d377bda17

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a9875b46d910cff3ea2f5962f9d266b465459fe634e22556ab9bd6fc1192eea0
MD5 c7b02e0eb939cb09a0b8a8e1bc7b1fc4
BLAKE2b-256 f21efbeb7af9210a67ac0f9c9bec0f8f4568497924e33137a3d5b48e1cf85f3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ffbb2f4ec1ceaff7e07d43922954da26b223d188bf30658e561b98e23089444
MD5 a1debabf27adf9b918e5e75a1f468d48
BLAKE2b-256 c1af14bb5843eccbe234f4dfb78ab73e549d99727247e62ae5d62cbd22eaf5b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b6ff7fcee63287ae57b5df3e4f5957ce032122802509246dec1a5bcc55904c95
MD5 a20662c6815b6edd7cf317fcc6126738
BLAKE2b-256 14bd3cf0d55e71784b33534e9710a67d382d900598b4787fbce6cc7317f8c42a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2b7edd08e0a5deb1e8564a2fcd8f4561014a3f05252334671bbf55ddd47db0e5
MD5 d2266256159e845b22c33a5ef23e0c1f
BLAKE2b-256 57fadea6511870913162f3b2e8c42a7614eb203a4540b8c2da43e0bfb0548f3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8560b4d712474335d08907db7973f71912d3a9a8f1dee992ec06b5d2fe359496
MD5 5095314a0d71da259e2fbae6d6a5f707
BLAKE2b-256 635a2833e324a2263e104e31e2e91bc5bbee81bc499afd32203faee048a883f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae6be797afdef264e8a84864a85b196ca06045586481b3df8a967322fd2fa844
MD5 615badada0fa5bdeffb0fc6c4c947c1c
BLAKE2b-256 a7b9e5fd2e6f915503081c0f9b1e8540947037929c70c191da2e4d54b31a21a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 335c0cc3e3545ce98dcb9cfcb836f40c3411f43fa03dab757597d80c89af8a35
MD5 cf317f7d4a1d8e69a01bfcb736e123cb
BLAKE2b-256 49a22136674d52123b1354bd05dd5753c318db47dc0c927cc70b27bab3755456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 eeea07c4397bbc57719c4eed8f9c284874d4f175f9b6d57f7a1546b976d455ca
MD5 109eef84328c890d39360d2c166f7611
BLAKE2b-256 6029bf2496b4065e76e09fe48015aaffe5ce161d8f089b06ac6982070f653076

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 634e385930fb6d2d479cf3aa66515955863b77a5e3c2b5894ca259a25b308602
MD5 dc2f0d19f2ed38a8e0f22b918371d776
BLAKE2b-256 a018938441025db6769a3464596b2410af3afde0b21eb2f204c6f766f68af4bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c83afe0ba876be7e943d2e0ba645809ad441575d2840c895c21ee5de93b9377a
MD5 56e4242785b95b0d8d90c5fa32c39dfb
BLAKE2b-256 83a872193137de57fda4ebfae4563182d082c8856e3b6e9871d0b46f028fb369

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a24f677ebe83749039e7bdf862ff0bbb16818ae4193d4ef96505e269375bcce0
MD5 78f2b679d04792b2e20a079f0c31152a
BLAKE2b-256 6fe6aa8d7e863048c8fceb5cd6ce74017311cec3ead07847387e12265fb4444e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 367a9314fdc79dab0fac96e216cb41dd73c85bdca85306ce8999118ba7e0f333
MD5 cd9c3e6b522cb6c361da3c27adf11406
BLAKE2b-256 008de97f6c96c891d457c8479d92a514ba194d0412f981d72c70341ee18488ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4fe1f1087cbadb280b5e1bb054a4f00d1423c74d6626c5e48400d871d34ecefe
MD5 a020fd9b41c841f7b6ba3557af573e37
BLAKE2b-256 26972aa0e5ba0727dc3bd5aaebb7ccbc510f7dfb7fb961ec87497cd496635ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07eabb979d236335fed927e137a928c9adfb7df3b9ec7aa31726f133a62be983
MD5 e51d3700868bf4de3236a6af0778e681
BLAKE2b-256 e9a7248e1aebe0c7810b0271e021a0f2a5eb6e78a051885b3c9df49f42a5802d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d03f281ed22579314ba00821ce20115a7c0ac430660b4cc05704a3f818b3e004
MD5 5b3cfcb3f43c60aa31b5d08f45e872ea
BLAKE2b-256 d366f42f5c984d99e49c6cff5f26f590750f2e2f7ef1fcfb99966ab5be1b632e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-macosx_10_15_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.14.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 896e12dfdbbab9d8f7e16d2b28c6769a60126fa92095d1ebf9473d02593a2448
MD5 809172e3feecb1edb2f9b66161fe4360
BLAKE2b-256 fd3db74870a0c2d40c355928cd5b96c7a11fa821b8a40fc41365e64479b151fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-macosx_10_15_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.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 237651caadc3a59badd39319c54642b5299e9cc98a3a194310e55d5bb9f5e397
MD5 e542ec8e41e074bb03f09fbb7a52ac97
BLAKE2b-256 9b893ebcf96ed99c05bec9c434aaac6963fd3cbab4a786ae739908a144d9ce44

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 2964cbf553df4d7a57348da44d961d871895fc1ee4e8c322b2a95612c7b17fba
MD5 099c4e490067f831564f01ab0e4794b3
BLAKE2b-256 b46116a32c36c3c49edec122a3dc811f2057df2f94d3b14aa107c8017d981618

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 62a759436b29e677181a9e76bab8b8f689a29cb9c535f45f7c48c9c830d3f8c3
MD5 499ab09f960fb0e6257ebc015da9294a
BLAKE2b-256 85a59594ad6289eebbc97d167c44213d557807f90e59115caad24de21ad2c3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 20205f7f5ade7aaec9f4b500549bbc071b046453aed72f9c06dcab87896a83e8
MD5 0cde11cdd554b687a6fc069d7fc59fec
BLAKE2b-256 fa2ebfa02f699d87ffc86d5959270b28f1cb410add3ccaced8ed2e0b8a5238fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-android_24_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.14.1-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 7c106c26852ca1c2047c6b80384f17100b4e439af276f21ef3d4e2f450ae7e15
MD5 5c41d746e782cbf9e143368a802032c4
BLAKE2b-256 c4a15fafa04e1ca91ddb47608699d60649c1c6db3cf41c99e78fc4056f9513db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp314-cp314-android_24_arm64_v8a.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 447.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 250d14af67f6b6a1a4a811049b1afa69d61d617fca6bf33149b3ab1a6dbcf7b8
MD5 f949a619e656ad0b184aa182209145f7
BLAKE2b-256 220a62e7232dc9484fbec112ceb32efb6a624cc7994ec6e2b019286f17c4e8f2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ac8531b638959718e18c2207fbfe297819875da46a740b29dfa29beba64355a
MD5 66553593aa46416e7e57f9dbc05a8c7e
BLAKE2b-256 7bd90bf1a19362c32f06229da5e7ddfcec91f93474d6307f7a2d3135e9c674dc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e509a55f681e6158c20f70f102f9cf61fb20fbc382272bc6d94b7343f2582780
MD5 fa793626447955767fdf92ad9b52a1d3
BLAKE2b-256 e4aedbce10533d3896d544d5053939ed75b7dc31a1b0973d959b1b5ae21028d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb21957bb8aca671c1765e32f58164cf0c50e6bf41c0bbbd16da20732ecaf588
MD5 99670b696398e8fe8cf73b2eb3ecad11
BLAKE2b-256 ba454de841f005cfe1fd63e2a2fe011262c515e2a62aa6994b15947e7d717ac9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 603a2c834142172ffddc054067f5ec0ca65d57a0aa98a71bc81952573208e345
MD5 50a53790d4b3a44ed2c6f6e7e9a4c271
BLAKE2b-256 0b41194ea4623693009fcefebef7aef63c141754f153e9cd0d39d3b9e36c175c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5663ee9257cfa1add7253a7da3035a02f31b6600ec48261585e1800a81533080
MD5 3aa6ef768ff7d267e2b31ac12f8c98a1
BLAKE2b-256 6da1b0c61e7a137f0d81de49a82023a6df73c3c16d6fefb0f8e4a93d21639002

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c0b3e614340c889d575451696374c9d17affd54cd607ca0babed8f8c37b9397
MD5 38609a6f82bb04d053fd18ba48950779
BLAKE2b-256 a84035caf3170f8359760740a7d9aa0fff2e344bef98e1d1186f5a0f6dec17e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 269b76ac5394092b95bc4a098f4fc6c191c083c3bd12775d1e30e663132f6a09
MD5 f923bd515126e195401af4d30f1b0ad1
BLAKE2b-256 896d5684f8c59045c96f81a18cefbc1fbbd79d25b88f1c622f2a5c5c08fcb632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97e704dcd26271f5bda3fa07c3ce0fb76d6d3f8659f4baa1a24442cc9ba177ca
MD5 601658200ebb45ceb343955ad6dd4e9a
BLAKE2b-256 2abdcf9cee17e140f942a3de73e658a543aa8fbf35a5fc67a9d2538d52d77f0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f380468b09d2a81633ee863b0ec5648d364bd17bb8ecfb8c2f387f7ac1faf42c
MD5 e109161d938f52f9f902692a209e3859
BLAKE2b-256 44c25e25098a67268ed369483ae7d1a58bd0a13d03aab860d2a0e4a6eb25b046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 faccab372e66bc76d5731525e7f1143c922271725b9d38c9f97edcc66266b451
MD5 b3d5ab8776f0fe59cc57406e062185b3
BLAKE2b-256 9d6edbf1d0625dc711fb2851f4f3c3055c39ed58bae92082d8c627dbe6013736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9af6779bfb46abf124068327abcdf9ce95c9ef8287a3e8da76ccf2d0f16c28fa
MD5 c2cc6e78ec689c2e2b7120bd43de6ffa
BLAKE2b-256 b34f6e947ba73e4ce09070761c05ed3a8ceb7c21f5e46798671d8b2aac0e4626

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f234b4deb12f3ad59127e037bc57c40c21e45b45282df7d3a55a0f409f595296
MD5 d4deb51e149ea52b80b9da9f1b3b7769
BLAKE2b-256 192a37326821ff779084020cdc33224d20b19f42f4183a500ff92022a739eda7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 93b032b5ec3255473c143627d21a69ac74ae12f7f33974cb587c564d11b1066f
MD5 5ccb77c22e75d4f1f20426ee86408021
BLAKE2b-256 0babd4c924d9bd5be3050c226612413ce68cb54c70d2c31b661bfc8d9a5b6a70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bd869c427324e5cb15195793de951295710db28be7d818247f3097b4ab5d4b96
MD5 d6bc89cd494453b2bb04373c81f3434c
BLAKE2b-256 e8ed3c0fb5c500fdd8e7ebc10d1889c04384fffa1a9163eac1356088ca9da1b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 317acd9f8602858dc7d59679812c376c7f0b97bcbbf16e0d6237f54141d8a8a6
MD5 b353765ea1e876727e61ef8c09031905
BLAKE2b-256 ab01a2d5f96cd4e74424864d30bc0a7e44d0a12dacdcfa91b5b2d1bd3dca6bf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4dfd6e47d3c44c2279907607f73a4240b88c69eb8b90da7e2441a8045dfd21da
MD5 55de1e20da5a43bc5582cab1af40c9b1
BLAKE2b-256 b2f4c4227aacfacc5cb0cc2d119b65301d177912a6842cd64e120c47af76064f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 86a6dab78b0e43e2897a3bbe15745aa60dc5423ca437b7b0b164c069bf91b876
MD5 d51ad97706bf0398925fc26bc34ca91c
BLAKE2b-256 757f8cdaa24fc7983865e0915153b96a9ac5bcdd3548d64c5a27d17cecccad2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1b9748363260121d2927704f5d4fc498150669ca3ae93625986ee89c8f80dcd4
MD5 773af5f93978c27b79e45b1906c29e58
BLAKE2b-256 78c05ebe5270a7c140d7c6f79dcb018640225f14d406c149e4eec04a7d82fe71

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7fb4bdf95b0561a79f259f9d28fbc109728c5ee7f27aff6391f0ca703a329abe
MD5 70a3aaca8a0c68d7a668bf88a0aa6f9b
BLAKE2b-256 3bb957ed8eaf596321c2ad747bd480fb1700dbd7177c60dfc9e4c187f629662e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 915fbb7b41b115192259f8c9ae58f3ddc444d2b5579917270211858e606a4afd
MD5 fafb46178770730dc5d2c22959a14d77
BLAKE2b-256 fe22a73ccbf9dbd6e26dda0b24d5fd5db7da92ee3383a79f47677ffb834c5c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 2a73f487ab8ef5abbb24b7aa9b73e98eaba9e9e031804ff2416f02eca315ccaf
MD5 a8966d61da9b3cc5866ebd5676d1b276
BLAKE2b-256 ef79e5cc690e9d922a66887ceeaca53a8ffd5a7b0be3816142b7abc433742d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp313-cp313-android_21_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.14.1-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 b3a03285a7f9c7b016324574a6d92a1c895da6b978cb8f1deee3ac72bc6da178
MD5 300d1ecc8e5de54fc3eaa627dcef8ada
BLAKE2b-256 bc97bd137012dd97e1649162b099135a80e1fd59aaa807b2430fc448d1029aff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-cp313-cp313-android_21_arm64_v8a.whl:

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

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

File details

Details for the file aiohttp-3.14.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 448.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2c840c90759922cb5e6dda94596e079a30fb5a5ba548e7e0dc00574703940847
MD5 0b2c8312dd6e87c285e857ee595a2ba3
BLAKE2b-256 03648d96784a7851156db8a4c6c3f6f91042fdf39fb15a4cc38c8b3c14833c45

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2aa92c87868cd13674989f9ee83e5f9f7ea4237589b728048e1f0c8f6caa3271
MD5 248dcd4eba00160e6bbadeb79ef7d317
BLAKE2b-256 dfd9ea367c75f16ac9c6cdc8febb25e8318fa21a2b1bc8d6514d4b2d890bface

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec8dc383ee57ea3e883477dcca3f11b65d58199f1080acaf4cd6ad9a99698be4
MD5 f19d4790ee127a64fe7f3d21e31bb9da
BLAKE2b-256 3e61a0c0a8f327a9c52095cdd8e312391b00d3ed64ab6c72bb5c33d8ec251cf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f71173be42d3241d428f760122febb748de0623f44308a6f120d0dd9ec572e3
MD5 cd96dc488bffc03d316033911776e9ff
BLAKE2b-256 700ae0075ce9ca0279ee1d4f0c0b85f54fea02ebc83c3007651a72bece658fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de538791a80e5d862addbc183f70f0158ac9b9bb872bb147f1fd2a683691e087
MD5 a79ba7d90b3b5ce465a29008262c99ed
BLAKE2b-256 3d36f1a4ce904ae0b6930cfe9afc96d0896f7ec1a620c400405d63783bb95a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 34b257ec41345c1e8f2df68fa908a7952f5de932723871eb633ecbbff396c9a4
MD5 ccf6d2ac7bc969aabff7247613e2a653
BLAKE2b-256 410947e2d090bddcc8fb4ccb4c314aadc32d7c5d9bb55f50f6ad1c92fc15d501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1c1421eb01d4fd608d88cc8290211d177a58532b55ad94076fb349c5bf467f0a
MD5 61c1ed4370fd8402b9647774271cb0b7
BLAKE2b-256 f9dffc01d9fcad0f73fed3f3d361f1f94f975947b50dff82919f6dc2bf4316cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87a5eea1b2a5e21e1ebdbb33ad4165359189327e63fc4e4894693e7f821ac817
MD5 6fc31a79a4a6f4b8c15abf6881239f40
BLAKE2b-256 2bf97cd4e8ad7aa3b75f17d56bb5498dd604a93d4e6eece822ba0568c413fff0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6fa4dc7ad6f8109c70bb1499e589f76b0b792baf39f9b017eb92c8a81d0a199
MD5 7457185948fff2bae9b4374bb8818783
BLAKE2b-256 dcb44dac0038960427ba832f6609dfb4ea5437d7fd80c72001b9e48f834f428b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 686b6c0d3911ec387b444ddf5dc62fb7f7c0a7d5186a7861626496a5ab4aff95
MD5 c8032e5adbc5732a78fcbf7eea069eb3
BLAKE2b-256 4daabf04cb4d865fc6101c2229a294ad744973b72e513fdc5a6b791e6983d72a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e6fc1a85fa7194a1a7d19f44e8609180f4a8eb5fa4c7ed8b4355f080fad235c
MD5 a65268167ca2b46fbf3500668b3dcea2
BLAKE2b-256 209cd445818389df371f56d141d881153ba23183c4735a03f7356ffb43f7757d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bb2c0c80d431c0d03f2c7dbf125150fedd4f0de17366a7ca33f7ccb822391842
MD5 3b1bbb384cdf1f126856cdc55bb902da
BLAKE2b-256 66d72ff65c5e65c0d7476daf7e15c032e0805e36811185b9623e3238ad6c763e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f73e01dc37122325caf079982621262f96d74823c179038a82fddfc50359264
MD5 f390f778196c130571369cbbbcb338f5
BLAKE2b-256 c1dcf2cecfaf9337ba3e63f181500814ff502aa3d00d9c7ec93a9d23d10a27b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f5e6ff2bdbb8f4cd3fbe41f99e25bbcd58e3bf9f13d3dd31a11e7917251cc77a
MD5 1be3cafb21e98305a70835bd31a13a8a
BLAKE2b-256 b5d3d9fe1c9ec7557ab4d0d82bebaa728c6418f0b93295ec2f4ab015f7710cc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64c567bf9eaf664280116a8688f63016e6b32db2505908e2bdaca1b6438142f2
MD5 19260d9ddead81eb6496c3e5dbbde1ef
BLAKE2b-256 8a72a60607cb849faa8af8a356c9329ea2eb6f395d49e82cc82ccba1fd8deb8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27fd7c91e51729b4f7e1577865fa6d34c9adccbc39aabe9000285b48af9f0ec2
MD5 94c8be4d6e4b24ea264cbf18348233a8
BLAKE2b-256 55b22aac325583aaa1353045f96dffa586d8a34e8322e14a7ba49cffeb103ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bcfb80a2cc36fba2534e5e5b5264dc7ae6fcd9bf15256da3e53d2f499e6fa29d
MD5 19dd682f97c2ab4e548856a0ce12b116
BLAKE2b-256 c282280619e0bd7bf2454987e19282616e84762255dd9c8468f62382e8c191f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d35143e27778b4bb0fb189562d7f275bff79c62ab8e98459717c0ea617ff2480
MD5 05ed8dcff0de8cac931c27773f73b699
BLAKE2b-256 1d21151624b51cd92553d95424daf4bf19f19ce9be9002d19253e7e7ce67197b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 453.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 486f7d16ed54c39c2cbd7ca71fd8ba2b8bb7860df65bd7b6ed640bab96a38a8b
MD5 d29a5a0455c642aa05300b506bd407d6
BLAKE2b-256 2c8ac25904f77690c3688ec140f87591ef11a0cfe36bf3d5c0f1f38056fb62b3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 03ab4530fdcb3a543a122ba4b65ac9919da9fe9f78a03d328a6e38ff962f7aa5
MD5 c87391fa386678b668f16f5fd4a68b69
BLAKE2b-256 17ca69274c51dcd6e8947d77b2806cf47a4a15f2c846e2cbeb1882547d3da283

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 313701e488100074ce99850404ee36e741abf6330179fec908a1944ecf570126
MD5 b550198e13824f681fa78624b1e9c67a
BLAKE2b-256 b563a251a9d2a6cb45065b2ddc0bde2b3dd10108740a9a42f632c66405a761a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6feea921016eb3d4e04d65fc4e9ca402d1a3801f562aef94989f54694917af3
MD5 f2a46a6c70ab57eec9a8a6b5d764a318
BLAKE2b-256 2b9c9c18cf367a0498212d9ba7daf990b504a5e8ae064cda4b504e2647c89c03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 bedb0cd073cc2dc035e30aeb99444389d3cd2113afe4ef9fcd23d439f5bade85
MD5 a4b748971ef2a2f2f2b4d2271d633121
BLAKE2b-256 eb943c337ba72451a89806ace6f75bddc92bafc5b8d53d90115a512858024b63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2fbc3ed048b3475b9f0cbcb9978e9d2d3511acd91ead203af26ed9f0056004cf
MD5 5fc12527be626b24c13fefce333bdd0a
BLAKE2b-256 ed1be850c9ae6fc91356552ae668bb6c51e93fa29c8aef13398a10b56678557f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f7a16ef45b081454ef844502d87a848876c490c4cb5c650c230f6ec79ed2c1e7
MD5 3844be59fc1ddf9363d1a514877bf573
BLAKE2b-256 9f49fd564575cf225821d7ba5a117cb8bc27213d8a7e1811162afb43ae077039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 764457a7be60825fb770a644852ff717bcbb5042f189f2bd16df61a81b3f6573
MD5 25d7ec7a6c340c5ebca30641ccebace3
BLAKE2b-256 ec0b8b3d5713373858ff71a617daf6e3b0e81ad63e79d09a3cf2f6b6b983939c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d459b98a932296c6f0e94f87511a0b1b90a8a02c30a50e60a297619cd5a58ee
MD5 51a76e84d0a5f3e2a9ec23664af5592d
BLAKE2b-256 a78018a592ed3be0a402cc03670bd72ee1f8563ddbe1d8d5542dbf868f274136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4cd96b5ba05d67ed0cf00b5b405c8cd99586d8e3481e8ee0a831057591af7621
MD5 0da5ad9e443d76f3fd07b93e3f64b1de
BLAKE2b-256 f11a420e5c85a3e73349372ed22ce0b6af86bfa6ce16a4b20a64a2e94608c781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b821a1f7dedf7e37450654e620038ac3b2e81e8fa6ea269337e97101978ec730
MD5 f62ea06854922871561d9a659c2d0423
BLAKE2b-256 767fa987b14a3859094b3cea3f4825219c3e5536242564af6e3f9c2f6c994eb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 797457503c2d426bee06eef808d07b31ede30b65e054444e7de64cad0061b7af
MD5 9c938367eb66255fa5b7df51aa08c663
BLAKE2b-256 dcd65a99b563690ea0cbed912ae94a2ce33993a5709a651a3a4fe761e7dd973a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 73f05ea02013e02512c3bf42714f1208c57168c779cc6fe23516e4543089d0a6
MD5 cfca1e3613b045c010c648213f5d6f0e
BLAKE2b-256 0b4bd176d5c4db9d33dacf0543102ea59503bc1d528af4cfd0b719949ca49389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5f2504bc0322437c9a1ff6d3333ca56c7477b727c995f036b976ae17b98372c8
MD5 75fc8bcd6ff119a2d2d74f296ce033ce
BLAKE2b-256 49e0726e90f99542bf292f81a96a12cc4847deb86f3ccf62c6f4014a201f4d33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3b1a184a9a8f548a6b73f1e26b96b052193e4b3175ed7342aaf1151a1f00a04
MD5 9223996e44c23b339f0ff58cc17d5a64
BLAKE2b-256 5b8d614ace2f579702c9840ab1e1447fd8509e35b0b904f7196418fa2f57b25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d44ec478e713ee7f29b439f7eb8dc2b9d4079e11ae114d2c2ac3d5daf30516c8
MD5 4affdf77281c0cc15f4af04d22973015
BLAKE2b-256 5be7c60c7b209e509cc787de3cea0550a518538cfc08003e1c1e14c1c63fff71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c1af67559445498b502030c35c59db59966f47041ca9de5b4e707f86bd10b5f
MD5 9e10131fb6030a54bf98070f38ea4982
BLAKE2b-256 8fe1a2872aa55495a70f61310d411541c6ee23812d9a884e000c716e1bc3edbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aa00140699487bd435fde4342d85c94cb256b7cd3a5b9c3396c67f19922afda2
MD5 9df7ea8a2dd871f5f06034bfcccb26a1
BLAKE2b-256 26ddbf526e6f0a1120dd6f2df2e97bacfe4d358f13d17a0ff5847301a1375a51

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.1-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.14.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 453.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5a837f49d901f9e368651b676912bff1104ed8c1a83b280bcd7b29adccef5c9c
MD5 6611f2dbba2ca74fdada0e61b1b0e130
BLAKE2b-256 d07a7b56f6732ef79530afaa72aa335d41b67c8d79b946995f0b11ad72985435

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30099eda75a53c32efb0920e9c33c195314d2cc1c680fbfd30894932ac5f27df
MD5 5d5c0afb244f0e672011b9ec2851a0da
BLAKE2b-256 c3c2a2f1ec5b37f903109e43ae2862268cfe4a67a60c1b2cf43169fcdff5995f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2fe3607e71acc6ebb0ec8e492a247bf7a291226192dc0084236dfc12478916f6
MD5 faa4633ef1ca26e9d91342589e089f18
BLAKE2b-256 3df115340176f35ff61b95dbe34020bcf43f9e624a2d7bbac934715ff97d2033

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 672ac254412a24d0d0cf00a9e6c238877e4be5e5fa2d188832c1244f45f31966
MD5 dc2d47dcd635e9deeda643735a440401
BLAKE2b-256 99e4d91b70c57d8b8e9611e4a2e52238ca3698d3dc1c2efe25b7a9bf594ac584

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 52cdac9432d8b4a719f35094a818d95adcae0f0b4fe9b9b921909e0c87de9e7d
MD5 94a43c9a3e47b2d05d2843f71f88ecf7
BLAKE2b-256 a11008f1654f538f93d36dcac66310a06eefce4641cdafca83f9f0a5317be254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 94da27378da0610e341c4d30de29a191672683cc82b8f9556e8f7c7212a020fe
MD5 7c426201684174e26e1e5ff2ca60ce69
BLAKE2b-256 8f3ae2a513ecbfc362591caa51a7f7e011b3bfc8938b388ae44cd95560d36999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 24ba13339fed9251d9b1a1bec8c7ab84c0d1675d79d33501e11f94f8b9a84e05
MD5 aff16899a7716f2ed21801001aadd2ca
BLAKE2b-256 7d84b0059a7c7fc05ea23f3bc1596ba91c12f79588b9450564a24cac37536d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 672b9d65f42eb877f5c3f234a4547e4e1a226ca8c2eed879bb34670a0ce51192
MD5 69d3c7372438130b73e3e79d72cc2c9b
BLAKE2b-256 aae477452a3676b8d99ac1375f77691d6bf65ea6e9f4b201b82ef77c916dc767

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6fd35beba67c4183b09375c5fff9accb47524191a244a99f95fd4472f5402c2b
MD5 e93ef6cd51fd96e9d868ae3e2dc07eb8
BLAKE2b-256 c4399ff91aaf02af8b7b8222a987466da539f154c3e01732c22b5f5a20a8ee66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 57fc6745a4b7d0f5a9eb4f40a69718be6c0bc1b8368cc9fe89e90118719f4f42
MD5 511511e01c4a0490317a2a6850abc140
BLAKE2b-256 29c493067c85a0373492ce8e577435203c5947c454af074ac48ed4f3a1b9dd4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23119f8fd4f5d16902ed459b63b100bcd269628075162bddac56cc7b5273b3fb
MD5 d4923b8f1dcf47f99a3524a93518e522
BLAKE2b-256 2b9d93294c3045775c708ac8310eb3d3622a11d2951345ad590d532d62a1faa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bb33777ea21e8b7ecde0e6fc84f598be0a1192eab1a63bc746d75aa75d38e7bd
MD5 b369ddc2d894ad3742f657aa834a9061
BLAKE2b-256 63f3b5b4e10327cb85d34d24232c6b71b64602f190b3ccb238a043ac6b187dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 092e4ce3619a7c6dee52a6bdabda973d9b34b66781f840ce93c7e0cec30cf521
MD5 09ff77b9c4a086ef81f0090056fc6a3a
BLAKE2b-256 47eadad128abe365e79be03b16ed464198ac73e0d257e8260c6f7d6f31cbef26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e4e5e0ae56914ecdbf446493addefc0159053dd53962cef37d7839f37f73d505
MD5 6e324457916ee3a22036ff2f677b969c
BLAKE2b-256 3b57aa2beab673331f111885db8a7b69dfe3ab0e53e446a0ace18ca694b4dc58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b238af795833d5731d049d82bc84b768ae6f8f97f0495963b3ed9935c5901cc3
MD5 4e9a15645222875cfebfd3e96d07bcda
BLAKE2b-256 5aeefb0ac28684e8d753b83c8a4eebc19a5846912aa0a4daaabb6a9936363840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9d4e294455b23a68c9b8f042d0e8e377a265bcb15332753695f6e5b6819e0ce
MD5 a1bcc08995e172c56a4164c034233667
BLAKE2b-256 cbc1316c8f3549dbe5245f92bfd523ec6f32dd4d98cafe21df3f6a19b1184c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4f7215cb3933784f79ed20e5f050e15984f390424339b22375d5a53c933a0491
MD5 eedceb1cdebcbf0a0d4fb72aca5b2ff5
BLAKE2b-256 18684ae5b4e08943f316594bb68da89957d3baf5760588fa09509594bd777e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8f6bb621e5863cfe8fe5ff5468002d200ec31f30f1280b259dc505b02595099e
MD5 d3831f5fe334ca764bbb0f99d97d05be
BLAKE2b-256 6d6758ded4b3f2e10f94972d8928050c85330e249a31dd45a0e5f3c0e9c3fa05

See more details on using hashes here.

Provenance

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

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