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.2.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.2-cp314-cp314t-win_arm64.whl (469.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.14.2-cp314-cp314t-win32.whl (474.1 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiohttp-3.14.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

aiohttp-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl (532.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.14.2-cp314-cp314t-macosx_10_15_x86_64.whl (526.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiohttp-3.14.2-cp314-cp314t-macosx_10_15_universal2.whl (791.3 kB view details)

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

aiohttp-3.14.2-cp314-cp314-win_arm64.whl (453.6 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.14.2-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.2-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.2-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.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

aiohttp-3.14.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl (510.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiohttp-3.14.2-cp314-cp314-macosx_10_15_universal2.whl (756.4 kB view details)

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

aiohttp-3.14.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl (502.7 kB view details)

Uploaded CPython 3.14iOS 13.0+ x86-64 Simulator

aiohttp-3.14.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl (494.1 kB view details)

Uploaded CPython 3.14iOS 13.0+ ARM64 Simulator

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

Uploaded CPython 3.14iOS 13.0+ ARM64 Device

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

Uploaded Android API level 24+ x86-64CPython 3.14

aiohttp-3.14.2-cp314-cp314-android_24_arm64_v8a.whl (508.9 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

aiohttp-3.14.2-cp313-cp313-win_arm64.whl (447.6 kB view details)

Uploaded CPython 3.13Windows ARM64

aiohttp-3.14.2-cp313-cp313-win_amd64.whl (476.1 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.14.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

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

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

aiohttp-3.14.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

aiohttp-3.14.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.14.2-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.2-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.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl (492.3 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Simulator

aiohttp-3.14.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl (486.2 kB view details)

Uploaded CPython 3.13iOS 13.0+ ARM64 Device

aiohttp-3.14.2-cp313-cp313-android_21_x86_64.whl (515.1 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

aiohttp-3.14.2-cp313-cp313-android_21_arm64_v8a.whl (506.2 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

aiohttp-3.14.2-cp312-cp312-win_arm64.whl (447.9 kB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

aiohttp-3.14.2-cp312-cp312-win32.whl (451.4 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.14.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

aiohttp-3.14.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

aiohttp-3.14.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

aiohttp-3.14.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

aiohttp-3.14.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl (509.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.14.2-cp312-cp312-macosx_10_13_universal2.whl (754.6 kB view details)

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

aiohttp-3.14.2-cp311-cp311-win_arm64.whl (452.9 kB view details)

Uploaded CPython 3.11Windows ARM64

aiohttp-3.14.2-cp311-cp311-win_amd64.whl (481.0 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.14.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

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

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

aiohttp-3.14.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

aiohttp-3.14.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.7 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.14.2-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.2-cp310-cp310-win_arm64.whl (453.4 kB view details)

Uploaded CPython 3.10Windows ARM64

aiohttp-3.14.2-cp310-cp310-win_amd64.whl (480.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.14.2-cp310-cp310-win32.whl (456.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.14.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

aiohttp-3.14.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

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

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

aiohttp-3.14.2-cp310-cp310-macosx_11_0_arm64.whl (515.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl (517.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.14.2-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.2.tar.gz.

File metadata

  • Download URL: aiohttp-3.14.2.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.2.tar.gz
Algorithm Hash digest
SHA256 f96821eb2ae2f12b0dfa799eafbf221f5621a9220b457b4744a269a63a5f3a6c
MD5 be6f66a86c782c20f1501c904d0c5d1d
BLAKE2b-256 1dcc58f26f118d8099f84e009ce560b9148a3f803e63fa8473b57feb67241875

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2.tar.gz:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 469.2 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 63b840c03979732ec92e570f0bd6beb6311e2b5d19cacbfcd8cc7f6dd2693900
MD5 ca662c4cbe512a3c0396edfcc374bf31
BLAKE2b-256 42d8d4c74bb7990da2ee6116fe262ace41cf376ebc6b0bda694c77eeaab5a509

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 312d414c294a1e26aa12888e8fd37cd2e1131e9c48ddcf2a4c6b590290d52a49
MD5 c8e581841890ab63e13fbf1276f2e324
BLAKE2b-256 724c877c07a6d97a1a0e5e25a06bab76dd7449b533ff8bb6c281c5af8b09c8d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 474.1 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 205181d896f73436ac60cf6644e545544c759ab1c3ec8c34cc1e044689611361
MD5 e68ef3c2b6f51afbb0246504d5586056
BLAKE2b-256 3c74ce6f229510fdd46ee7365fbb759ffaa3004e0bcc59fbd0ec51d8a8efc775

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68a6f7cd8d2c70869a2a5fe97a16e86a4e13a6ed6f0d9e6029aef7573e344cd6
MD5 d4974ae1902bafc621d9f20ad56bb969
BLAKE2b-256 ed29ed64c0a013322570a02e5b0e359df2cfd30ae58ba045748dc78175f15826

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6e30743bd3ab6ad98e9abbad6ccb39c52bcf6f11f9e3d4b6df97afffe8df53f3
MD5 ecb2bb38a1a18a506e13d00c55aab404
BLAKE2b-256 c4afd9b8353aee9506dace04ca22c3c4e93b7375d9343c4780c8b512972fc6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4610638d3135afaefadf179bffd1bbf3434d3dc7a5d0a4c4219b99fa976e944d
MD5 1a017a2f3c08f832ec1f296a0c3904e6
BLAKE2b-256 f8d67c3cfa191e666bf7b48b4346815900b35b85b43ffff783fd0be52e45fe09

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1aa4f3b44563a88da4407cef8a13438e9e386967720a826a10a633493f69208f
MD5 8742a10f1131cde2c3400f2ef6b2aa4f
BLAKE2b-256 379d260c7b8a25c7cd74bee63ce957556a2d25839a321e9107a089d4da3a51af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d813f54560b9e5bce170fff7b0adde54d88253928e4add447c36792f27f92125
MD5 26ab2c7293a66c5b8786c817b5539d40
BLAKE2b-256 aaa43f9e22fda714cc38ef558166ff3326cd2f6f65c33da92ba00e3641cbea54

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef710fbb770aefa4def5484eeddb606e70ab3492aa37390def61b35652f6820a
MD5 5bab8b4424cf07714b583c53ef5665b2
BLAKE2b-256 2a3ec1ce4aa13fd1f910e437684843ea6cf6e0041f91d89a1b0389dce247ee59

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0fb26fcc5ebf765095fe0c6ab7501574d3108c57fca9a0d462be15a65c9deb8d
MD5 7d6ec11012587d448980123ce1f957b0
BLAKE2b-256 6a4d592451fd40edca73fcb099d8718668cea36dc1dde873dd0f8e91a4081051

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec64d1c4605d689ed537ba1e572138e2d4ff603a0cb2bbbfe61d4552c73d19e1
MD5 c844def9530c888327a08213ad23ef27
BLAKE2b-256 c8eedb26af0acc994350b653b3a73dddf9ee9886bf2fdb68b23fc98705e76442

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 8241ee6c7fff3ebb1e6b237bccc1d90b46d07c06cf978e9f2ecad43e29dac67a
MD5 078e832d573bb265c9e445f139da2224
BLAKE2b-256 21ffbd2b7473510caf352aef3f52a3d4fe10184ec22747df74ab658b4402020f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0bfea68a48c8071d49aabdf5cd9a6939dcb246db65730e8dc76295fe02f7c73c
MD5 7a8c8f15163ab5137298a326f63daed1
BLAKE2b-256 c27c39174069b7df18ea22b23a0fa9abffe4c091f0f86d53af83ddcbb5f44c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b155df7f572c73c6c4108b67be302c8639b96ae56fb02787eeae8cad0a1baf26
MD5 220fdaa2f407acb2ac9555caacde9bb7
BLAKE2b-256 2fb9d7ccbcde223a72c7b8f3458bdb08c2bacf5fc268a1fdd5cc29861eb0e4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b937d7864ca68f1e8a1c3a4eb2bac1de86a992f86d36492da10a135a482fab6
MD5 472670069593afb956608821746996d8
BLAKE2b-256 e312da9816eee0d81506560259e7c0af93a4aa7df98acd0fe276958abd42d7c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f518d75c03cd3f7f125eca1baadb56f8b94db94602278d2d0d19af6e177650a7
MD5 a0cc4d04b85987ad006afaa99302c5d7
BLAKE2b-256 c3ed1d7ae73764d135638797a427cb637ae3d98f1fd61208c25891a9f26cdd67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314t-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 165b0dcc65960ffc9c99aa4ba1c3c76dbc7a34845c3c23a0bd3fbf33b3d12569
MD5 c4a9ed2f537c44b4480b3b0aca7553f7
BLAKE2b-256 e7374f95edc1488580c63c0b5baaef429afbacadc7ccd9c47431cdcce90d9e5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 9094262ae4f2902c7291c14ba915960db5567276690ef9195cdefe8b7cbb3acb
MD5 6226f8018ebecff66d05ec76b8bafc77
BLAKE2b-256 30544bbcc00f04dbc380103ee669a56df30dea127c3686c8dc2ab86b05a1387b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.6 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8d1f3802887f0e0dc07387a081dca3ad0b5758e32bdf5fb619b12ac22b8e9b56
MD5 41f8859e4b6a6d082084b70e19bff43e
BLAKE2b-256 2eb0ae17dd629e22160f453b9041a4aee80a8a917ba2f44d5b3e252cc501ed2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3a6302f47518dbf2ffd3cd518f02a1fbf53f85ffeed41a224fa4a6f6a62673b
MD5 b5cbac32606de43cb3ade7b8a9758f8b
BLAKE2b-256 f703cc8234d0f06fe4b0e1777c7ed313cc9014f078f72a9a0cbdc144965d1bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 43387429e4f2ec4047aaf9f935db003d4aa1268ea9021164877fd6b012b6396a
MD5 10e95fbf6f32501b4c2013ddcc92e92f
BLAKE2b-256 bc0b861fdbe3ff90b503a4d0a12276623f4afbe54c237ca876fc560125c270a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03330676d8caa28bb33fa7104b0d542d9aac93350abcd91bf68e64abd531c320
MD5 72ddb3629d0753bf314d19ccc14c00e7
BLAKE2b-256 0173770be856c6fc861563999081a5fe2d44e16b4255f5fd94b2217a2349ca65

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3d4238e50a378f5ac69a1e0162715c676bd082dede2e5c4f67ca7fd0014cb09d
MD5 b146f9d3be03138d786f26e95e7c6c50
BLAKE2b-256 d4e21d79f1ab35593d70dabed98936ae842ac90d12847c9a62bba4a19d6005a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 da4f142fa078fedbdb3f88d0542ad9315656224e167502ae274cbba818b90c90
MD5 c5584b8494249f982fedee83b4cc3402
BLAKE2b-256 3958b3f1cf6af47fa0b0d51c6e2b98b2bf0326b44a932d74915f3c0874413ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2f7ca81d936d820ae479971a6b6214b1b867420b5b58e54a1e7157716a943754
MD5 4c9969c6735a6c19674bb75f5752500a
BLAKE2b-256 c8b16b55f6448b43a3338749f37fc6a14e7ac7dad121d2d585f22c1dd3d324fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fef094bfc2f4e991a998af066fc6e3956a409ef799f5cbad2365175357181f2e
MD5 1b52485ca08738afa6f1cace49c1170e
BLAKE2b-256 e3cfa3be8601d2e80ccf7bd4f79807629cede5425d72c02636f06b1ad6a8290a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 983a68048a48f35ed08aadfcc1ba55de9a121aa91be48a764965c9ec532b94b5
MD5 a30f24fad74887e036e9c58574ae1c82
BLAKE2b-256 46ad551c302f534f9cd6105bd16902e69dc64c726aa729127203f47ed4bddb2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 abb33120daba5e5643a757790ece44d638a5a11eb0598312e6e7ec2f1bd1a5a3
MD5 2e9169776c25426dd2347c2ea4214dc1
BLAKE2b-256 464f0792fe1a24c2b4b506d07350e980b0626c149fe73e68dd37dfb30ed89813

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf7930e83a12801b2e253d41cc8bf5553f61c0cfabef182a72ae13472cc81803
MD5 be47520bacd2c019953a39a25b0edd98
BLAKE2b-256 0ecbd213f4fd7af279d82c4b46d30de22db93a01296d77a8d8e535289637da54

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1b9251f43d78ff675c0ddfcd53ba61abecc1f74eedc6287bb6657f6c6a033fe7
MD5 cbbdb11d89f0d6265e01416176ef3ed0
BLAKE2b-256 6321ad9fe6786a1d2758bcfdae4dbc1d6869ffc7b1e0571530a508de3cdde09b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 30a5ed81f752f182961237414a3cd0af209c0f74f06d66f66f9fcb8964f4978d
MD5 4e46c108d802835329d842725eb95486
BLAKE2b-256 772d41bb20bed3df1d6dc7fc231ca4ffb72177fd151bf4205a4ade7a93e03501

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 41b5b66b1ac2c48b61e420691eb9741d17d9068f2bc23b5ee3e750faa564bc8f
MD5 32b169c2afde2fe4f5fe22beb24e9d7d
BLAKE2b-256 11d8356c62552b4db60af5ad8cddeafa6f837788918201f1b5f2466565c986b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6b0ce033d49dd3c6a2566b387e322a9f9029110d67902f0d64571c0fd4b73d8
MD5 00efe302bb891f7a959df7c614775d56
BLAKE2b-256 270486945210e491493f5cd025efe5e6d8fc8a9e8aaf36f943c40f52c34eda7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e254b0d636957174a03ca210289e867a62bb9502081e1b44a8c2bb1f6266ecd
MD5 ab6c2dd7252393b854e27639ad278690
BLAKE2b-256 272a3caebd640229663263585d4d31898331a3937752f2e1f5ec0af509fa31be

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp314-cp314-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5fe25c4c44ea5b56fd4512e2065e09384987fc8cc98e41bc8749efe12f653abb
MD5 a07a874a4f6fb56e2ec4d26361e049c0
BLAKE2b-256 b99ac67c7e22fff7d7b17387e718451b30eb89f55df6b8d13d2d7f91daba6505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 b0d49be9d9a210b2c993bf32b1eda03f949f7bcda68fc4f718ae8085ae3fb4b8
MD5 0ef0eadcb97a481e151b10b9f5edf556
BLAKE2b-256 a9717b7720ffe7e521aaa79a853ebff4c17937f4b5a3a586e9d13b0f38050b35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 052478c7d01035d805302db50c2ef626b1c1ba0fe2f6d4a22ae6eaeb43bf2316
MD5 5cfa899717bb47b2d0d3c9285c41b5c3
BLAKE2b-256 d8e1076b88de36b4ebea62d1c0b225e32bc8a452ee71b2aded82878fa5fa7c9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 71501bc03ede681401269c569e6f9306c761c1c7d4296675e8e78dd07147070f
MD5 9b297c43aaba662ac58ee0df3ae07341
BLAKE2b-256 6034c7708eac8edacca9c049a0d6f5fa610005ac3c5634c9ea4751134263bf4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 c8ab295ee58332ef8fbd62727df90540836dfcf7a61f545d0f2771223b80bf25
MD5 b7d371c7f9f57ddbabb17dfea8dfdee8
BLAKE2b-256 ebb7539961cf3e3d3f179ea4b20d456cbdb67d1163c68f2e95bf220438a5afd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 3523ec0cc524a413699f25ec8340f3da368484bc9d5f2a1bf87f233ac20599bf
MD5 f03205d8a041d831e0620676b38fc0a2
BLAKE2b-256 f580786166589e71b3f3cfce56b414170fe5008462d0bff100bd8837285632f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 7719cef2a9dc5e10cd5f476ec1744b25c5ac4da733a9a687d91c42de7d4afe30
MD5 19a4f616208d2c432944c2d883b37fcb
BLAKE2b-256 4fca716f720dccc3032e40dc80d0ab2d87a7365270a714976a85bdff73bc7254

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 447.6 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 70570f50bda5037b416db8fcba595cf808ecf0fdce12d64e850b5ae1db7f64d4
MD5 99dfc155e7a7b84cce46e0c1b458feee
BLAKE2b-256 7248b095935c9e72a253439f80ec757b91d4733e0a9a98b63e108d84aaf39b08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 476.1 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fc2d8e7373ceba7e1c7e9dc00adac854c2701a6d443fd21d4af2e49342d727bd
MD5 32e1e6689373e831dd5c294efc20852d
BLAKE2b-256 0b76b44703eafcfe1446f4f975be1ef2406042955425eaf56450e71b50506c49

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 15292b08ce7dd45e268fce542228894b4735102e8ee77163bd665b35fc2b5598
MD5 9e2331ed26f41160177f4890a603b16b
BLAKE2b-256 39f009e29e457b6fb49253cbb61354ed2541fdf23ac192bddbb57bb34bc93d9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ceff4f84c1d928654faa6bcb0437ed095b279baae2a35fcfe5a3cbe0d8b9725d
MD5 3a2f4649ff34b48f5c890aa5d853b063
BLAKE2b-256 0641323856cb0ec9076b1f9a135eb0684f5f984dd97989a087873768aa34ca2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8c2cdb684c153f377157e856257ee8535c75d8478343e4bb1e83ca73bdfa3d31
MD5 11982a05f3afe968a232df18a9ae6476
BLAKE2b-256 8d6f33746ba4947b8193652fc7ed0533e09f93b118e39777228f3029e5677c17

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 af63ac06bad85191e6a0c4a733cb3c55adb99f8105bc7ce9913391561159a49a
MD5 7a5c1bdb4e88c37cd80700322b06f21d
BLAKE2b-256 fedba4e4c207f7023e83c281a7cf3579f227bade48f1899cb6588c0ed6ae54de

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f8f371794319a8185e61e15ba5e1be8407b986ebce1ade11856c02d24e090577
MD5 e663ecac32c35bf3ed47a90642d76ad8
BLAKE2b-256 ab9322c94a599b2c4ea6ab88f1b912d90883f1fba5235b587ea9f13b148e9a0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7871c94f3400358530ac4906dd7a526c5a24099cd5c48f53ffc4b1cb5037d7d7
MD5 5ee34157dceba80a6d9a69d8bd6d480f
BLAKE2b-256 ded4a2b9442336051714dd8dbd419b9f4a1003c45bb850ee0f3af87f2743e867

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42372e1f1a8dca0dcd5daf922849004ec1120042d0e24f14c926f97d2275ca79
MD5 2011b4085ee28c1a88bf3a691ada2a78
BLAKE2b-256 69e8a2f5f9f6219cd21190e9b50e2cbc978d12a2aab748d0aa7c6ee930db15c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 de3b04a3f7b40ad7f1bcd3540dd447cf9bd93d57a49969bca522cbcf01290f08
MD5 be145dbd160aedd7ff4f3f4b74f2523b
BLAKE2b-256 6f91b57d3d13a80fbf765b19ae0c38d783a3a23f35b1cb82ae3b22f91abe6c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46b8887aa303075c1e5b24123f314a1a7bbfa03d0213dff8bb70503b2148c853
MD5 772c724e63672378d94cab96bf43dda5
BLAKE2b-256 0c312e9ca3b21c07ea8a001e2b142cb01401fd34fd07b248a0b95a04c3ebc4ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6bea8451e26cd67645d9b2ee18232e438ddfc36cea35feecb4537f2359fc7030
MD5 29310922473fc24c370264bfc7d22062
BLAKE2b-256 3a8bedbac4d1a1cde3571588a1e5b40637df5acee43158efdf3ae9a161fde8ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 114299c08cce8ad4ebb21fafe766378864109e88ad8cf63cf6acb384ff844a57
MD5 82ed249702781220f40d4c916ba1c753
BLAKE2b-256 de03c1d89fcd94907f93a08d4aadbb4e1d9bd3d7d6c9f94bc9c17689de38107b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cabaaecb4c6888bd9abafac151051377534dad4c3859a386b6325f39d3732f99
MD5 d354d97bec99b4c41221f88e4e004725
BLAKE2b-256 1ded0befea4ae533f09c3a60f0d10b923cd4a90027a1bf49dfafaa24eeee08b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09d1b0deec698d1198eb0b8f910dd9432d856985abbfea3f06be8b296a6619b4
MD5 b00b22f1685f7f279481d9d5e0ac9635
BLAKE2b-256 87f76d081c2ee838458492c7ae1062399bdd68f149811d257d4502e79a25b306

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18fcc3a5cc7dde1d8f7903e309055294c28894c9434588645817e374f3b83d03
MD5 62649f23b204aac577dff8b293ff8625
BLAKE2b-256 edf139177406ce0ae5cb2782b35e848c0edf6e09d6e082df636eeacdbdfa70bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8f7b19e27b78a3a927b1932af93af7645806153e8f541cee8fe856426142503f
MD5 d2a78aa34c0556612fbb2f05e072d26b
BLAKE2b-256 2e491220bdc73d568431cc3856667405d78c2e95eb57fed2b9ffa5e825932ab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 f7c10c4d0b33888a68c192d883d1390d4596c116a59bf689e6d352c6739b7940
MD5 e722806eafbf3e06af9cc69f169b4aec
BLAKE2b-256 402052d21e485652f4708015ce27dd3029e63140e0bdb0dcc7bf72dc0bc3f4ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp313-cp313-macosx_10_13_universal2.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 6b63709e259e3b3d7922b235606564e91ed4c224e777cc0ca4cae04f5f559206
MD5 280b0716aa2899b9c51675a05b9cf5c4
BLAKE2b-256 b26fd3ccc31c15cd33888670b8f1bf1dc06f3239b4edd156fc818078e87ae628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 0e56babe35076f69ec9327833b71439eeccd10f51fe56c1a533da8f24923f014
MD5 226fb9a4455abef87e0f60684a0e0683
BLAKE2b-256 c25360de022260f5d2d31976bc5f50db708e10671f0ac5da515402adcc6b4d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 4181d72e0e6d1735c1fae56381193c6ae211d584d06413980c00775b9b2a176a
MD5 a0853c5df3f22c461a261131b16e9e3c
BLAKE2b-256 f0228f4424de1f50df4fbb74ea32006f9cff798ae0d346ffa6be7b6f0caca719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 ce8dfb58f012f76258f29951d38935ac928b32ae24a480f30761f2ed5036fa78
MD5 e9fe3ffded90f67e0b4a8656dd40f2a4
BLAKE2b-256 d1732f45204b37ecc4ce2c54b8b67254d70a8ea3b629c4083d58f3e2d27991cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 17eecd6ee9bfc8e31b6003137d74f349f0ac3797111a2df87e23acb4a7a912ea
MD5 efaa4662d678639fe9ac3127cb04c83a
BLAKE2b-256 963a8b8779f8e813d3a33cf16bc836a7ea7bf3c27b6588d42efa36b0c32fcb58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 447.9 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0eb1c9fd51f231ac8dc9d5824d5c2efc45337d429db0123fa9d4c20f570fdfc3
MD5 d006cdbfa6de18573111a7fd49eb0b35
BLAKE2b-256 d0d0e550bb1cb4fc82de3bdbe2add061cc0cedb34f2e7f01ada78fba94493ca1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e5efff8bfd27c44ce1bfdf92ce838362d9316ed8b2ed2f89f581dbe0bbe05acf
MD5 067db0a78f50dc35ab0f905714d726bb
BLAKE2b-256 38208478c05702a369b6d0800e40e0c5f9a289ff482d0921faec1eb17727339d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 451.4 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4ca802547f1128008addfc21b24959f5cbf30a8952d365e7daa078a0d884b242
MD5 580f14681185cd02f5b5ab63b8de0b9c
BLAKE2b-256 57af14b98e07fcd1a2b37ebb2f950309821eaa56e0eac3d32fc23dc55227e49b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc4435b16dc246c5dfa7f2f8ee71b10a30765018a090ee36e99f356b1e9b75cc
MD5 1b53cf00d69ccf0505da0696ba7e24da
BLAKE2b-256 e6f386dfd6152bb706351cf5c6b45f0f6a1818a4e559d1e88d899c4c673c23a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f2f9950b2dd0fc896ab520ea2366b7df6484d3d164a65d5e9f28f7b0e5742d8a
MD5 375e599b61942fbd2c96ead19cade2bc
BLAKE2b-256 c6fa1536f272d5ad93bf8b75043b02b94c24bf4e6b55a849d3287553ad6da97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 66de80888db2176655f8df0b705b817f5ae3834e6566cc2caa89360871d90195
MD5 fe76362592e604cb2b64222ae6d8e317
BLAKE2b-256 81e5805d9d49e66c6358574ad70dd731031585d18fe95ae65b857bc378bccc9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c0c7f2e5fe10910d5ab76438f269cc41bb7e499fd48ded978e926360ab1790c8
MD5 597c25de196c7daf6433c155b366fcca
BLAKE2b-256 705db8821b362306627ea8ca11fe49ec47cba18e7c75d975fa5f6710ad93845c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e328d02fb46b9a8dbfa070d98967e8b7eaa1d9ee10ae03fb664bdf30d58ccf0
MD5 6e93f97b992c0358220131d021492950
BLAKE2b-256 f6501a06abbeec14a2bcb46124ca6e281ed4ccb3e9006542ded6bc89a0ce5224

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ec4b6501a076b2f73844256da17d6b7acb15bb74ee0e908a67feb9412371166
MD5 65b3b7388d3545cf5b9b6c9611bc472f
BLAKE2b-256 adf596d7540a52620433db3822267008a1697fc816979c109a4f535855ac893c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7ae767b7dffd316cc2d0abf3e1f90132b4c1a2819a32d8bcb1ba749800ea6273
MD5 a662afabc3206544300d8f095467996a
BLAKE2b-256 bac425b199009f164ee02599b9b0962d22e6533d212418e49df9f4fdb37fe2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d15f618255fcbe5f54689403aa4c2a90b6f2e6ebc96b295b1cb0e868c1c12384
MD5 fcae48c57a0e9dccb716e5ca81f1e3ba
BLAKE2b-256 6c6efb84b8dafc521026355aadbeed484fc1ec44a05aae927de309f204c1f0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b39dbdbe30a44958d63f3f8baa2af68f24ec8a631dcd18a33dd76dfa2a0eb917
MD5 073f3a106ceec0881761e7ac5e9e6487
BLAKE2b-256 39f5239f2a828b033ac244237074db7b560ad3279bb1e934bb462dbde19f3877

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 673217cbc9370ebf8cd048b0889d7cbe922b7bb48f4e4c02d31cfefa140bd946
MD5 8b778a401fd5418b0ea3595c5f99c5eb
BLAKE2b-256 a07bf8966d2d08f0582525ef02d5af007d2d2467cb733abf1d1f7849a02a6b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 a26f14006883fc7662e21041b4311eac1acbc977a5c43aacb27ff17f8a4c28b2
MD5 ca95c4ec5668e9e7730a3a0de95f4bb9
BLAKE2b-256 f42223ec6d3d3f24f5961c7be73d5127481c992d6c92ca213f336ed8f0ff1453

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40bedff39ea83185f3f98a41155dd9da28b365c432e5bd90e7be140bcef0b7f3
MD5 e395d74a4a40408f9726e68e09928e13
BLAKE2b-256 c1e8aa5ebff13ac5e39ffae8add143757e936d1c2ceb726b82786e5f5cb9912c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 476cf7fac10619ad6d08e1df0225d07b5a8d57c04963a171ad845d5a349d47ef
MD5 8c3b35712ae5756df62b71485d7175a7
BLAKE2b-256 6da8473db85d08b862724c506b51af2b9c6327e9e95cbd297c4c6f33968be1a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dbc45e2773c66d14fbd337754e9bf23932beef539bd539716a721f5b5f372034
MD5 c48d0b5c4d9196a7683e25d498434c6e
BLAKE2b-256 7ce5fd624b8b46d99dfd8f7f75111569b5ee21850539e914eed04ce39e4455ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 30e41662123806e4590a0440585122ac33c89a2465a8be81cc1b50656ca0e432
MD5 72a55e9e6bb479f6ac4909fe565fddb4
BLAKE2b-256 e0998737b10b6fa447371541a3b2cdbf9703c31ecf3afff4998f2f0633646a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp312-cp312-macosx_10_13_universal2.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 452.9 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c167127a3b6089ef78ac2e33582c38040d51688ee28474b5053acf55f192187b
MD5 ab59ac69ff675a6496abb3c8cd45fa17
BLAKE2b-256 5e1900963031da42bd23716032f57b2a8414c5355eb1abc41805b2b41173040c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 481.0 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf7951959a8e89f2d4a1e719e60d3ea4e8fc26f011ee3aed09598ad786b112f7
MD5 b22c7029c39fa40cffaa871251fcc610
BLAKE2b-256 967633665ae48e24e01c6dfa15ed14d9d9eec1349577cef497f3b26210621f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b5ed2c7dacebf4950d6b4a1b22548e4d709bb15e0287e064a7cdb32ada65893a
MD5 7a30c4dd568663f5d3c50143d3b49201
BLAKE2b-256 a5d6580f9b2ab4c78d9fbf9d56c85fb7f7d4d22d667b27df8032ab9bf7140e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc0ed30b942c3bd755583d74bb00b90248c067d20b1f8301e4489a53a33aa65f
MD5 7f57b3fab4a8fbc53fdb0157bebd6275
BLAKE2b-256 9b7f700500700513b1b63967a24c4e189aad377e18f9d67b7387b3418d6213cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 386ce4e709b4cc40f9ef9a132ad8e672d2d164a65451305672df656e7794c68e
MD5 f8d25579cc20be5228e9701b83020e2b
BLAKE2b-256 668fadc9e8592449ee08f72fcce94b7f3f1a9bbf0591a46026e4d322e5a70d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d32a70b8bf8836fd80d4169d9e34eb032cd2a7cbccb0b9cf00eac1f40732467c
MD5 b17975a1bbbee7626f10cf072c6cfa2a
BLAKE2b-256 16e51de93ba3bc18edb87f71594326bedafdc38fe725da8118b7d36fd56610f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9d3f4c68b2c2cd282b65e558cebf4b27c8b440ab511f2b938a643d3598df2ddb
MD5 39bc1f47c6cad0789ded7c27fb3708a0
BLAKE2b-256 81b02012165377d029ceb925c9e5f42b0b30a39d89cf7e494c4100f3ab8d27c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d2eedae227cd5cbd0bccc5e759f71e1af2cd77b7f74ce413bb9a2b87f94a272
MD5 5da2184bc546565c863d7735ff8f48cb
BLAKE2b-256 86614318a947139a21d4e1a40e7f5a92799d0fe28feffaca6640a4a165e62b0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0a968b04fecf7c94e502015860ad1e2e112c6b761e97b6fdf65fbb374e22b73
MD5 b61c986bac2a2f067b9014835706eb97
BLAKE2b-256 e1b256ce1b0c535d188ef94c05bccbf3f5b1aaea1231fcb073318977bdd917e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2f1b9540d2d0f2f95590528a1effd0ba5370f6ec189ac925e70b5eecae02dc77
MD5 86a2aefe1b39b8fd5525e1100d80b718
BLAKE2b-256 da80c710ce9c7f22fcbb83366aa64a5ccf03dced35ab09a6e37545656a6df01e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc1a0793dce8fa9bb6906411e57fb18a2f1c31357b04172541b92b30337362a7
MD5 5f3531d6d2576d9ca09f82fa5bad76da
BLAKE2b-256 5afdc980f64f5e5bff22f07968bcc6af1b64167dfd21dbbffda86f2d153fc802

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 87c9b03be0c18c3b3587be979149830381e37ac4a6ca8557dbe72e44fcad66c3
MD5 bb8390951261b97c7adc6e8c3df302c6
BLAKE2b-256 c28998a2688810f469f19f2d02a298426a37b6e1cc420230a8cc7d6c85af7a01

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d93854e215dcc7c88e4f530827193c1a594e2662931d8dbe7cca3abf52a7082d
MD5 53f0f1c90680991da9db617b0cc23ec0
BLAKE2b-256 8bbaabe8d5015148b2cd7189473789461058dcf88ae202d4cf1cbecaf291a7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1fc31339824ec922cb7424d624b5b6c11d8942d077b2585e5bd602ca1a1e27ed
MD5 49eb86e7c5cb41b294a1cf8240a9bdc0
BLAKE2b-256 99f96a1994c1bf138403cf10171cb618571a330ae5683a5803b1ef29b5723d7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a57f39d6ec155932853b6b0f130cbbafab3208240fa807f29a2c96ea52b77ae1
MD5 603061b94828efd7f9ef510d42cb6e0f
BLAKE2b-256 4894697aef63f15ef354f64723eaac6ccfb289d59b99699b3b7cb1ff663b2045

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c05afdd28ecacce5a1f63275a2e3dce09efddd3a63d143ee9799fda83989c8d
MD5 58465a659af022ee5e342e7b095a4fe4
BLAKE2b-256 8fbcad9b767785b014f2f57497a2ccf67e3d4316d153f7ed1c7715fbbd7573fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c244f7a65cbec04c830a301aae443c529d4dbca5fddfd4b19e5a179d896adfd
MD5 095e4487566f9ba16f4fc90d7254c5e1
BLAKE2b-256 0c6288ae65afc3590719788cbff3b2e0f56e6850f53ca34114cbb371e677c543

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 56432ee8f7abe47c97717cfbf5c32430463ea8a7138e12a87b7891fa6084c8ff
MD5 b7581801587e1d0ba6cb8271cb03d905
BLAKE2b-256 f64aa6c1426d2fb3cddd901575436803733caaaeb7ac0a49aa72d1930d2e3ab6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp311-cp311-macosx_10_9_universal2.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 453.4 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2a382aa6bb85347515ead043257445baeec0885d42bfedb962093b134c3b4816
MD5 1e0e3f925af252cb9214dc2f05a67640
BLAKE2b-256 1408b6eb0532f5ec2b202980c2d9658dd8ee3a1e21cdd0cb9d01debc0ba40045

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.14.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 480.4 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65cd3bb118f42fceceb9e8a615c735a01453d019c673f35c57b420601cc1a83a
MD5 a2c47580b5a03288e38c6b435442e326
BLAKE2b-256 bf108dcdbbd9d83103db95ff74b255105113c1f6983865446f4facef81f0a1eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 456.6 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5e94a8c4445bfdaa30773c81f2be7f129673e0f528945e542b8bd024b2979134
MD5 5cd6faf1db365f4a837103c4f11a5ef9
BLAKE2b-256 0cc69b8964be6d8d67dcf4bf32ff2380c203380322b1e23b5c1aa122c9b5a740

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-win32.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2280d165ab38355144d9984cdce77ce506cee019a07390bab7fd13682248ce91
MD5 68a0149f48c5117d0980c7d33a0cba7e
BLAKE2b-256 eb5372115db0f3e4490b6c0cb063709d7553a1661ec03532b1b2f891e841af1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6cde463b9dd9ce4343785c5a39127b40fce059ae6fbd320f5a045a38c3d25cd0
MD5 d3963232b654204a5e5bc83c6e5971ac
BLAKE2b-256 a90309d41c3866e2102e6679e49fd78cd928926326fd304fa4e6f1d155f8ba04

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 82d14d66d6147441b6571833405c828980efc17bda98075a248104ffdd330c30
MD5 341275cc25ce6230a263cd2881d7875e
BLAKE2b-256 ea7a33b8a5d348abc7335de33f4332ec0dcedfc7d45db28fd2162802d306345d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 89120e926c68c4e60c78514d76e16fc15689d8df35843b2a6bf6c4cc0d64b11a
MD5 d98c796642957c1d07e19cc7422348f6
BLAKE2b-256 f198a0d751d3787f2ca457beb16de5774a24e53fab840a8c7cb727cf900ed301

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aac1b05fc5e2ef188b6d74cf151e977db75ab281238f30c3163bbd6f797788e3
MD5 33a0b6daab37f73ce8caf4b5e3a8743d
BLAKE2b-256 75a1bdcd55b54d6335bc33e5f1b9f8613501c7f35cd99f44bf462d540d6b30d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86861a430657bc71e0f89b195de5f8fa495c0b9b5864cf2f89bd5ec1dbb6b77a
MD5 eb679548067b80128e0164d231ad1692
BLAKE2b-256 ba0cc42b45bb275983cde529a4bc0e94f23ca6cdfe2a3c97285e73a4a6b81c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a3177e51e26e0158fb3376aebac97e0546c6f175c510f331f585e514a00a302b
MD5 5a08e8427d4661b5a5600a970f7d6d48
BLAKE2b-256 acd8c3a37079d503967a4072f8fc187c9d46c62b1eb72b25ae57dc0f2d0ddb11

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ecdd6b8cab5b7c0ff2988378c11ba7192f076a1864e64dc3ff72f7ba05c71796
MD5 b53bdc260aabfc01c2553cd57d4e056f
BLAKE2b-256 716336a34c0139d0b1a830e8ee130a75312e9eddccb5b234a7f56e9de5e6edd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0baed2a2367a28456b612f4c3fd28bb86b00fadfb6454e706d8f65c21636bfd7
MD5 c9c4d034e8cebd015e7c5c6463c805ad
BLAKE2b-256 df5529cc3691fa0bb1334352bcb61ba5f256396fd6a0603cf321b8c29bb7e1fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ee5bdd7933c653e43ef8d720704a4e228e4927121f2f5f598b7efe6a4c18633a
MD5 c826ae1b4de7725d34168e5e670be39f
BLAKE2b-256 652737559302e4f03e343f549ff1628295c20fb0298d603e40193db2f25f5153

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 135570f5b470c72c4988a58986f1f847ad336721f77fcc18fda8472bd3bbe3db
MD5 2c0358798d78fedb90da5fe6e65b7326
BLAKE2b-256 3d6d8de300d792a3b91a94533a626a835c32cda69189209ae539bebaadba88ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc056948b7a8a40484b4bbc69923fa25cddd80cbc5f236a3a22ad2f836baeed2
MD5 222dc3fe8ec1f61718feef88ed34e5ed
BLAKE2b-256 dcf0fd9c7019bdfba5529c9a697621a757f0cfd92787595a04a9252923b097fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 483b6f964bbbdaa99a0cd7def631208c44e39d243b95cff23ebc812db8a80e03
MD5 0b26c4fb468c554aac51615efebfb069
BLAKE2b-256 242d7fc2d359d6702ce5299cd865ec2c70dad2fd8c1b3901bc79f83e3c61c395

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f3381f81bc1c6cbe160b2a3708d39d05014329118e6b648b95edc841eeeebd4
MD5 0ecbc51029a1094855bf2689818cd8f5
BLAKE2b-256 dc1423aa28408805efe6adc0e97048f5cd6028a2a3036d237038f45d10dc05a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.14.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ceb77c159b2b4c1a179b96a26af36bcaa68eb79c393ec4f569386a69d013cbe9
MD5 1201bb6d0aaee652cf6fda8b6c194ab0
BLAKE2b-256 86376a24e23d559bc2d042287cee15b4a6e61b46f844d2b3c96832483f854a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.2-cp310-cp310-macosx_10_9_universal2.whl:

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

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

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