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('https://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.3.tar.gz (8.0 MB view details)

Uploaded Source

Built Distributions

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

aiohttp-3.14.3-cp314-cp314t-win_arm64.whl (469.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiohttp-3.14.3-cp314-cp314t-win_amd64.whl (500.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.14.3-cp314-cp314t-win32.whl (474.2 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.14.3-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.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (532.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl (526.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl (791.4 kB view details)

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

aiohttp-3.14.3-cp314-cp314-win_arm64.whl (453.7 kB view details)

Uploaded CPython 3.14Windows ARM64

aiohttp-3.14.3-cp314-cp314-win_amd64.whl (481.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.14.3-cp314-cp314-win32.whl (455.9 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.14.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl (513.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl (510.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl (756.6 kB view details)

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

aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (502.8 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (494.2 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl (488.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl (514.8 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl (509.1 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

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

Uploaded CPython 3.13Windows ARM64

aiohttp-3.14.3-cp313-cp313-win_amd64.whl (476.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.14.3-cp313-cp313-win32.whl (451.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.14.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (509.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl (508.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl (750.9 kB view details)

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

aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl (502.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ x86-64 Simulator

aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (492.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl (486.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl (515.2 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl (506.3 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

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

Uploaded CPython 3.12Windows ARM64

aiohttp-3.14.3-cp312-cp312-win_amd64.whl (476.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.14.3-cp312-cp312-win32.whl (451.5 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.14.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (511.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl (509.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl (754.7 kB view details)

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

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

Uploaded CPython 3.11Windows ARM64

aiohttp-3.14.3-cp311-cp311-win_amd64.whl (481.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.14.3-cp311-cp311-win32.whl (456.0 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.14.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (514.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.14.3-cp311-cp311-macosx_10_9_universal2.whl (764.2 kB view details)

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

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

Uploaded CPython 3.10Windows ARM64

aiohttp-3.14.3-cp310-cp310-win_amd64.whl (480.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.14.3-cp310-cp310-win32.whl (456.7 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.14.3-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.3-cp310-cp310-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

aiohttp-3.14.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (515.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl (517.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.14.3-cp310-cp310-macosx_10_9_universal2.whl (765.8 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3.tar.gz
Algorithm Hash digest
SHA256 9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc
MD5 1befc420af8c5cc860a80a629d66cb00
BLAKE2b-256 58d922ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2e1161602f45a54de2ce0905243a95f58cb42dcd378402f3697f5e0b21e9d2e7
MD5 0c27b4cbf13b5c87e9a93531d46b03fd
BLAKE2b-256 a437cfd1ed540a4d318da025590d96b728e63713c09e9377950fc655dadeb856

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b20032766aedf6261c7a566585a40867d092ac03a0d81592d5370ef9b054f99b
MD5 3baf489b52db3085d9613bfd9e0aaa30
BLAKE2b-256 995d3cd6ef0a2b2851f7ab913b5b079334781bd50ff56a323e4454063377a080

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b304db572b4368edd8dda8a2274f73156fe15558fca4a917cb8a09fc47af5963
MD5 f2e99b69094611e3227a6e975a61b181
BLAKE2b-256 5e1908d41839658bdd44a0ed2480f3891705ecb487ce28c0dde62c9040c997e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498c6c623134f8e09a3c4e60bcd607a0b4590dd7dbf08dd40851b27cbb520ccb
MD5 7928c418fa14be090ae0a6c71d5ef1a7
BLAKE2b-256 94c6bd959bd1e4771f9fd944e9e436224c48c77b018b73b519b5aad346335bcc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0f177d1b195b9e06376cfd7d308d8a1b920909a609d03ac82a8c73bbb16d3b9
MD5 6a56092a0cd52289fc588eedce192998
BLAKE2b-256 ec4c618b1db9b9ba079b8875d2cdf78e7c4a3bf72903bd5850fee7dd9544600a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bd52f811e65f6fb634b1047159657c98f52b407f8efec907bcfc09da9a4c0a25
MD5 fa1a5a7b41ff671be257e3a909036626
BLAKE2b-256 19fe26f9c5e6458385aa86497836b0dea6fb2f027827d63f37c7856cce9286ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 74ab5b6a9fb13e873e5a90946588baecaf488745e1db1a4a5c433f971f035098
MD5 ac4583050fa88d3b9edf2c33097ed8b7
BLAKE2b-256 a19d0537cda4885ac8f5b7053d164dd06312f4c483a4edcb8ee5b8aaf2a989bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8fb78a83c9e5f741ca3a68cfb455c1f5bb83b4e7249a3848b3cd78d0a8563b0
MD5 0c5cf65f587bad2794c7900841267eaa
BLAKE2b-256 64af38c33c4dd82fddcb4e56c4653b6f1072a8edbc6b7fa15809f14932c41e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7d3a97c678d34fc5b59da671ee9cd630096ddc643e7b5a30d54a2a6f3574d3f
MD5 19dc70d0b5c6fcba77a44af0ca21266f
BLAKE2b-256 a91947f4968659c5e23606c3790c80fc624e691c153d036148449ee84d31b287

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a0dc483c00da8b673abbb367eb6f8d8f4bcec30eb58529ea13cb42e7fd2dfa33
MD5 edb3edccee732f6950a8d6f1c48bd90b
BLAKE2b-256 009518bcbf830a21dc3aae24d8f6b6feaf3db1d2090242d00a7868db2ffb0b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2498f0fe69ead802f9675beca44a7c21c62fdaa4ec5145ea1c3ad6edbee29f85
MD5 dec7756b7a85dbd462926770e1c98c3d
BLAKE2b-256 bb6b62cbd6577758699525f5c712d1ddef57d9875fbab0ae8d5f5a202fd598f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3ae5b3a59436d089b5395d910121a390feed4d00578eb95a0fd1a329fe963100
MD5 42da4916676c73f8e236857365677dad
BLAKE2b-256 86e6438b0c79ca6f45eb9fd9817dd4c01a91919a38c0de5ee9e05e2b4dc0ece7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 270d3dace9ca2f10f0da5d8ebe519b7a310fc6112ed916e32df5866df0888553
MD5 982bfe7c411d02534b637085d98004f0
BLAKE2b-256 b1046acdbf17315f7b55f1937e3387acb89a3cddeb4995689553d064af8e92ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8a5fd34f7f7410d1730d5c2ba873cacb2eed3fede366feb268a70ba22581ed8f
MD5 8585b44c02c2883731599ac4ff6d934a
BLAKE2b-256 f6ec9ca76b28a27525b0cc53e20842e0228b022f301ce1f436b7d814b4aaf2df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fc7b5bfec6573f3ae844f457fdde5adeb713f8b8e4a81ad64fc207b49383716
MD5 977e6109d55d39fde43896bf87d62771
BLAKE2b-256 fe45f8919fd936e8b79fcd9bda7b6d8e62613462a713f4f17987fd7c34399142

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30402d03a7c0ff52bce290b57e564e9079fd9d0cb545c8aba73f86a103162d2e
MD5 f3594587feac92332938894f512bc2f8
BLAKE2b-256 9ed88ec0e471248c500acdce2be3f46db8fb62b5eb60efef072529cc85ee1d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ebe8e504f058fe91223351cecd2d9d6946c9d241bb0250d898ffbdf584cc72b0
MD5 952290841eace8f5b753cf1a3b3b07c4
BLAKE2b-256 80ca87c32a0a7704583cfc49660bd817889bae5b830bf53b5dcb4e92145ac2da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8800c996b01c2772a783e3e46f3e1abd5823029adca0df54231960de9bfefa5b
MD5 c7e49a02bf245273531a0a226ae019c1
BLAKE2b-256 6aa49c033beb355d39b6147980597ec9645e4729243f686ee4dc73945de72030

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1576145bdceeb92382d899751e12743a3a5b8e460a841e3e50543859e54864dc
MD5 c87e442425620755c591a2ec781502ab
BLAKE2b-256 228cc29d067df825a2df88ca432db848aa2fe8199598359cc06c12b09320cac9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b3b60de05f3dcb6f6a00f818bb2ec781cee4de0645f59ccaf99b1d1823b6100
MD5 b89078424f4ce312b1d29c0b1adffa92
BLAKE2b-256 f58bc7baa1ba1eda4db6989baefe5de6d99834921b84ebd7918624febcb9f290

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 38901a84da3ce22249f6e860bf8f90d141bcab7da090cc398f8bb58c0e44b7da
MD5 c5f8b3ae962f99f2993950bf6a530143
BLAKE2b-256 811b6893d4bc57e434fc93a6c9217c637d967a0b651d989f6e3265179375754a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c5ec8fb1bcc31a8466f74aaf26c345d5c386fa4bd08a3f0eb9c7a4a3fe8b5bf
MD5 60620f5c311153154a6ca696c050af86
BLAKE2b-256 97eadbaed0d73e8a69aad653b045dab451c67c2454bb731a37b45a86593e9422

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9d9edccfe496b476db5f398d97b865e9a6752bcf8aec4eef8390ce20fb64bb41
MD5 85f3ffbed73875c7e7408ec9c4632fda
BLAKE2b-256 60ad0ed7586cbef7a884e23a752fa2bb987a122e6a5dd50dab109258d0a95193

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f42e9b78301f11c8f861746175d8b9c1ccef713fcad9eab396e2f6db8ed4a22
MD5 9736664a947fc29201c135539ceafbef
BLAKE2b-256 a892ad720d472556a995049206867765e9410969684f86ee09423ff9969044c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e3ac92d90e92773b2362d506068e9a948192bd553e743c5b2429e28527c8661
MD5 5f44d55e34baad4ae98d7fd2169ca445
BLAKE2b-256 851daf798d306f7a74b6a632dbcabcf62a4c91391b7582d2a8c6d7712e2cc54e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd817772b2fcf2b8c0905795318485f9ec16eae60b29feb7f4c77085311637f0
MD5 28e6c2d96e999337af54ca4247112d48
BLAKE2b-256 3805d33c680c1bcf1c7e130f9cbfc1fc02fe8bb0c4af2a94a53dd5fb56131e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53e5179d8abb5710f8e83ba207c41c8d1261fcffd4616500e15ca2b7a33be10a
MD5 c7ea90de740dd670b41864a35cef5130
BLAKE2b-256 2ae813a9d957a1ee40837f46aa30f0f4c657e673ad86a2e6362a9f9be20d26d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d77640cc618c1d99fc4f8589c0f24a730adfa54eb1e57ef7bf0c8dfb78da898c
MD5 46646c05b7d0397a8c9ec819cc8129a2
BLAKE2b-256 d116bc4b55e3e5cb175fd69c53c90d60d2f47797cb343da5106e23863dc4dba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18cb43369747b2ae007bd2655fb8e63a099c2ff1d207962943636dac989b3147
MD5 f3273343b5e3ed8db8c9c1d4ba6b0dac
BLAKE2b-256 d5b71da684a04175473fa4cddbf9a2f572e79514c3fd27a74597f43057d4f3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e2667f0bbe7eb6c74eae5e9691441ad186e5845ca3cff63230fc09c4e7514f5d
MD5 2a3d7286cb5fc8eaea593accabf73f0c
BLAKE2b-256 95b585b099c299c3ffd38ad9b3e43694c8a346934e4a30c88c4fd5a841234f77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c23ec8ee9d5ab2f5421f9c7fffce208435607af27fd46d4a44e031954352838f
MD5 a19e57af2454e9e397dce5fcd65df367
BLAKE2b-256 2aa3ca0cc6724cca8114b05694abd916060758c79894c3aa5b012cdadc1bc28e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cef89a58e628c4efcac3275c2d68083f82426dcdc89c1492a6f654f9f7ea6ab9
MD5 764b84c0510545358bcfb492906dbf70
BLAKE2b-256 49bd40c3fee327529284375c6701cbb0fa4600cc2e8432af1378f897e2ef7d3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25bd2708db6bdf6a6630dd37bdcdfcb47c4434d22ac69c64665b802910140b30
MD5 94bba45d81ceca95307db904bef487e7
BLAKE2b-256 47d18aba53f15ccb2238405f5e9d30e2a8ca44f93878c26e7165ade00d374b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db332af25642007330fca8be5c4d194caf2bea7a7fc84415aff3497af5dfee6b
MD5 5f228cb4c3aeadd1ea163b73efee9cff
BLAKE2b-256 85ed0357a015892fd68058bf2d39d3fd1958e459b997a7db30aaa6aaa434ae96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad4c8b7488d745d2ca4838ebd8ae5ba9b56341d30b1da43640e4ce87f9f49646
MD5 16203d09fa2e79dc8581cecc50867233
BLAKE2b-256 97a37056b86dc0d9ec709ea9777eae3b0161428f943372f8b98c01c11593b682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e72ee89e28d907a18f46959b4eb0bb06701cc7f8cf4366e00029e2ccfaaf5924
MD5 26a94bfd9566e625fa7a69b944d68c75
BLAKE2b-256 a6264ff0164370deec18fb19254ee4ab10b7a73304ac0c860b13f5f84663759b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 dfa68deb2a443bdaa3ea5297b0699c1464f08aef3812b486d1348eee61b07dc0
MD5 697bcbe484b79595154bec3878a016c7
BLAKE2b-256 3f5a8f624384e5f1efabb5229b94157eb966b021e97bdb188c62860c2ae243c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1caa7b0d05f3e3a36f87788c59e970a7ee1cefcfcbb924a9f138c4a6551c9cb7
MD5 0397792e33c0efc57739bb1a344a4098
BLAKE2b-256 48d6d51b7d4bf309af3693940d8ffd2b9ed0b682434ef85959b7c9c137f60cf8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 614c61d478b83953e261d02bb2df750f17227cd33ef8002945bf5aebbde21919
MD5 852a3ace20e4f34c15d12800cb604c0c
BLAKE2b-256 29ba2a0c38df3fc557620b6a5acd98364af050053b6285b4dc7ee74100c63c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 e3be98a7c30b8c25d573dafba7171d66dfb05ee6a9070fc46535464ff97700a6
MD5 35681a34b93df39ded462727091048f0
BLAKE2b-256 ada392cec936f78cc4bf0fa5554ebe593b73459d94e3c62303e1902a4cccb6f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 49f7325beb0f85ef4aef5f48f490269575f83e6e2acad00a1d80b807eb027062
MD5 dbcfbfb7b5319142cbab630552572349
BLAKE2b-256 c820887fdcf832326571b370ffc347b3e70abe101096f3720126aac161b1d872

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ddcac3c6b382e81f1dd0499199d4136b877beb4cb5ef770bbbfba56c4b8f55d2
MD5 84bbf43d96d8d6728dff29f4bb3736a6
BLAKE2b-256 b20e50d6e6471cd31edce8b282bdec59375a3a69124d8a989a0b1313355cae52

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dff9461ec275f22135650d5ba4b4931a11f3958df7dfbb8db630000d4dee0883
MD5 fdef6d923c08031ec6739719531ebb1d
BLAKE2b-256 9d693d876ac02659f271cf7f6769f14a8e3de5b6e888ed8b5a7e998086a4cec8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f08ec777f35ee70720233b8b9811d3bb5d728137f30ac91b7457709c3261ac0
MD5 1765620309787f91e9de8ea69b884ebe
BLAKE2b-256 29a6442e18b5afeade534d877a2dc3c3e392aff8d49787890b0cf84790410267

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4f72af88ac2474bb5bca640030320e3d38a0163a1d7533500e87be458eef71
MD5 393571d91208744b8251b8cdf6a76659
BLAKE2b-256 0351a3d29fdf2c25d796746af8ad6fe56a45d6256c38b0a8a2ed752e1160b3a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b014a6ed7cf912e787149fdc529166d3ceabac23f26efeea3158c9aba2354e7e
MD5 84370ca2b23413bf8de7617a47f73962
BLAKE2b-256 fd3178388a9d6040ece2e11df62ea229a822cf5e52d238374b220ae9975b2623

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e92eb8acc45eb6a9f4935071a77edf5b85cc6f8dfad5cd99e97653c26593cdde
MD5 a35871a3cdffdff1688578e2257e1801
BLAKE2b-256 aa1e147bdc6cc5de5f3ab011be8bf5d6e786633249f22c20bae06f85e45f5387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7a75aa63cbf9b21cfaf60dc2657e19df2c2867d91707d653fee171ffeedd1371
MD5 59d7716123368e98fc8a1534cf14c9c9
BLAKE2b-256 dcc94e9383150296f97f873b680c4de8fb2cd88608fb9f48c79edcb111611abc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42a67efc36300d052fb4508a53e8b6901b9284b599ae63945c377569c5fcc1e1
MD5 2fd668eca96526737e5428c9fea96aa8
BLAKE2b-256 39b619c8c592baeeb94b75f966547d40c02ac7590902306ec5863d5c027cf506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df82f3787c940c94986b34222d59c9e38843fba85139f36e85255a82ad5355a9
MD5 7e8933469b1f314cf167a320a00384da
BLAKE2b-256 fe6f76eac12a7f2480e1e304f842efdb07db33256b0d9165b866b6ef0806c202

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd54d0e8717de95939766febac482ac0474d8ac3b048115f9f2b1d23a16e7db4
MD5 6c7a704b7d0a1e7accc99aace0bb77ea
BLAKE2b-256 cd0fcf16bcf56896981c1a0319f5d5db9337994b5165730c48a8fa07e9b34be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7d2deec16eeedf55f2c7cf75b521ea3856a5177e123844f8fd0f114ce252cb5
MD5 1edd71b1ef35084fae3f29bb8efce67c
BLAKE2b-256 ca1c7da8d08e74d56f00070822f9638ff3f1c563f8ad87d1efa996c87bfc8644

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fa9467a8113aa69d3d7c55a70ef0b7c636010a40993f3df9d9d0d73b3eb7ef24
MD5 de394e4b350234942ecdb120180c787f
BLAKE2b-256 265e57d42fca1d18cb5acc1cad945d017fabc5d6ae71d8a08ad66be8dc3ee544

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5895ef58c4620afe02fa16044f023dc4dafec08158f9d08874a46a7dbc0341b8
MD5 3e8349d1205490fac0709358bf622dd2
BLAKE2b-256 a166e13a02d0eeb1a9a502402a977abb4e4abff9fe4051c26f80558c57a7c975

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c39846c3aad97a8530c89d7a3869a8f8e9e3762c6ac0504481e5c80948f7e807
MD5 317bae7160ce57df59fdbbcf789581cb
BLAKE2b-256 1a81d217043a4c17fbce360905e3b2bdd20139ebc9a2de836d035d179c4da006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55bdcc472aafe2de4a253045cc128007a64f1e0264fb675791e132ea5edaa3bd
MD5 801f66b8791b33eff0ff7fa91fb15d2d
BLAKE2b-256 97216464573e53d69672cc1eada3e5c5cb2d2efa82701e8305a0f2047a576967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11fb37ef075669eee52ab1928fbf6e1741fada40409fa309ebde9607a962aebf
MD5 750d4a5b6820bffd7975c103c27b8e01
BLAKE2b-256 bc6be7f13410d391c6e55b4c007a8de024355389d7d459e3d64c42b2d33617e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d6218d92e450824e9b4881f44e8c09f1853b490f9a64130801024a4793b1b3b0
MD5 1703ea05685c283e4b53e92b5a06c12b
BLAKE2b-256 91cd41e131f13afd1e7b0172a9d9eda085ef90eb8439f41f0d279db81ed3ae60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ac74facc01463f138b0da5580329cfcc82818dea5656e83ddcd11268fc12ff80
MD5 f7bd486468fcb43312dd9a65be5fdcdb
BLAKE2b-256 7ea3559639c34a345d2cf7c52dff6838119f2eaf29eb508227b5b83f573af813

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7041d52c3a7fa20c9e8c182b534704abb19502c8bdcbde7ab23bfda6f642394f
MD5 24cc3a0cde5b3155749406dda0d38a72
BLAKE2b-256 b91106ae6ed8f0d414edf4068861e233d8fe23ee699bfd4b3ceb8663db948a62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 78253b573e6ffab5028924fc98bc281aae05445969982a10864bc360dea2016c
MD5 2ad6fb8614c6605b625a8e4589b76d73
BLAKE2b-256 d4dd57187c8be2a35aea65eaee3bd2c3dcbbcf0204f5106c89637e3610380cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 cc7cb243a68167172f48c1fd43cee91ec4b1d40cefd190edd43369d1a6bc9c82
MD5 7149a3380e21baec24f503998edd9eba
BLAKE2b-256 28242854869d29ed8a8b19d74f9ec6629515f7e04d02dd329d9d179201e58e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 f3d2669fe7dec7fc359ecdb5984b29b50d85d5d00f8c1cb61de4f4a24ee42627
MD5 5277a7950bec55baa7b76e23ca3ace6a
BLAKE2b-256 2209dec8189d62b45ade009f6792a2264b942a90cb88aeaf181239933cd72c3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 2e9878ae68e4a5f1c0abe4dd497dbc3d51946f5837b56759e2a02e78fa90ef86
MD5 b2f72e6a64fe8a35d54372939af2c2d2
BLAKE2b-256 57be5afd201cc0ab139029aadb75392efe85a293403d9dd3a3226161c21ce00c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c
MD5 52fd826d8fed6d5ee5b8db76c1a1da69
BLAKE2b-256 3e4428dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a
MD5 8706ee3e9358376092524e268fcd58ed
BLAKE2b-256 769bf2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559
MD5 814f6fd51adb4ebefc0d50898daaa8ca
BLAKE2b-256 b62b6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19
MD5 53e567c8c93e3d913c1c2f06154aa49e
BLAKE2b-256 e0ebaad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3a26434dafe408229ff3403458ca58de24fb51936504decac49ce6755f77e59d
MD5 428280a7405859a0346ef95da9b3b8bf
BLAKE2b-256 a384072a91d68e1e1eb587985b54baab94221277f877e8ef274fc213a0ceae28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 89176250f686cb9853c0fb7ead90e639e915b84a6f43eedc2a4e7ec21f1037f0
MD5 c09b7353fc1c62a8a3a6e0f7cc19e1d5
BLAKE2b-256 13d4e7d09ba7d345fb2d74440fd2fa033c5e079fac05552927705986f41a364f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c8653fd547c93a61aadc612007790f5555cdd18946fa48cf45e26d8ea4ea473d
MD5 8ef9d776ca6059669f0bea5c840a06c3
BLAKE2b-256 545094c28f08b131c4bf10984ea2c7a536c9920608bb2d6e7f95642c30cc87b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 530125ee1163c4219af35dc3aa1206e541e7b31b6efc1a3f93b70a136f65d427
MD5 16ea6fd804baf52f0bf4a784fdbef36a
BLAKE2b-256 28b71c2aab8c706436dcc28598452488ac9cd7c409da815237c28c27d58993e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041badb8f84396357c4d3ad26de6afd7a32b112f43d3c63045c0c8278cfd2043
MD5 c990faaa172a76c14fd3e510eaf5a430
BLAKE2b-256 49ed3b203fa6de1b338c14acdc06bf6ca9b043b7944f005966958c2ced932cde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0a5ff2dfbb9ce645fa5b8ef3e02c6c0b9cc3f6030ff863d0c51fffc50cb5541b
MD5 3d836bd4008fef0aadf9e304860f2e89
BLAKE2b-256 667310b1ef93afa61f4963c746257b70ced619cf31a4798671de5fdb2608501d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 543906c127fb1d929b95076db19b83fa2d46751006ff1e23b093aa5ac4d8db42
MD5 8bc381fe0f70f93b6d93488e7e57217c
BLAKE2b-256 52b77cd31f29d6055bd711ae6e669367fba6f5ae9de463910a793e30556a8db7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 ea05e1f97ceea523942d9b2a7d7c0359d781d683d6b043f5943a602b14da4787
MD5 4dc4e2c872a5e2320a61118af96d450d
BLAKE2b-256 5c9adec94d6ad694552fe3424e3f1928d7a606a5d9d9433a04e7ecdd9d38ae7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8f2f1c4c032c7cedd7d8da6f54c97b70266c6570c3108d3fdffee7188bb70529
MD5 a4f64cb8f07426489c96e38dff648878
BLAKE2b-256 d09f181e8a8bc79e47d13c7fc4540bd7a3b729d9505609c61f392a8dd2fbfe55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a94dbaae5ae27bd849c93570669bff91e0510f33a80805738e3de72a7be0447b
MD5 a9bf7727029b77e9ab6c3dec49a34ed7
BLAKE2b-256 6bed62bc4d74363ad346d518e0720363a949f63e2e23439a79eb5813d4d29bb3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f631fe87a6f30df5fbe6d79640b25e4cffb38c31c7fb6f10871517b84b0f8c1a
MD5 c3becf1dd602f63848f8f935958cce1b
BLAKE2b-256 54b942e74c46b7b7c794b995bbc1f573fb48950c38b19d8600c62a6804ee2d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617105e2c3018ee38d0c8ce5ee3c84f621a6d8b9f723202aacaff28449ca91ee
MD5 c978641e1f68fae52cb83cde692c61af
BLAKE2b-256 30074bbc222cc8dbe31d4c3e8a5baad2286e4d42026ac0c570027b89afce6344

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5bcb6ff3fdab1258a192679ff1a05d44f59626430aa05cd1a9d2447423599228
MD5 3109317cde8f4e99f1bcb75866e6e1fa
BLAKE2b-256 8811e7a70a209eb9a067c0d3212b518a0134e3484f5178c7533878b6b514d469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 39aded8c7f3b935b54aab1d8d73c70ec0ee2d3ec3b943e0e86611bc150ba47f5
MD5 823a5df8100027aff680690c0d98f604
BLAKE2b-256 18d4eb96299230e20acf2efae207cb8d69051f1f68e357e5ea5e479bf6fb097a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 03cd2bde3d7f085b64e549c985f4bb928cad7e8ecf5323bfca320db548d81b39
MD5 5c0a463f569555cf5d64b21fb2212d3d
BLAKE2b-256 8e7688401ff3fc95e85c5fc38d588f36f55e61ecb64343b2bc8d69326f453cc0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e1e74298bab6ee0d6e749ed4fd1901c7e604bdda32c03d787a2cc71c46d0433d
MD5 cf3a90d023902e040d5055d86a4b80cb
BLAKE2b-256 730c2af9d1674baccd1dbd47282a93d660a22e57ef6167c856deb24b4214fbab

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a4af35c443e0b1a1bd6a8af3f3485d7fda15c142751a00f3ff8090f0b93346fa
MD5 ad19999a21ce7e4f8890766f4944c066
BLAKE2b-256 8a1df854878bbc69b88faefe924b619a34a6f59ec05fd387c77690667eaa75eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 152516815ef926786a0b6ae2b8f1fd2e0c71582dee0b435636865316fd4891b7
MD5 52c03f067ce933949051d862f9c438a8
BLAKE2b-256 21df6061679faaf81fac746e7307c7adb71e858071a5d34c27583afefc64f543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ed099d105449c4f9e84f24af203cd131349d4761d8813fa7e02c32e7128cd910
MD5 b0001ddaf413f925388e52c72e432a9a
BLAKE2b-256 c990b934682bcaefae18a9e04f3dff5b68522ba810906358ae5029b68110ea3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ba59d59aba08ac02fc03b0c8983ccd5ee39a199d0552ce9e6d2b4845b34d59ae
MD5 1b711919f6f7cb92115de2b8eda46e86
BLAKE2b-256 ad05d5e1cb6480eeffd3f901d40a2c5e2d1e7effdc797837da3b490272699f13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b2466434105a4e03113c36ec775cc2ebe6676b62eae326fa670bb607ef788c1c
MD5 d36403922a8eb7e9a7d38ca6c2fd5900
BLAKE2b-256 635d99e7d91c82f1399d1ae2a854e080bd1493fbc31e5e959dbc4ec33dac3bec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ccd4893707b3e2a13e39c90d43cf80edf2e4d0457935bcc103bf2346214c3f15
MD5 ed9c26bd3bfd3bf3d70623fd29cfa203
BLAKE2b-256 11b20c3d4114f0aee4f580f5b3b4eb71b24d7a23b834ea506a4dfebe76513f35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aa6e61fdf20105c4144e755bd586008ff450791d67b1c8146fdc15959c4d51c
MD5 9b2be1c89fcdc4639076fb4a0762e206
BLAKE2b-256 19ce967d628e910756f3539c6107cb7844a1b69440dcb3029a5ee7871b09ab63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f55119f7bf25f49ed210f6096090715da24f2943c62102448915fde3c62877ce
MD5 abba8b9c2ce6f975867859d26f91c1d5
BLAKE2b-256 85009c45f81de11710460edfa1dc81317b6e882703b160926c879a9d20da9fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53e7b4ce82b54a8bcc71b3b67a5cbd177ca1d7f592cbc92cd38b7349f73482db
MD5 7578df9e5af0836b4f9ad7d5647ae1f4
BLAKE2b-256 a5b92b8f0c0ce09c87a1daf80fd483431b56b1435d3f62789bc86f572e1245de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 18c441d0a8fca6de8d1f546849b9f0ab20d435993e2c5b59562b2fae6be2f929
MD5 3205ea4bec951433dc6ce34bbc8e878d
BLAKE2b-256 ccc949ab8572df7d66bc13d11e31f781292badb04180dd87ba98733066c6aed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 56f355e79f71aef2a85c80305cc915f894b170dba76de5fe84f6351939b83c06
MD5 6b5d32b6d27e7d3ce664c11acf7cb028
BLAKE2b-256 6d3e834c26918be7d88068822b40e0db30fca50b5f4fe79104aa16a93f1d74e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 16ea7e24c309fb7c0bbd505d149abe4fe4dccfb8db911db7dbec0921bc889a6f
MD5 7e1f0128333bcb9834f30b25c4e14655
BLAKE2b-256 a5113dd9b3fb3a170f6ec9011b5291d876a6fab4086714c9e158600edf01b4fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6088ec9894113802bddb3c09e974929aed2c7b3a8c456219b8aab4481f1a239
MD5 ac926efa20fbc2a2b981af1ed8e6733b
BLAKE2b-256 9e8da71c6f2db52ac1ed142b133f7feddaa6b70539c3f4de24d7e226c95b794c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21c016079415ed3fd676963e9793700a566d85dbbd6bfc564b9b2d209147dcc8
MD5 8229ef5318d7c5a1f527ba233fb62bf9
BLAKE2b-256 b93f01264f820ee2e3712a827892b1cd6ff80f3300c1fcbffbb45714a915d47a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54cfcdee2770dac994417cbb0ee1f3eb0e7cb6b30c79bf44f2c02ff79ec5124a
MD5 b512bb02f6b1b01d8b85b2d18790ce82
BLAKE2b-256 0edaf1b384465e51449d844056b75070461da03a9a23e6c1747003695bf4172a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e568e14940c09955aa51f4e645b6daa18a581c5dcfcd73744dcc86a856e3ced3
MD5 d3394556bf07be918811d31b24941f71
BLAKE2b-256 f85cb3e4ff8ad43a8afef9602c5e90285936da1beaea8b029016b793891f03c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 eac645b09bcfdf73df7536331f0678c1086ea250981118ddb5199e17ccef72bb
MD5 21409fd6fc4286286c48d3943f11f5c9
BLAKE2b-256 540045e98b6645cd7f00a4b78b749ebd309094b0eaeb2d2e96157eadbc0d0050

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bdd0e2834dce1a26c1bbe26464861e16bbe217042cbff619247c11594472518c
MD5 4edadc098846b1a3b16eb365c47d3094
BLAKE2b-256 d815fe5b8f6a71ae112bc677163d0b0701bda5dc15005249582258ede0eb88c7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a3e22975f905b89a55a488c2a08f2fdb2186175349e917d48985cc468a3d4c6e
MD5 a8eb7fc02dec77059a140ab5853c36cc
BLAKE2b-256 ecb090bd5cd9fdd9787cb4211d284d1fb8401339a933cb0227a15b71e789232f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5373dc80ad1aa2fb9ad95c83f24eef418bbda3a61375f128e5b0192e4f3f9b32
MD5 31ba937e79d86e1640a3d5a82db1c497
BLAKE2b-256 6e7dd51a706a8cbfa57f0611127daf61ab3ae02ab8420b0407412079227d1c65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a3a8296e7ab5c295f53f1041487cb088e1480775aafbf7fe545d93b770a0f96f
MD5 7488b8288805fed79fa37b036d5e0ce2
BLAKE2b-256 dbc200e23a1bf2abb70dd353f6987db7e7f2491d0261f7363997738c71c98f95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f4e05329faa0ea1a404b37de4f034fd2c2defcca06a68dc6745e4e56c88e8a48
MD5 831797dc1989745ec5ec73ba1744e67c
BLAKE2b-256 2f9028c390d4c9851effe52ac25b5a2e1d92246acd00728b4fc7975dafb67484

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6debfa7312ff9d4c124dc71d72e9a0a4b9e0879e48ba6fcb42bef5c3300289e2
MD5 883520fbe72d314ed2817b4f8cea9eea
BLAKE2b-256 299faf66adce26a14af135c003cbd0f44ccaa68cebd30ff8ac99ca47fb4958f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cda5fd5c95ad7a125a2e8464acc78b98b94c475a3780d6aa0aa157c93f470f4d
MD5 51e4448339a234c43916886f8e4e9152
BLAKE2b-256 6896021d386ae32d9b26d4b88df2e794546232ff56bb6be952bf6be227c0bbc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fdea2281997af69da84c77ffa6f5938a0285f21fb3887c249d67419ca865b3d
MD5 fc2f467a5fb9a69a4af1acd46f0cca22
BLAKE2b-256 7d819d5d853ef892dc066d1eb6db0e87a47348b920c1c879aa554612fdbd9d79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 f53bcd52f585e1ac3e590d61434eb61f9a88c38df041b4ea126d97144344a77b
MD5 9820084b8d116e0824c7d72232efab78
BLAKE2b-256 9f3a296a4135c6366376263aeef54b15caca1f07676c2ae0c525d7832f2f808a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48d67b87db6279c044760787eb01f6413032c2e6f3ba1cafaa492b1c8e578479
MD5 13e7a6f0c8d63afd6a412797383e635c
BLAKE2b-256 bdffcb36724e8c8d17f90ada567a9ff3efe1d6e9b549fba697a242aece180f21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1c5281acc88b92396f88c7e1e2748f8466689df22b80170e4f51efa712fb47a8
MD5 c426acc312006ab137f91f2ee883c9d9
BLAKE2b-256 9ec5228dec7bfec1c373cc2217cdeb47d6456dcd7a13a4c55144930a75ae3851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1b59533861b70a2185c8f4f350f791f39d64358ef6944ce71c5240c9ec0982c9
MD5 272f53c82285ae14e8db525fabffa510
BLAKE2b-256 3865672df92e3172cd876aacfa97a952ac560877eb169384b2991ac5b273de4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 70c987b27534f9ae1a723f47ae921571d616da21d3208282bf4c52af5164ac43
MD5 00356ac8f2fb187e12382261090da7fa
BLAKE2b-256 d72c26e60b694844dfd2176c57f913a22d0cd6a16f9ff202cbda7580d0328b98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 134ac5ddcf61c6fad984b9a5727d83492ada43d63471db20fb73042c13fca62f
MD5 2f968823c5577861bd38948622aad5da
BLAKE2b-256 7903e98c3c9e05a5bdf97defe5ff9169baba4f0ec9a901f2d60e0f060c2f051e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd51ebf9d3a00c074df4ede271023f4d2dba289bcc740b88191872716014e3c5
MD5 7403f24ea811fdd52e53e9c47af5b18d
BLAKE2b-256 7f9e73b582c4dbbc3c12ef4473822475effaabf1f934b56f14f5b03fe5d3a2af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3c200cf9757edd785051dc699c7ecbec22110dbfcb3fefc7a9f9695eda8ea7a
MD5 80858a37a8a76d830d5cf64551eba71b
BLAKE2b-256 74e843b85dc55b8e950dc644babe762add781319ea881b57b33d2cce12017d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eb0495d778817619273c108784292be161a924b9f5ae5cbbc70a2caa6838250b
MD5 81f2719ad9deba62c4d7d0ae1ba2b242
BLAKE2b-256 2d4d4a99fb425c5e0cad715eea7bd190aff46f38b959a0a2dadb993705d34b26

See more details on using hashes here.

Provenance

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