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

Uploaded Source

Built Distributions

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

aiohttp-3.14.0-cp314-cp314t-win_arm64.whl (467.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiohttp-3.14.0-cp314-cp314t-win_amd64.whl (525.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.14.0-cp314-cp314t-win32.whl (490.6 kB view details)

Uploaded CPython 3.14tWindows x86

aiohttp-3.14.0-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.0-cp314-cp314t-musllinux_1_2_s390x.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (527.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.14.0-cp314-cp314t-macosx_10_15_x86_64.whl (524.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiohttp-3.14.0-cp314-cp314t-macosx_10_15_universal2.whl (787.9 kB view details)

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

aiohttp-3.14.0-cp314-cp314-win_arm64.whl (450.6 kB view details)

Uploaded CPython 3.14Windows ARM64

aiohttp-3.14.0-cp314-cp314-win_amd64.whl (481.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.14.0-cp314-cp314-win32.whl (453.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (508.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.14.0-cp314-cp314-macosx_10_15_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiohttp-3.14.0-cp314-cp314-macosx_10_15_universal2.whl (750.9 kB view details)

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

aiohttp-3.14.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (497.4 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (489.5 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl (483.3 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

aiohttp-3.14.0-cp314-cp314-android_24_x86_64.whl (509.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

aiohttp-3.14.0-cp314-cp314-android_24_arm64_v8a.whl (503.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

aiohttp-3.14.0-cp313-cp313-win_arm64.whl (443.9 kB view details)

Uploaded CPython 3.13Windows ARM64

aiohttp-3.14.0-cp313-cp313-win_amd64.whl (475.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.14.0-cp313-cp313-win32.whl (448.7 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (504.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl (505.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.14.0-cp313-cp313-macosx_10_13_universal2.whl (745.9 kB view details)

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

aiohttp-3.14.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (496.5 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

aiohttp-3.14.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (487.6 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

aiohttp-3.14.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl (481.7 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

aiohttp-3.14.0-cp313-cp313-android_21_x86_64.whl (510.1 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

aiohttp-3.14.0-cp313-cp313-android_21_arm64_v8a.whl (502.4 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

aiohttp-3.14.0-cp312-cp312-win_arm64.whl (444.2 kB view details)

Uploaded CPython 3.12Windows ARM64

aiohttp-3.14.0-cp312-cp312-win_amd64.whl (476.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.14.0-cp312-cp312-win32.whl (448.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (507.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl (507.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.14.0-cp312-cp312-macosx_10_13_universal2.whl (750.2 kB view details)

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

aiohttp-3.14.0-cp311-cp311-win_arm64.whl (450.3 kB view details)

Uploaded CPython 3.11Windows ARM64

aiohttp-3.14.0-cp311-cp311-win_amd64.whl (479.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.14.0-cp311-cp311-win32.whl (454.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (509.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.14.0-cp311-cp311-macosx_10_9_universal2.whl (759.1 kB view details)

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

aiohttp-3.14.0-cp310-cp310-win_arm64.whl (450.4 kB view details)

Uploaded CPython 3.10Windows ARM64

aiohttp-3.14.0-cp310-cp310-win_amd64.whl (478.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.14.0-cp310-cp310-win32.whl (454.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.14.0-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.0-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.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

aiohttp-3.14.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (510.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.14.0-cp310-cp310-macosx_10_9_x86_64.whl (514.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.14.0-cp310-cp310-macosx_10_9_universal2.whl (760.6 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.14.0.tar.gz
  • Upload date:
  • Size: 7.9 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.0.tar.gz
Algorithm Hash digest
SHA256 2882de819734c715fd1b9c11c97e09fa020d14438203d1d354d8ed1702791c9b
MD5 aa9c0bbc001188ca3659b75655396294
BLAKE2b-256 eeab93ce242f899b68c51b0578c027aafa791ab3614cb9345fa5d37b5f5c8e3e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 467.4 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7a3fc4358e65826c515350f199c210de747cf669998211b1ee6c2e46de364b24
MD5 1356847f918398d1b5648356c254ea2c
BLAKE2b-256 70117f83fcba9ee05d4c54d61b3f8104da0d43a59adac44dd28effc0c9a10422

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 525.8 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2d2ffe9b614f50f069068b3b52e73414e4107fc10b7efc939a76acff9251fdd2
MD5 3d0246c531e539709506e0a3c1f690ed
BLAKE2b-256 591f299b21441c8de42ff70fddc7cfe65e92f810abcf740739a09b56f7835364

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 490.6 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a8d93334d4961c9d566b1f046c81dee475b7c21eb730728d38237bfa70d1c8e6
MD5 cfd0e8eb5b984979906170c9e7826529
BLAKE2b-256 399831b9ad9fbc01f0075ee7221002df5fd2d10b647f451ca5f30edc802d9dd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6199707cc40e0e9cd39c36fbc97bec416c704e1d0ddce03412bb3b3e6a90ccd0
MD5 f338b84b0e90c8000a32c8e85241cf20
BLAKE2b-256 ccbc2aaab2f85cadb26ea59c091fa2b8e370d625154b5c14b478f1b489d07551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b584dfe615d151e9b8f0a8ecb3aee6147f2927ec5b95ba25fe621f5377510928
MD5 8ddc91151ada72789f79c4eb76d3e593
BLAKE2b-256 10c77ba5de8af9650b9767b063c675427b8685f43fa7ce563673a7bc3af60f08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 667b881d083ccae3900ea5a241e17e5007ca78844c53ed389bb63d48f729d9c7
MD5 203954ff6671fe93eda261b3f94d3701
BLAKE2b-256 c98e140e715a0a4bbc211979ea30ec8396ad2ed5bf90ab87d8058fc4668b1923

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e30871b2d58996cb81aac52d2b1d15ac05257131ef0f90f18c2115a380fbfe7c
MD5 0216ab06bb7bb293f66aae03ef35cc73
BLAKE2b-256 fa76a8b9f0d09234d516af9f2d7dd715557f33b5da3b0b56ead41d1170e86e3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4141a3e5342ee3053a9cab54d25b64ed28289c1041e4c54b3d99839314d90ce
MD5 3f1270de018abd21f9cd11c3b4440f74
BLAKE2b-256 9802a5a7a2524f92d3911761b405a7c067c751891942144adc13e2ad79611e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cc736a9c9fc2bc4dd71fd404815741b6573df27c3f985948ec4076989ac57de
MD5 849cc68b1f64ad8d1a6257db6986fd2a
BLAKE2b-256 351ec237923232c7da7f0392ea25d89fc5e60c0e93f685f4ebca8e7bcdd5271c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 49a33ded29b0b2fa7a367a02cf0fb89af602bb87542a16177ec8ce1c9c51d12a
MD5 b1ae020734da9456ed8a018b4eff126d
BLAKE2b-256 9cae3839726cd49150a53ed340cc24ce5ba09d4c2117020ef9d45542bec5eb2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 145262119b07d7f95abc1839add35ba2bfc84551d4b4660ca11542c0b215455b
MD5 6555acc3e49c067feb8215043ac595e4
BLAKE2b-256 d01ca57de71a4508c93a830b77c28af3d08cd97f606dedfc6b94275347744508

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a4a9f17e85b80878c176695c1998c790e83731d8271881e5d356488652a1f9e
MD5 715ed6390a8b5dec32aaeffe7128aa1d
BLAKE2b-256 dc827cc7907725d83a19f31551334061e1ab8e108b1d7ac52632a2a844a4acb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 95f5217e76a046b9f228a101717ef8d42b1eb3d9d196d15202db5bf41df88936
MD5 e11067c62207a5f52ac8a46ba1950a02
BLAKE2b-256 0554ba62ac2d1bc87e010aad23751e383b8794e45d931df67677313a2da78823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 40ae7b0642c25632c7eabc4a04754012691864d2a1b93becf7cddb76027b838a
MD5 dd1b4e34e3761258bfe76eefcb1567b5
BLAKE2b-256 c685ce79bab0310d2e3fd2d7bc7e44412abeff7c8338f8a21dd0f2f1714989e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c20b9ad156a79eb97be5cf9e069eec01d2f0dc8472ffbd75299a8b2d4c2cbbde
MD5 4265346645206f213975554d713a43b9
BLAKE2b-256 06b4932bcdd850c354d9bcca30f360e475d7852e30413fbbd44b182782ed5432

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb63b1417efaf7d1002a6ad034a40d44376afcc16508a57f8e74b49ad26a095
MD5 2bc5f4e943151a2df15b7e58f9ee7232
BLAKE2b-256 086ab5965a634ac4d5ba99a463314cf4ab214ca073fcdc38a15e0294273701fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b62af5a8cc96a194eaa01a9ed7b34a3ffa58d3d8daaa1a0d7a749353ad12d228
MD5 1a1941bcef2c3aae9dd7bf2af5038a14
BLAKE2b-256 92e908954a40e8b7baa3d8beadd2b074b186e9b1e9c8ddabc288678a6265de50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 6aa1a40f9cbb3da9f80714c5966b8946c21e6a2530d809b9498b33161e3c8733
MD5 60981402ff70797078a19279eda552b9
BLAKE2b-256 12346180103ce9aabc8ebff3f7bb55a1228ffe60f61042823031d9692cb7b101

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 450.6 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 acf1581c4f21ed4b80a2dded504d87b055a071a84d5737ea966435f768275ac6
MD5 c5773a9d79468d2df46bc0adb8aed0ce
BLAKE2b-256 d7ed17b5bd9fbcb46e688f02e572f517754a9a75831e7b54702f027761dc4fa5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 481.8 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f770846edae8f00ecc57af825bce811f787f87a7dcf0e90d191790efe5b31f7
MD5 75b086d7214ca3c6c269f6a3a3023b0d
BLAKE2b-256 a2d7eff4c58a88c5cac5e38b55f44fb8a6d3929c3cbd77356e383e094d3220bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 453.7 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 106ed074a856f3e21d186b8579e2c8afb6da598e267cdaab01059e13db2fc44d
MD5 e8d2d17145f17bf84b537705add0f7b1
BLAKE2b-256 5f446126116fd8a316b712bb615660b855c78466bb67ba1bb1742427eafcf7ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26b6d79aa54cb4ed50cc7d41ed14e99e0f1fc8e7c2d42f2e05b37aea897b2b52
MD5 4c108df57a7052194dc3b81d2a1ff606
BLAKE2b-256 b869155c4ef3aec96417d47024800472b33b16c5d8a665371dcd044c2afdf25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 20144819e99db593e22bbd2f3f2691a5e149f879142d6b8670254708853ff4fb
MD5 a018555e239f1b467c48b1a02342328b
BLAKE2b-256 de2d28c31dde0a7dc98c0ee7d0da2ddcec3f7688c4fc131e5989e278d0c03c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5cbd50e6a50d6b99283a826b18cbdebf65b0797689a7535cb0e9dd37be0f63c3
MD5 df45f3a01c0ef2744c3b7bdd4ad40f30
BLAKE2b-256 71cc11acb6c4518f448323405a7312b6f255d0f974a34373ad1db7633c4aadc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 860a86bc2c80237f5dff52edcf427e10a8d8352271fd84845429a3e60199e02c
MD5 577d0245bdbdf4c0f00568a516619828
BLAKE2b-256 5a96f0b73730798c9ca525afc30b39f1f81bbe24e245d9654c54d3b39d63212d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 540632bf882ff8fc88f2e1697be0761578e89e0d79fb4a8a6d65dc5da7e729d4
MD5 0370f8a6d6f90b6561eea32d92afe197
BLAKE2b-256 dd550e2732ca598c7a4dfe8a775662376d0ca2977cb1030e48386d4da5d9a456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edc01ea4e1ec5a1649a28866262bf24195889ff7b27bdd947029a6086741de9b
MD5 4a5e7bbca9209fa8f984d9df2b252129
BLAKE2b-256 66e353c67097e8a5ce98625e91e3fa7f43c9c6940de680345d03b3509a72a078

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a150c0875ac8fd87f1c398650841308a30d65facf7416b12dbdb9cfdcbe5a48c
MD5 8373c50a9d8a82d1614ed26ba4062867
BLAKE2b-256 7f62da182e5910ab912b2e88aa919b61a16046a37a95714a5795b02eb57b2d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff82be7f1ef73634cb77890a770743239bc3d487b848669be1c599889336dc0a
MD5 792222f8cd92074f7792dca3a957ce06
BLAKE2b-256 3a0527df32c844b2156e1675a8d8ec22d963e3c8ba469ed7ceb1863320c7b521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f13087e06f68fea4941c21a0c541c00553aa16e4f8fd7bbe2b198df761e964d6
MD5 fd620dde5afe2eea2207f8f6eaaa6936
BLAKE2b-256 d3ba8943f906f0570342886ababb9a722a44e360f786a028c5e0b0e29e3f735b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 44eca38755d0105bb32f47d085f5dd449846a449e1245fc105889e3279dcf8e3
MD5 6cd566b8b63b1062fb0d677dba34359f
BLAKE2b-256 8cd0e5eb3ff1daeaf644c7e36a957517672494122628e067c38b263fa04eda77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d33e61021222ce7f9792bcac870d6f58d8adfceda33ab857b01264f4560f2c5f
MD5 96e9b65cb76f7d24afef3d59390f6e00
BLAKE2b-256 b12824e1409e605a9aa5d84abe0e2acb365354b70ae56d40948101cabe3341ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d925fba0c14d5b498a8028b0107beebdfd16c5d48d702ff54f879cb017aaaca3
MD5 51bf6c6b8fdd42d4c56f222474e20df7
BLAKE2b-256 e539b36e5d3d31e850fb4691dd3e941684ac490a2559249f6fa634b6b0fdf020

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e19d17ab02bf16832a2c8c0d55a486792c5b1645665652ee9531aebcc30cb72
MD5 fde621b0040c7927161d17ba30dc85a4
BLAKE2b-256 1ddf35161f3598bf7501d2b2a805b41ab4f45a2e34150c421bcb4ef8c0d281a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9dc203d6ce6b9106d54e2a93f41dfdfebfbca2d99962ba503bfd3e5921a6549e
MD5 20d5ca38a464d54375264e0a40aaf84c
BLAKE2b-256 9ee43d637f800c724eff0e2bed64df72557444482366fd0a35b0cec0e6968f6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 198cfe61bf253b19da1fb3e0fa122249dc4f14c12709493fed8054aa0411cc76
MD5 39fb05e0c172e1bdfca261e7f25349b3
BLAKE2b-256 7575e85a13a370acc007fca5feb1fd1b88ac2d8426e6dadd625479b7cadd55a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 a071be341c2bd9b0188e62d173509f024e0a35b1c342c53c50f8daaeda8c3bd8
MD5 04a8fef08744892b686071eb11afb866
BLAKE2b-256 36f448a7b0414db7fed77a03d5dde34508c026afd83510ab6bca08c313855776

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 ea3b9806c89f61da22fddf1f12dd524fb368e5e28f1261fbdafe5c3cd8ce893b
MD5 c6ec9549de90ae2bc784f7b6bc29cf9b
BLAKE2b-256 1b5afae531bdbc6456fb6241f46b7b81e4d8a0dd3fc09118a0055dc7141ac1ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 70ea956f6cc4a37620966b56c2e205d88ca3e6d85ec063277e414b1035cddad3
MD5 81ae90e8a01c1c043416787d97e8829a
BLAKE2b-256 1afe6edbf5d39bf29322b6816365b17ed8ede4dace164a3aea1abcd30110eb78

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 884a4edbdad77be9d0ef36142c8b504351b170df0bf62b51e784fadabf311c42
MD5 ce95b8133f76e2d5adea1c5b899c6717
BLAKE2b-256 2cce8b49ec2f30f68e02f314f4832186cd45e583360a5a386058be36855d23b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 363ef9e91014e7891679bfb2ac0a7c6ea93435dbbfd10ecf41b9f06fcf506c5f
MD5 81a1d6997a52afcea1546c0b9e1c6fda
BLAKE2b-256 28035f36ab196a88ba5e9648ae5643e6531e67a3a8c0e96f9c6510ff41540fec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 443.9 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 acdb400538cf4769543548bb5d1eb23d39bed4f96554a6078cb728c7cb2c268b
MD5 5c133ec0e063aeb4cb269cd09839d252
BLAKE2b-256 d1a0f03ade8566c153666a3871afccbedf6d99911da006325e1fc6cf72a2de99

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 475.8 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e03abdaa17d553f17e1d1d06bb266b3970106c78051d06795723e748d8e49d11
MD5 39579ac504432de59c13b7f6fd198fcd
BLAKE2b-256 41a5bab07d79848a00eedd8ed979ccb302aaea3ac6eb9fa16bd0ed87135869b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 448.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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 23f094a1ef64823fd35854ddf5c7a80a078162f37f9d2f7c6142b51a6affa456
MD5 d068a25b9977067f8d42586761900cc6
BLAKE2b-256 afccc122eabd7a1b7e0c9bbdd6be60e4715905b858399145d9df872bb94f1427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666c7c5036df57b693026398b69b41874a1931ac5b3485fd910e57bfac253869
MD5 6dc321d7bc2eabff245e68de25854bb0
BLAKE2b-256 fa10ab28818262f4d26bdb47ed5f1fc7999b69e2fc6e0370b02d0f49011f45ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a1d209375c503472b3c0a340cdf3c55fcd82e84b46dda7caeaced59faba373ec
MD5 8bc75802b8d46258268a5ee63c7791ec
BLAKE2b-256 b001e1280feac522597a4d46eb67a0cdfa053cfae263033030b761ab146f29fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 25d2326a4967bf705a9f9913a13005e93b6020ad8a9f6bd6bd78850d5171332e
MD5 98ea01000e4197b947902f7a5d8e7934
BLAKE2b-256 a8a1a932941784432962fe390e1066823aaef64b4e5ac9fa595df57b5fe472a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b27d89af91a555f58e08e4902dbcbc48862fd40095720ca705990476bd93b7ac
MD5 53ff2771e5ad8ffe8e150ae463f3615f
BLAKE2b-256 0bc8c45ea6e7ed84cebba939b9c334498a045ba19d79c61b0110df5f21580de3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b54fbff46127aeafdd764cecd0d99fa2f24a0e37ea5c18a7c3a4ac450df1db3
MD5 56e27ec4fd74e28f4194d811bd9c04d4
BLAKE2b-256 aee41f1c8acbb3acd5c8f795473b92c9c3d44eb60a5692c6104256c8a1c83a0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23e8314e7aed8576fbe33314d218bd81447a3adbc91dc36f1163bf583cd3084c
MD5 83d36fa4167ada840988acbd3ad04d5b
BLAKE2b-256 b43ddc94df99ed1511fdf28314f722643ed334112643cab00223577085e788c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6281aecdf2732940f4fe06bd6adec5ae4d59b78b080b8e3a6b81467301010988
MD5 0940064f2769530eb92f1a4fa9149875
BLAKE2b-256 212a45be91ad1b860508557448d4cc2e165a2ee68dd865657b73bf66cc5a00fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26d9224c6dd7f5c749aba4f61315a894601448b28d94d12f4dea0903e26d2096
MD5 19f6090a713c8cd419ca9b57cd83087c
BLAKE2b-256 c5a33800dbd095cb2bb165a7ea5d94d790914677e27f45638c7d80e3f34c8945

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7b33e751cab03fdc960095b1e326cb5a03f5ee577d6ded59f3d1c100f8668882
MD5 4707367dfc9d11d20007e348ef4ca72c
BLAKE2b-256 bd94b9b6fcf0ee17c21d0d19fb8c22bf83ad18f82e702a9c3bd901a868f5e446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 85e0675f47be4eff0636bf88c02140ea89168ae0df3ff1f3f464e9de9610d277
MD5 456d07733fc480f496972ce152698d6a
BLAKE2b-256 34263199beb415202e3108e7b83ecebe10914d806d33fb9860c3e4aa60a19be3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6c79a044cacf360ec46738d863d2f41c9300d2a06ef4a7402ea0df306a350e61
MD5 a887ba7a6f9bab77ec0455d6e790be19
BLAKE2b-256 5e6a42e030a46743841414402a3b00cd3d78419055e86c66fb5822c14b5abfc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f12eb7896e81caf403a2b18c9406426f1207361e7239c057ab29c076d4257e83
MD5 abe39558174295540d3f23a4c0a76c43
BLAKE2b-256 ffdb44c755232085545065c94378dfce38641b1aee647f4939fcd32f5b32e719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4c01b0bfc6209590960e68eac083cd22d5d87c21f974dd6208cafa5d3542bc8
MD5 91ce58030c2a14d6cb18d852ddebbf13
BLAKE2b-256 d6f80f28f04eef75d52fc9c715dde7ce9c0abb810fd20cfeb0fea7afd2ab1e98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8fcaef74d2ab0f607d7ff85a0d15e21bb5a258c4a58df1908396eb50d7f4ed3c
MD5 c9fac07986ada9a7e357356f04ea5b98
BLAKE2b-256 c6ee80eee0efddfe187e7cd05027086b7ce1c0e492e82a4eda58f5c5543a44a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2f3fc37054564dee64a855b5b092d87ec35dcddfaabf7dacb1c8a2b1f83dc0a9
MD5 3cbc7c9716123cbb477696e2c71d5e1b
BLAKE2b-256 ef7dc814111e04894a45d9e2defc94443879a6f118d9633d5fedfe6e2e8af5f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 076cb014191ae2e65d949e1ad01f1dcfe33e32789b5172510f3e79c79fc04d50
MD5 8bcedb106109fa970181c72d1e857b63
BLAKE2b-256 fb4d4506fdb7a022bdf70011a3bbb4ca00c5c570026ef6a3c5bd7bc70c39089c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 57ea07d28695a7a40304d42251892a8df765e5588c10ee32afeddcd5df33c0a2
MD5 aad8f45f9dc9aa285e039796c3afdb72
BLAKE2b-256 3c07381f4023c3b08cb616e520f566d8c58957abad54e56441d41fe67cfb0195

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 3366751d68d237c621264233a32f3078bbc21b7904ab90a77e03d21390c742c6
MD5 2971e2af4b79d4df3b5b15a15f91b87e
BLAKE2b-256 1141cc2d2cfbfbdc3126ba258f3cd27d1ac8a33492ae3c35a4583ee21f0ba7f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 c5492b9929826e07cc3fcb9739ae87aab05dff6b5e67a9b73fd1700c6d008981
MD5 4d6f2cdda0114f944ff088f0ba1a277e
BLAKE2b-256 4f9ba7e317625d36356844f8bb022cabd305b541f968856cc3c2e0b58e53ee6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 25400d710641a8040bf022a8a99f579e581ffa1c5bd42c33255d7d6f3957c127
MD5 4a3a27f7fd34aff54f06b472055b3a4b
BLAKE2b-256 2161d11f7d9a3144bffe825247d6367cd93053666da50b94707c9129c78868d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 444.2 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5f1c5be60add78fabb4aacd13c5a348ae79d2fcbfc7fa78da8f1eb192273b370
MD5 91156b6ee9dfd36c76a171e5956dcd45
BLAKE2b-256 2bc363f8c20090048915711598b0adf475b149216d736157961de06480a45b15

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 476.1 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0a5747586d4467efd1f932710b269131c9717a872dce082cd92a00c1c13123a
MD5 499bea9aa30d279be7335641c5e0791c
BLAKE2b-256 39e9246532214c3abda518477cbaaf16d420295ad8effa5233844cbb38f299ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 448.6 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 101df7779c80c0636014a6b2c6642acd3efb5b355d48347c9d7dfb720aee9430
MD5 d271d231fe8e0ba92af40cec0e05589d
BLAKE2b-256 d94b02992fc4fb9e1b6673ee3f888a8e587a6447afda1f6f4aca776c148c2876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ba10966d4f03dd96a14365be4b8e37c327c76f11c3ca867116966cdd9f98066
MD5 054210e36469641435a8b4dbc27899da
BLAKE2b-256 a8fb05d9214c975f23225a8cd5c439325e338c7c377b315480ef3871db51f54e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0b7b8bbbec3ce9467ee0ebe334622fd90624f593edd3136c567811453fc4fae
MD5 e9cbc19478fce9bf1fe80270084a763f
BLAKE2b-256 0bf9b9fc381dd9b66afb33f2634c40e229d106467be0afcabe79648631ab6712

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 5a2e7ca615c3ddc15b82687e05a624e5f5cba3f1d6c20cb81172d70ea498451e
MD5 9260a07ff0a628bb4ac8763e6ee0925e
BLAKE2b-256 bd320ffd598a2fa2b9a423daf242e700cfdabda35d6e602394ad9ae58972c1c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 16eee56bcc72d04600bc56c1759982c2385ec0b41d3fd3521f836bf64a0957ef
MD5 2e3bced113e2292fbdf92aa827319843
BLAKE2b-256 472a50fb98028a26887cbe48dcc1df92a90825615bc73b5584301304090cded8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0fc2b75ae8d169d853be2862d960be8550da6c5c65711d5476407eb3fdb006bd
MD5 da1b2f4c90ea1169756a3a3ef68ebcee
BLAKE2b-256 37018c0812c50b3b1b1c37b323bf170d6be8847a8f234060485b7d1e71953f60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d6a998191f5ebe3b8c28463ff72bc030250008b3193c402464efadd08b5ca02
MD5 49ac25dfbe06341a4f1a31b668ca3ebd
BLAKE2b-256 bc05750a3265ca4dc54a460bd0cb1121a8f2ce9171fce4a135fb47ea7fd594d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 cc3c3e12cdaeb92d7dcf13db00e9f6b1956b910e47256e696df1cfa946d02159
MD5 1ed75c0d022531f974cdcd7c6298b7b2
BLAKE2b-256 73aeb4402bfde77e43dfb1b6ccff83c7b7ab63ed06b50c4754f0c5423fb374fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78d6f9286a629ce52728430afe18f8ed2b6c39a1fddb3802d7244b9983910ad2
MD5 5053a17bd2392aa603d92c3723d57f58
BLAKE2b-256 19d851de5c6b971c27bb1ef620293b8d1ca611ec78736b34b3f6ccf68e4c8785

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3c7139100fbaae76515b73051d8f0aa3a3ff02e415eec8a8eee8e2223d9ba955
MD5 f2def161805b1eb62212df20efcbb9da
BLAKE2b-256 8050e85bdaba0be59ca4838005ebfef4048fcdd5f35a02b07057a9a123394440

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2c2c7e05dd5335b298085abf45ddf98673934c3ee1c083d0b9ea13d4186ad500
MD5 446c52d7a802b6c58c96bfec719219b9
BLAKE2b-256 cc22a72f7c459e195fa41bf4f7abd1f925b91fe91f8097e51c654229ba144a33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 46fbbec4e4fab7428d4396a3823f9320e4560aa3113b89eeebce712c27c9ed5a
MD5 83099c61d013adf65042ec3a9c88f59f
BLAKE2b-256 ae1de05a7c896b15a6bc6fb8fc5319eb437861c2c49c34559ef928add6590315

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb6c657104393b5fbff01a5f59b2023db74058a8077d94475d6c25d03882a108
MD5 a926e32db69e8c909f610c1b60b7f614
BLAKE2b-256 01d5405a0ae4e6b081754a3609c1c97c63a950e000a2def16046f1e736933a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cdf534aa455593e589302990c5097aa5c92c06c4262a20da22934f9186a5fff
MD5 67f89a70eea801b9e2fa58d6742b794a
BLAKE2b-256 ddfb5ce075150828c797a5106f1c2fb26034e709d4289b9d2bf8b07f1e59fac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dbec68ce61b64cb73cab4d33df9433427b1713c8bcccb181dce695c1b6f8e87c
MD5 6cc67eb84028d3757b50cb3d688246f0
BLAKE2b-256 21e262634b7fff918ed98c3c6b2f0e70d520f7f28846cb412d451b04354c6459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 b29518c9c2ec7e373e68259206a137c7f4f5439c58baaec4b5ab3ab799850a4e
MD5 966d1376296139e3fa603497aeabeab1
BLAKE2b-256 89972b6889bfb6b6847520d50d95eb8c4307a45e28aaca39faf4a9454b3d1b2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 450.3 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8b93618102caf12801638a01a2b478a55410ddd71bd41cfaf6f707953a49ac43
MD5 7629a5ff9d0aef08b1ac636560317b3e
BLAKE2b-256 d186c0b5e305c770053f8c3d069bb52b8196917ba91949d1962d52eb307fb0d2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 479.3 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d488e6e9d3bb8ba5ae7066d5be885ae9670eba021b8c6ccb9a3a568e6b19d6e5
MD5 8976ef331b5e65cf34f82609bcfaa051
BLAKE2b-256 59ed41d0ad4f6ececffc32bdf1f7b494e5498f7ca5c849ea2e3cc9bbd1668251

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 454.2 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 19ca5fc84130675ba11c6ca5c7da5cb65f7bf8a32cdd2b616bf49cd334688aae
MD5 ec0490f49b48c04ee39d75b9f6a1b87f
BLAKE2b-256 42802d4291bd5724d3d17e5951aff5a3e02281483fb47295f0788276ee66cd73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c21ca9a1c63d4509158f478aeb9d02914dcc52adc68d1bc9dee2452284ee5996
MD5 dfe8a0ea5417bd6b25f1ea5b9f773165
BLAKE2b-256 f38935f3410bc284682338a1be6b6ea0c5abfa05f063942cfaa9256608440434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 32e735c3182de7b64f6941a4ede48b38c7f47d9437bd615dd30b5bda8fa1bc93
MD5 219501c4df116a9733dc27bdea1adaf4
BLAKE2b-256 7849466e947a42a88ee23c486d036e7e5d1b097f1bafd8084ad9c9a0a92f0f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3ea81eb518a2ecb319d8ec6d1424a37c773f6634bd87d6985eb606b2faac419f
MD5 35fbc110476eb8ffc28991d0201ff11d
BLAKE2b-256 9c3886fd51be2e08d8e45c83d879d255f10391903cd9fe2a16512f7591a15873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6a5f3532125233c261cf61f32df4059cfcf482eb793c7d3db8452e3142028b86
MD5 b44d9621c4edc5562138d42459c102c9
BLAKE2b-256 ec544e6b61c1fe7d3433f82bcc6bd7e4d7c683a742a10c9b12a025fd3695c047

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1467d1e7b48a73ca7237e0ee4335f3d02b923dbc27b82fd254bc301c97d4026
MD5 a1c22b70076659689c193e2a3230245a
BLAKE2b-256 f17ee1899b1ca3ec62f1eab2a5cbde14039b97493f7f53eb88d9b668562ffa8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1394dce36e0f0d260ac0b555a654de19cb989f3c1b8bdd24f505314dfea18a00
MD5 6a47ab4ba046c2c723fa9c8f0e219589
BLAKE2b-256 461d7a6e295c4257252f70f69e90864fdad74b6a1293054fb3f9e65a15de6d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ed94a81506e3d1bdbad5108f497a58f2a2354aedb4ca314d5326f07d1fd1ac2d
MD5 76fb64b0c1edbe43d786ba34603b98a5
BLAKE2b-256 9dda1d2f5a165f47ec9b1f69d37b8b977fdc4d501aa72ffb7930db27bb9e49ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c452d17eeb95d563fc8b936f3050301dbd1d268126c4632d8b70ede9696202ee
MD5 ca3dae408e500f6edfce72afc70adc2f
BLAKE2b-256 93fa2c861170bbd4a491de93a69e081db1d971092569e0d593a98ef62c384dc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 514db9a79337068981ee2137310283a07b4b885c584991097a91a4da419bcb81
MD5 f803131e1724a6e8e575db682fd9bae3
BLAKE2b-256 723ca7ffe05a757a4a7867643da69357ec41f506879fbd1b231d2ed90af246b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 610d68800435903e303ca0542b9d3e4eb72a12ff33a6d471a070c1d81eebd3c2
MD5 47bbebf4dc09440d02cb8c88137b9840
BLAKE2b-256 a8ce596120faa85ca7b19cd061e3f2f3be23aa8f11a0aedf9191db9e0da1bd76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 71b2604c9bfc1b115547d63a094d5244b3f02799833513a99a68aaa7b167c4cb
MD5 3d27d56ff881203b7b55d90947acb634
BLAKE2b-256 976f2e5f1b525d5474b12b3c60abf733a755845f3bceff21542081ada515f837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d336820adbb914debbc90a1d8c1bfc4bea55996aecf64866a989d35d1f9fd903
MD5 29487241b79aebe4d18e956fb85d7dda
BLAKE2b-256 4c3f28f2f6cf3d5c0e7b01b27140d0e7873fd11fb341169ad3ce78ad04aba628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3a96b6d39a4872222beee72e1df41d2ff886ae96152cf3e757ef8c5673ef0e
MD5 a7149d2869326fc63fcc370d24bc8a18
BLAKE2b-256 5afe49746b6b610144a06323bebd8e1211a390310d8c69b98dd6d52df341bc3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0746d9fb0ac4fdef643a84494efe3f06d50335dd8c7a530228b86448aae0a803
MD5 1dff914aead1382daee653b9aed20f87
BLAKE2b-256 ebf2cd3fedff6fade73d71df9ec908c210cec518ef90fd00289250684b90aecf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 54bf3522d6f7351e55f89a62d5c2bf138ad557b031670266c5df604ae88e0b5a
MD5 87242d3d317f5cefcc332ba6f7435402
BLAKE2b-256 67477727bfe8db93f8835a001bd4359d8480cc68d1259b8bce334668f8be97bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 450.4 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4acfc34bd4d3c58754fc9f22ff1b5e92aabce68f3d4bf7b71a0b732d9bceb78a
MD5 d4cf2bb5bace8d73a5e62fbc8f300b38
BLAKE2b-256 6bd1330fb22c9535ec177b52396905131c6e39447244b6ca876262939af668ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 478.7 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22a8d06f204e0518a586d770032db3c7043c9ba3693081b3e3ad425e1458d594
MD5 2a48ea9e71d6ffb0603eb7beb0e4d5fc
BLAKE2b-256 7fae842357f2afb9c915715c6f5775239d987f5d0f845abf7675fa794e0a9d40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 454.7 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e4646e9a6af29af354204011bf5769cb0276ec5b64653e42f90b3e13845169f
MD5 b8c5a18db92e26f63aa5188b8a6b370c
BLAKE2b-256 370fa81207dd7a2d4a4f645b3a3f8b5a1da1159dc63117ffb137b698fd6df50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89ed35666c95d3efe1955056afcde09e62a57a34e2a4398b17f9f6c1564f0b25
MD5 20997b3a49ce60d42a4235082c47b224
BLAKE2b-256 9f7dc341d32ab2dec56c8478740695743dc6c21b383cace9376a3eab16311a07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 28eee8de1d69711c53116df8202f1c2aa0e3f80ef912a88fc18d159d53e7110b
MD5 442149b5e253f28fcaac1a2eba070e8e
BLAKE2b-256 578f8d25897f8273a32fe4ad40a8885eec4f397377ed46e8e383078169f60316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b5314743ebe926c2fda35d0a298c565c885505f6635c2a30936363404cf274a7
MD5 e9ef4a8977876f99348c2ccdf0471774
BLAKE2b-256 11bc80708fe3f64a07a2c306a42fc7b009118a952709761d215f6d1b4c57195b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25e9f1d2465a210d60edb64d7b204a147e85d4c194eecef3d1604fb5ace678ce
MD5 be3daeb4e3be437d0fcbf9c29786a0c4
BLAKE2b-256 f416582e36ad1d32133cd40659f3bc98e71c22179665a1cfbbb4713bce339c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f79bfd2847513a7ac801bbafd1de02348a37926ac439eeb4bfe96fcff4eada15
MD5 c87cee10f3369dc7eba1d575157ef521
BLAKE2b-256 8da3771879cfd59948f4544b172189048905feff802f20f1c6c5411e998a3e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4714c70067a08b604d0bf3bc4dfdf82e52944afab41d0428d460862763d2f79b
MD5 7062f8a8f38edfec21ec0d27ffb44018
BLAKE2b-256 1dafb20af85765658972d3337834bd5eebba91b962794f2b4fc3e0ee8c85c0e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f4d2038c64f36df96cfd3fa0937910e231eafbf897e70a06c155a817bb632fa6
MD5 0f52a447e66c2c779a963f8b3a7a406e
BLAKE2b-256 7d62478f169488d61414c0a05e7fe423b59ae3d9dcc933d1f0e4acc2c5d5bc3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.0-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.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a78a77366ed158a0a54b076990e575d7b7cdb728cbfd02711eadab150f2269f
MD5 95a8629d938270c2281b94f16b6e1514
BLAKE2b-256 22325a05303b0874458920b73f48b8779cc3a93d503f121b38dcc0456dbd698c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1210d4c87cc00128160c7384ab41877a701295b97cffa6362f908a49b6e8a7ca
MD5 02ba6347562eb601fc433025850b024c
BLAKE2b-256 338c03c5438ec35d7e3a4f33fe895d6c3ec7540a7cec46065f21851211e1ee4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 63e38be0d75a654deaa06be32fb4cab883a4222940be1d05861b6717679cbadb
MD5 02e0ed73168efd236b36e593fb024f26
BLAKE2b-256 01f65de3ddffc87a9e8d09b3be38fbd6dd1a736b2ad477a7e787dcb85f57f338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 30e8b7eeb42d02c120ca90d6c6e076a221a16b70a6dac9ae44c7ab5104cc7fe4
MD5 00134f80e11a3415bdc58516f28c0e97
BLAKE2b-256 5795a31d8ea1a0b9ecc084f5a7dd0b431ce64ef585918bb7bdc82afe11843877

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e2514cb7195f6d7c219339635bea71ae47d1569b051300d32df9dcfabcdb869
MD5 88bcaa0efed5da3249cb1db2d60ae271
BLAKE2b-256 09b82e36d54d0991ec5bba451444004591ee0af58cb1662a3a81c562878b9c1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02cb2ffbb7da32f82e21ad9952669c45bd88a80e0878264c2f59fe1c6fb2badd
MD5 5d8f37b2e9024c0f214b645b0164979d
BLAKE2b-256 d0d1da280e23321c132c0a3fa7c8cc2830621d79174edc64c829443346489a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40af7ebe53c7990e110dc4ad03566b12c3ac996254298a3d39046dd69cfcb2c2
MD5 a9ceb1aea416502509a8afcb7d16af3e
BLAKE2b-256 f654444d37eebf0f15db661ca44ec7caf93962f3c5ca92eb4c9a5d888b70aaa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 692e409052e7436029bbb32977cd7c5bf806ac5fa4085b973996785ffadad33c
MD5 84158366d196071fcc692ad5b9a159db
BLAKE2b-256 eff0f81190ba488cd106c2fc6d92680e56bb223bbbbf1e6908c2617011290112

See more details on using hashes here.

Provenance

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