Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version Downloads count Latest Read The Docs Codspeed.io status for aiohttp

Key Features

  • Supports both client and server side of HTTP protocol.

  • Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

    async with aiohttp.ClientSession() as session:
        async with session.get('http://python.org') as response:

            print("Status:", response.status)
            print("Content-type:", response.headers['content-type'])

            html = await response.text()
            print("Body:", html[:15], "...")

asyncio.run(main())

This prints:

Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...

Coming from requests ? Read why we need so many lines.

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

async def handle(request):
    name = request.match_info.get('name', "Anonymous")
    text = "Hello, " + name
    return web.Response(text=text)

async def wshandle(request):
    ws = web.WebSocketResponse()
    await ws.prepare(request)

    async for msg in ws:
        if msg.type == web.WSMsgType.text:
            await ws.send_str("Hello, {}".format(msg.data))
        elif msg.type == web.WSMsgType.binary:
            await ws.send_bytes(msg.data)
        elif msg.type == web.WSMsgType.close:
            break

    return ws


app = web.Application()
app.add_routes([web.get('/', handle),
                web.get('/echo', wshandle),
                web.get('/{name}', handle)])

if __name__ == '__main__':
    web.run_app(app)

Documentation

https://aiohttp.readthedocs.io/

Demos

https://github.com/aio-libs/aiohttp-demos

Communication channels

aio-libs Discussions: https://github.com/aio-libs/aiohttp/discussions

Matrix: #aio-libs:matrix.org

We support Stack Overflow. Please add aiohttp tag to your question there.

Requirements

Optionally you may install the aiodns library (highly recommended for sake of speed).

License

aiohttp is offered under the Apache 2 license.

Keepsafe

The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.

Source code

The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp

Benchmarks

If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks


Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org LFX Health Score

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiohttp-3.13.1.tar.gz (7.8 MB view details)

Uploaded Source

Built Distributions

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

aiohttp-3.13.1-cp314-cp314t-win_amd64.whl (496.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.13.1-cp314-cp314t-win32.whl (463.3 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

aiohttp-3.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

aiohttp-3.13.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

aiohttp-3.13.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

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

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

aiohttp-3.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.9 MB view details)

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

aiohttp-3.13.1-cp314-cp314t-macosx_11_0_arm64.whl (507.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl (503.2 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl (766.0 kB view details)

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

aiohttp-3.13.1-cp314-cp314-win_amd64.whl (456.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.13.1-cp314-cp314-win32.whl (430.3 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiohttp-3.13.1-cp314-cp314-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

aiohttp-3.13.1-cp314-cp314-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

aiohttp-3.13.1-cp314-cp314-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiohttp-3.13.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.5 MB view details)

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

aiohttp-3.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

aiohttp-3.13.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.8 MB view details)

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

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

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

aiohttp-3.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp314-cp314-macosx_11_0_arm64.whl (489.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl (489.3 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl (733.8 kB view details)

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

aiohttp-3.13.1-cp313-cp313-win_amd64.whl (450.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.13.1-cp313-cp313-win32.whl (424.5 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.13.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

aiohttp-3.13.1-cp313-cp313-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

aiohttp-3.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

aiohttp-3.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

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

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

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

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

aiohttp-3.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp313-cp313-macosx_11_0_arm64.whl (487.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.13.1-cp313-cp313-macosx_10_13_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.13.1-cp313-cp313-macosx_10_13_universal2.whl (730.7 kB view details)

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

aiohttp-3.13.1-cp312-cp312-win_amd64.whl (452.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.13.1-cp312-cp312-win32.whl (425.3 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.13.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

aiohttp-3.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

aiohttp-3.13.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

aiohttp-3.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp312-cp312-macosx_11_0_arm64.whl (490.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.13.1-cp312-cp312-macosx_10_13_x86_64.whl (491.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.13.1-cp312-cp312-macosx_10_13_universal2.whl (736.2 kB view details)

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

aiohttp-3.13.1-cp311-cp311-win_amd64.whl (454.8 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.13.1-cp311-cp311-win32.whl (430.5 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.13.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

aiohttp-3.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.9 MB view details)

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

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

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

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

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

aiohttp-3.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp311-cp311-macosx_11_0_arm64.whl (491.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.13.1-cp311-cp311-macosx_10_9_x86_64.whl (495.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.13.1-cp311-cp311-macosx_10_9_universal2.whl (742.0 kB view details)

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

aiohttp-3.13.1-cp310-cp310-win_amd64.whl (453.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.13.1-cp310-cp310-win32.whl (430.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.13.1-cp310-cp310-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.13.1-cp310-cp310-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

aiohttp-3.13.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

aiohttp-3.13.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

aiohttp-3.13.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

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

aiohttp-3.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp310-cp310-macosx_11_0_arm64.whl (487.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.13.1-cp310-cp310-macosx_10_9_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.13.1-cp310-cp310-macosx_10_9_universal2.whl (735.1 kB view details)

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

aiohttp-3.13.1-cp39-cp39-win_amd64.whl (454.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.13.1-cp39-cp39-win32.whl (431.6 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (1.6 MB view details)

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

aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (1.8 MB view details)

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

aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (1.6 MB view details)

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

aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl (489.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl (737.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1.tar.gz
Algorithm Hash digest
SHA256 4b7ee9c355015813a6aa085170b96ec22315dabc3d866fd77d147927000e9464
MD5 687492c57302cf21c6a15cff18a95a72
BLAKE2b-256 bafa3ae643cd525cf6844d3dc810481e5748107368eb49563c15a5fb9f680750

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f1d6aa90546a4e8f20c3500cb68ab14679cd91f927fa52970035fd3207dfb3da
MD5 05087f06f49f3f653df2f23b8c7da995
BLAKE2b-256 040f27e4fdde899e1e90e35eeff56b54ed63826435ad6cdb06b09ed312d1b3fa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 be697a5aeff42179ed13b332a411e674994bcd406c81642d014ace90bf4bb968
MD5 6047c897202b2b0f74b573cbc5761b8b
BLAKE2b-256 6ca406ed38f1dabd98ea136fd116cba1d02c9b51af5a37d513b6850a9a567d86

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ac8854f7b0466c5d6a9ea49249b3f6176013859ac8f4bb2522ad8ed6b94ded2
MD5 82ce2bb39b5bd8f3fbe5608066c70850
BLAKE2b-256 2275e19e93965ea675f1151753b409af97a14f1d888588a555e53af1e62b83eb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a417ceb433b9d280e2368ffea22d4bc6e3e0d894c4bc7768915124d57d0964b6
MD5 6ada7d2039ca49c462e0b0aee8e9e0a1
BLAKE2b-256 5cc6c64e39d61aaa33d7de1be5206c0af3ead4b369bf975dac9fdf907a4291c1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 58a6f8702da0c3606fb5cf2e669cce0ca681d072fe830968673bb4c69eb89e88
MD5 5b45df84004b8eb4ac14d73b57e98c16
BLAKE2b-256 028c9f48b93d7d57fc9ef2ad4adace62e4663ea1ce1753806c4872fb36b54c39

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 feb5ee664300e2435e0d1bc3443a98925013dfaf2cae9699c1f3606b88544898
MD5 1dfa02b6b0d85966492d8159e6064905
BLAKE2b-256 c3e3b372047ba739fc39f199b99290c4cc5578ce5fd125f69168c967dac44021

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0989cbfc195a4de1bb48f08454ef1cb47424b937e53ed069d08404b9d3c7aea1
MD5 be4da4e5cb5d3fd3d110ac5bb28817e6
BLAKE2b-256 a8e26925f6784134ce3ff3ce1a8502ab366432a3b5605387618c1a939ce778d9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58a12299eeb1fca2414ee2bc345ac69b0f765c20b82c3ab2a75d91310d95a9f6
MD5 d889324050be75cd3a89453935aa3147
BLAKE2b-256 c848396a97318af9b5f4ca8b3dc14a67976f71c6400a9609c622f96da341453f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d6c6cdc0750db88520332d4aaa352221732b0cafe89fd0e42feec7cb1b5dc236
MD5 f32a74913c74429d940e94d0432fa954
BLAKE2b-256 8a6dbaf7b462852475c9d045bee8418d9cdf280efb687752b553e82d0c58bcc2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47c3f21c469b840d9609089435c0d9918ae89f41289bf7cc4afe5ff7af5458db
MD5 53a1077927da350823e7a3ad7b8f7de5
BLAKE2b-256 04e626cab509b42610ca49573f2fc2867810f72bd6a2070182256c31b14f2e98

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 601d7ec812f746fd80ff8af38eeb3f196e1bab4a4d39816ccbc94c222d23f1d0
MD5 6821910b4553d6a281ef01920c38de55
BLAKE2b-256 d2bfd1738f6d63fe8b2a0ad49533911b3347f4953cd001bf3223cb7b61f18dff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fdc4d81c3dfc999437f23e36d197e8b557a3f779625cd13efe563a9cfc2ce712
MD5 bc04d10e9dbe73a7d4a41235701683fe
BLAKE2b-256 1d8021e9b5eb77df352a5788713f37359b570a793f0473f3a72db2e46df379b9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 1f62608fcb7b3d034d5e9496bea52d94064b7b62b06edba82cd38191336bbeda
MD5 6debc22829c9925d0feefe3ccfecbacd
BLAKE2b-256 df88525c45bea7cbb9f65df42cadb4ff69f6a0dbf95931b0ff7d1fdc40a1cb5f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58fee9ef8477fd69e823b92cfd1f590ee388521b5ff8f97f3497e62ee0656212
MD5 93be94242d7fa1f5fe1420ac94251452
BLAKE2b-256 58234042230ec7e4edc7ba43d0342b5a3d2fe0222ca046933c4251a35aaf17f5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b20eed07131adbf3e873e009c2869b16a579b236e9d4b2f211bf174d8bef44a
MD5 baef05981c6e2d482492aced1154cdd2
BLAKE2b-256 c121d27a506552843ff9eeb9fcc2d45f943b09eefdfdf205aab044f4f1f39f6a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 27e83abb330e687e019173d8fc1fd6a1cf471769624cf89b1bb49131198a810a
MD5 20e37ece07579b97452989b34de171d5
BLAKE2b-256 1f30b86da68b494447d3060f45c7ebb461347535dab4af9162a9267d9d86ca31

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp314-cp314t-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 390b73e99d7a1f0f658b3f626ba345b76382f3edc65f49d6385e326e777ed00e
MD5 e9e15fbdb16a0d6fcc6f5ad08665eb20
BLAKE2b-256 d49f9ba6059de4bad25c71cd88e3da53f93e9618ea369cf875c9f924b1c167e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp314-cp314t-macosx_10_13_universal2.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 748a00167b7a88385756fa615417d24081cba7e58c8727d2e28817068b97c18c
MD5 5b426bbd2c56692e58258478b24f06a2
BLAKE2b-256 88aa25fd764384dc4eab714023112d3548a8dd69a058840d61d816ea736097a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c5c970c148c48cf6acb65224ca3c87a47f74436362dde75c27bc44155ccf7dfc
MD5 7b393e38124a03686e7d84984a8f9891
BLAKE2b-256 9626063bba38e4b27b640f56cc89fe83cc3546a7ae162c2e30ca345f0ccdc3d1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad671118c19e9cfafe81a7a05c294449fe0ebb0d0c6d5bb445cd2190023f5cef
MD5 e3c301620e7827cac4acb60211031062
BLAKE2b-256 2a48b1948b74fea7930b0f29595d1956842324336de200593d49a51a40607fdc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4159fae827f9b5f655538a4f99b7cbc3a2187e5ca2eee82f876ef1da802ccfa9
MD5 4d1badcff3a9fcf01d926234ba9b01b2
BLAKE2b-256 53393ac8dfdad5de38c401846fa071fcd24cb3b88ccfb024854df6cbd9b4a07e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8fa09ab6dd567cb105db4e8ac4d60f377a7a94f67cf669cac79982f626360f32
MD5 1f209c72b20f98c5b80503336fe50b00
BLAKE2b-256 23ce610b1f77525a0a46639aea91377b12348e9f9412cc5ddcb17502aa4681c7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f1dfad638b9c91ff225162b2824db0e99ae2d1abe0dc7272b5919701f0a1e685
MD5 ee1db7802bf3ab146505229b39bc82f7
BLAKE2b-256 38b97f3e32a81c08b6d29ea15060c377e1f038ad96cd9923a85f30e817afff22

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f48a2c26333659101ef214907d29a76fe22ad7e912aa1e40aeffdff5e8180977
MD5 7a66e89fcc505f2019605404953b30e2
BLAKE2b-256 29831e68e519aff9f3ef6d4acb6cdda7b5f592ef5c67c8f095dc0d8e06ce1c3e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1060e058da8f9f28a7026cdfca9fc886e45e551a658f6a5c631188f72a3736d2
MD5 15e80ce2c002f6b8a33105d51a1abdca
BLAKE2b-256 a814dbc426a1bb1305c4fc78ce69323498c9e7c699983366ef676aa5d3f949fa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 97795a0cb0a5f8a843759620e9cbd8889f8079551f5dcf1ccd99ed2f056d9632
MD5 ed0635645a688f6f24bc0b2cf1fbd5fb
BLAKE2b-256 b5d3d36077ca5f447649112189074ac6c192a666bf68165b693e48c23b0d008c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8619dca57d98a8353abdc7a1eeb415548952b39d6676def70d9ce76d41a046a9
MD5 1dece44f5fcd0897598ebccb9c8d7bf8
BLAKE2b-256 fb348ab5904b3331c91a58507234a1e2f662f837e193741609ee5832eb436251

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3751f9212bcd119944d4ea9de6a3f0fee288c177b8ca55442a2cdff0c8201eb3
MD5 47b431769fe6a1212d51abe66c0dd2a5
BLAKE2b-256 1cc60a2b3d886b40aa740fa2294cd34ed46d2e8108696748492be722e23082a7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c68172e1a2dca65fa1272c85ca72e802d78b67812b22827df01017a15c5089fa
MD5 1d80aaff611a1189d61371b10c2bb577
BLAKE2b-256 3b968319e7060a85db14a9c178bc7b3cf17fad458db32ba6d2910de3ca71452d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 095414be94fce3bc080684b4cd50fb70d439bc4662b2a1984f45f3bf9ede08aa
MD5 90a42ff16aec006c623b666279734fd5
BLAKE2b-256 b99939a3d250595b5c8172843831221fa5662884f63f8005b00b4034f2a7a836

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79ac15fe5fdbf3c186aa74b656cd436d9a1e492ba036db8901c75717055a5b1c
MD5 a983366e37f9a9e9e0e8788d4336e95d
BLAKE2b-256 67963aec9d9cfc723273d4386328a1e2562cf23629d2f57d137047c49adb2afb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c489309a2ca548d5f11131cfb4092f61d67954f930bba7e413bcdbbb82d7fae
MD5 e11963e275393f9554ed05c1d8da7de1
BLAKE2b-256 da5a4cbe599358d05ea7db4869aff44707b57d13f01724d48123dc68b3288d5a

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9cafd2609ebb755e47323306c7666283fbba6cf82b5f19982ea627db907df23a
MD5 8a8d0faf2a67bbd5091bdb1a589580bb
BLAKE2b-256 751424e2ac5efa76ae30e05813e0f50737005fd52da8ddffee474d4a5e7f38a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp314-cp314-macosx_10_13_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 77f83b3dc5870a2ea79a0fcfdcc3fc398187ec1675ff61ec2ceccad27ecbd303
MD5 bc4f3d5d45515562401d57308a50b944
BLAKE2b-256 97be0f6c41d2fd0aab0af133c509cabaf5b1d78eab882cb0ceb872e87ceeabf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp314-cp314-macosx_10_13_universal2.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef56ffe60e8d97baac123272bde1ab889ee07d3419606fae823c80c2b86c403e
MD5 68c9dba5fe8e703ab43fa090b418dccc
BLAKE2b-256 cc00f3a92c592a845ebb2f47d102a67f35f0925cb854c5e7386f1a3a1fdff2ab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 02e0258b7585ddf5d01c79c716ddd674386bfbf3041fbbfe7bdf9c7c32eb4a9b
MD5 34b4627f7097114cc5dd59f04f15959a
BLAKE2b-256 a221e39638b7d9c7f1362c4113a91870f89287e60a7ea2d037e258b81e8b37d5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a89da72d18d6c95a653470b78d8ee5aa3c4b37212004c103403d0776cbea6ff0
MD5 f0ce7067ca4d648fbbe6eb2c5869d2ca
BLAKE2b-256 3cc44a526d84e77d464437713ca909364988ed2e0cd0cdad2c06cb065ece9e08

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d9c52a65f54796e066b5d674e33b53178014752d28bca555c479c2c25ffcec5b
MD5 24d23dc88d8f0a3d01176f20f1f2a2c6
BLAKE2b-256 d3ad33d36efd16e4fefee91b09a22a3a0e1b830f65471c3567ac5a8041fac812

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8a396b1da9b51ded79806ac3b57a598f84e0769eaa1ba300655d8b5e17b70c7b
MD5 c691e9fc37610a2d69546e05315b79ba
BLAKE2b-256 b9ec1f818cc368dfd4d5ab4e9efc8f2f6f283bfc31e1c06d3e848bcc862d4591

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8f47d0ff5b3eb9c1278a2f56ea48fda667da8ebf28bd2cb378b7c453936ce003
MD5 fd162e7ac229a9f17be5b236a34e45e8
BLAKE2b-256 f2362f83e1ca730b1e0a8cf1c8ab9559834c5eec9f5da86e77ac71f0d16b521d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1824c7d08d8ddfc8cb10c847f696942e5aadbd16fd974dfde8bd2c3c08a9fa1
MD5 e701236622977f7612751b9a5b23db04
BLAKE2b-256 be318926c8ab18533f6076ce28d2c329a203b58c6861681906e2d73b9c397588

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93029f0e9b77b714904a281b5aa578cdc8aa8ba018d78c04e51e1c3d8471b8ec
MD5 eaccc3b84c2728c2d52eca261414e159
BLAKE2b-256 96176d5c73cd862f1cf29fddcbb54aac147037ff70a043a2829d03a379e95742

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 1b5c722d0ca5f57d61066b5dfa96cdb87111e2519156b35c1f8dd17c703bee7a
MD5 c03d668568aff49eb0ef0c49945ec162
BLAKE2b-256 ac428df03367e5a64327fe0c39291080697795430c438fc1139c7cc1831aa1df

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 010dc9b7110f055006acd3648d5d5955bb6473b37c3663ec42a1b4cba7413e6b
MD5 3a5595de9d1736fa7a5f758b5cef8733
BLAKE2b-256 cce633d305e6cce0a8daeb79c7d8d6547d6e5f27f4e35fa4883fc9c9eb638596

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0e425a7e0511648b3376839dcc9190098671a47f21a36e815b97762eb7d556b0
MD5 9109999e6db152b0af7875bd73bbce94
BLAKE2b-256 a4801f470ed93e06436e3fc2659a9fc329c192fa893fb7ed4e884d399dbfb2a8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e65ef49dd22514329c55970d39079618a8abf856bae7147913bb774a3ab3c02f
MD5 4b1f9b77b3551b67b58ccdf57666f91b
BLAKE2b-256 0aa49c8a3843ecf526daee6010af1a66eb62579be1531d2d5af48ea6f405ad3c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 6e68e126de5b46e8b2bee73cab086b5d791e7dc192056916077aa1e2e2b04437
MD5 e6662532e8b8113ca936ae09421804e6
BLAKE2b-256 e18bc3da064ca392b2702f53949fd7c403afa38d9ee10bf52c6ad59a42537103

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a47fe43229a8efd3764ef7728a5c1158f31cdf2a12151fe99fde81c9ac87019c
MD5 566ccd1fd43ace89a19fa958d6d89973
BLAKE2b-256 48588f9464afb88b3eed145ad7c665293739b3a6f91589694a2bb7e5778cbc72

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27af0619c33f9ca52f06069ec05de1a357033449ab101836f431768ecfa63ff5
MD5 22f63fdffcd5286eba6816b3a1e31ce0
BLAKE2b-256 a81923c6b81cca587ec96943d977a58d11d05a82837022e65cd5502d665a7d11

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4bef5b83296cebb8167707b4f8d06c1805db0af632f7a72d7c5288a84667e7c3
MD5 56790b2598ca0eaae9b2776b532175da
BLAKE2b-256 92c81cf495bac85cf71b80fad5f6d7693e84894f11b9fe876b64b0a1e7cbf32f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 55785a7f8f13df0c9ca30b5243d9909bd59f48b274262a8fe78cee0828306e5d
MD5 013caf0bb0ce617559bb5aebbd58196c
BLAKE2b-256 166dd267b132342e1080f4c1bb7e1b4e96b168b3cbce931ec45780bff693ff95

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3461919a9dca272c183055f2aab8e6af0adc810a1b386cce28da11eb00c859d9
MD5 c77f310040269cabe5c8f74075678f33
BLAKE2b-256 0ee34481f50dd6f27e9e58c19a60cff44029641640237e35d32b04aaee8cf95f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f90fe0ee75590f7428f7c8b5479389d985d83c949ea10f662ab928a5ed5cf5e6
MD5 cbe44cf2625b76097c80343b8dcd7fef
BLAKE2b-256 5c88bd1b38687257cce67681b9b0fa0b16437be03383fa1be4d1a45b168bef25

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb611489cf0db10b99beeb7280bd39e0ef72bc3eb6d8c0f0a16d8a56075d1eb7
MD5 e2442a6f57562f34e16f7e00b491f952
BLAKE2b-256 4c7b1dbe6a39e33af9baaafc3fc016a280663684af47ba9f0e5d44249c1f72ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d7c14de0c7c9f1e6e785ce6cbe0ed817282c2af0012e674f45b4e58c6d4ea030
MD5 d34d4964cdd8a935ac0bfcc9c1cdb1d8
BLAKE2b-256 214bd8003aeda2f67f359b37e70a5a4b53fee336d8e89511ac307ff62aeefcdb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a2370986a3b75c1a5f3d6f6d763fc6be4b430226577b0ed16a7c13a75bf43d8f
MD5 21a0914900200ee318d58e2ba1a84060
BLAKE2b-256 b0343e919ecdc93edaea8d140138049a0d9126141072e519535e2efa38eb7a02

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 163d3226e043f79bf47c87f8dfc89c496cc7bc9128cb7055ce026e435d551720
MD5 84d80b3924b04d26833d38e4122a932d
BLAKE2b-256 fc782af2f44491be7b08e43945b72d2b4fd76f0a14ba850ba9e41d28a7ce716a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4131df864cbcc09bb16d3612a682af0db52f10736e71312574d90f16406a867
MD5 1137fb9a00614229e6f69530c0aad96b
BLAKE2b-256 5ed1082f0620dc428ecb8f21c08a191a4694915cd50f14791c74a24d9161cc50

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 055a51d90e351aae53dcf324d0eafb2abe5b576d3ea1ec03827d920cf81a1c15
MD5 5d444f08a2c34c2257c54d69ad680c00
BLAKE2b-256 7a91d2ab08cd77ed76a49e4106b1cfb60bce2768242dd0c4f9ec0cb01e2cbf94

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7bda795f08b8a620836ebfb0926f7973972a4bf8c74fdf9145e489f88c416811
MD5 d9a765ad062d441e494c409a1849f509
BLAKE2b-256 1caf845dc6b6fdf378791d720364bf5150f80d22c990f7e3a42331d93b337cc7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3fd4570ea696aee27204dd524f287127ed0966d14d309dc8cc440f474e3e7dbd
MD5 cdbb687476f99b6ea313f03bc8654a9b
BLAKE2b-256 9e69b204e5d43384197a614c88c1717c324319f5b4e7d0a1b5118da583028d40

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9bc36b41cf4aab5d3b34d22934a696ab83516603d1bc1f3e4ff9930fe7d245e5
MD5 0c66300237270bd78c1019cfdae075ad
BLAKE2b-256 b83b43bca1e75847e600f40df829a6b2f0f4e1d4c70fb6c4818fdc09a462afd5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0e778f634ca50ec005eefa2253856921c429581422d887be050f2c1c92e5ce12
MD5 ef0350c2f5a726e6872b0d274c63eccf
BLAKE2b-256 25047127ba55653e04da51477372566b16ae786ef854e06222a1c96b4ba6c8ef

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f92ad8169767429a6d2237331726c03ccc5f245222f9373aa045510976af2b35
MD5 cf7daaf2191cca84854e776e36cdb567
BLAKE2b-256 243dce6e4eca42f797d6b1cd3053cf3b0a22032eef3e4d1e71b9e93c92a3f201

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 782d656a641e755decd6bd98d61d2a8ea062fd45fd3ff8d4173605dd0d2b56a1
MD5 3c0c8d725f5017c386edd39642bad185
BLAKE2b-256 31051172cc4af4557f6522efdee6eb2b9f900e1e320a97e25dffd3c5a6af651b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1cb04ae64a594f6ddf5cbb024aba6b4773895ab6ecbc579d60414f8115e9e26
MD5 acadd64bb66fef615832bc3775d64b01
BLAKE2b-256 0c7c7ea51b5aed6cc69c873f62548da8345032aa3416336f2d26869d4d37b4a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7129a424b441c3fe018a414401bf1b9e1d49492445f5676a3aecf4f74f67fcdb
MD5 8e5ab9eaa66ac7f9a451b3f4d1166eb0
BLAKE2b-256 2613f7bccedbe52ea5a6eef1e4ebb686a8d7765319dfd0a5939f4238cb6e79e6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 0760bd9a28efe188d77b7c3fe666e6ef74320d0f5b105f2e931c7a7e884c8230
MD5 8c5102a9512f06b82f39c9352c0d9505
BLAKE2b-256 1a72d463a10bf29871f6e3f63bcf3c91362dc4d72ed5917a8271f96672c415ad

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 77a2f5cc28cf4704cc157be135c6a6cfb38c9dea478004f1c0fd7449cf445c28
MD5 a49c851cde8fe75464ca6cc95355ec36
BLAKE2b-256 acd2d21b8ab6315a5d588c550ab285b4f02ae363edf012920e597904c5a56608

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce1371675e74f6cf271d0b5530defb44cce713fd0ab733713562b3a2b870815c
MD5 b25a592118397b363bf858cab7ff629c
BLAKE2b-256 9484fce7a4d575943394d7c0e632273838eb6f39de8edf25386017bf5f0de23b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c09e08d38586fa59e5a2f9626505a0326fadb8e9c45550f029feeb92097a0afc
MD5 2e088e5118837fbdb10f7b32b01677dc
BLAKE2b-256 67fffdf768764eb427b0cc9ebb2cebddf990f94d98b430679f8383c35aa114be

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7764adcd2dc8bd21c8228a53dda2005428498dc4d165f41b6086f0ac1c65b1c9
MD5 fc748d12fed8c4437ada5c27e3b29e6a
BLAKE2b-256 85b8188e0cb1be37b4408373171070fda17c3bf9c67c0d3d4fd5ee5b1fa108e1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6941853405a38a5eeb7d9776db77698df373ff7fa8c765cb81ea14a344fccbeb
MD5 313d01155a548e50f48590ba3e6d0be3
BLAKE2b-256 2d36fd46e39cb85418e45b0e4a8bfc39651ee0b8f08ea006adf217a221cdb269

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1bbfc04c8de7def6504cce0a97f9885a5c805fd2395a0634bc10f9d6ecb42524
MD5 df605f6f02b8c203434eb3919a91d8ca
BLAKE2b-256 55657029d7573ab9009adde380052c6130d02c8db52195fda112db35e914fe7b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b902e30a268a85d50197b4997edc6e78842c14c0703450f632c2d82f17577845
MD5 3ffbe2db7eaa7d7d7e48b80225c2cd9c
BLAKE2b-256 72130a38ad385d547fb283e0e1fe1ff1dff8899bd4ed0aaceeb13ec14abbf136

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9739d34506fdf59bf2c092560d502aa728b8cdb33f34ba15fb5e2852c35dd829
MD5 0dfdd6552525fc6113fab18b471b3757
BLAKE2b-256 3f4e18605b1bfeb4b00d3396d833647cdb213118e2a96862e5aebee62ad065b4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0c3db2d0e5477ad561bf7ba978c3ae5f8f78afda70daa05020179f759578754f
MD5 dc192992c2a23eca5da4975a9d158528
BLAKE2b-256 931a153b0ad694f377e94eacc85338efe03ed4776a396c8bb47bd9227135792a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e4b4e607fbd4964d65945a7b9d1e7f98b0d5545736ea613f77d5a2a37ff1e46
MD5 4cdad9efb3eee01d6d6c96a7d735eb39
BLAKE2b-256 e8a279eb466786a7f11a0292c353a8a9b95e88268c48c389239d7531d66dbb48

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 aa878da718e8235302c365e376b768035add36b55177706d784a122cb822a6a4
MD5 6eac15696081217b93b93e98a97a7a74
BLAKE2b-256 ad45b87d2430aee7e7d00b24e3dff2c5bd69f21017f6edb19cfd91e514664fc8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 dacba54f9be3702eb866b0b9966754b475e1e39996e29e442c3cd7f1117b43a9
MD5 487b4da9ca681fe3a80fd6e60e308d65
BLAKE2b-256 5aa5c4ef3617d7cdc49f2d5af077f19794946f0f2d94b93c631ace79047361a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 65782b2977c05ebd78787e3c834abe499313bf69d6b8be4ff9c340901ee7541f
MD5 95127881b2dbda06f5dd7d3ab1241839
BLAKE2b-256 28a5fe6022bb869bf2d2633b155ed8348d76358c22d5ff9692a15016b2d1019f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b22eeffca2e522451990c31a36fe0e71079e6112159f39a4391f1c1e259a795
MD5 db9cd7fa03d00b68cdc79a3db085a783
BLAKE2b-256 1eaee40e422ee995e4f91f7f087b86304e3dd622d3a5b9ca902a1e94ebf9a117

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfc28038cd86fb1deed5cc75c8fda45c6b0f5c51dfd76f8c63d3d22dc1ab3d1b
MD5 07dec56201503b87fbc2260efe151dfb
BLAKE2b-256 3eaffb78d028b9642dd33ff127d9a6a151586f33daff631b05250fecd0ab23f8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c20eb646371a5a57a97de67e52aac6c47badb1564e719b3601bbb557a2e8fd0
MD5 4bc6bab5ff39fd9455f8d34804203dff
BLAKE2b-256 fcf87f5b7f7184d7c80e421dbaecbd13e0b2a0bb8663fd0406864f9a167a438c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9eefa0a891e85dca56e2d00760945a6325bd76341ec386d3ad4ff72eb97b7e64
MD5 7c2370dd1e45f85f9f05769fc30bec31
BLAKE2b-256 be2c739d03730ffce57d2093e2e611e1541ac9a4b3bb88288c33275058b9ffc2

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a4cc9d9cfdf75a69ae921c407e02d0c1799ab333b0bc6f7928c175f47c080d6a
MD5 8773948da3e5fcb494a689a0704935a6
BLAKE2b-256 0e13214a01f2936f4645b1fbd5cba9001331ca5af5c04bbdbe747eed330a8516

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 add14a5e68cbcfc526c89c1ed8ea963f5ff8b9b4b854985b07820c6fbfdb3c3c
MD5 d81eb512297ff4d24db91f3cae81994a
BLAKE2b-256 30521cf23cffeda1f079f20cd9c72174a76e8b0c6595def6803892e37ee35c8a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5fe2728a89c82574bd3132d59237c3b5fb83e2e00a320e928d05d74d1ae895f
MD5 cd004b99472db186f0949a698169d802
BLAKE2b-256 24ac49a79c2711423cfa091e265c46e58617de31258c64502b890f25421cb742

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8d5011e4e741d2635cda18f2997a56e8e1d1b94591dc8732f2ef1d3e1bfc5f45
MD5 46e6aecedc643e06ebbe4018cd2e0928
BLAKE2b-256 bd8b31cb6725f819b74a9c0b0055c500187294e73aea40708b6a5aa7b328ea4c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 fba3c85fb24fe204e73f3c92f09f4f5cfa55fa7e54b34d59d91b7c5a258d0f6a
MD5 df082ddbecb5c453df711a9ab13446d9
BLAKE2b-256 15e48414be434b3e50f9089ffa7c4d5130ba6ff0d1c6fa9f55cd760b088abbe0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e0b2ccd331bc77149e88e919aa95c228a011e03e1168fd938e6aeb1a317d7a8a
MD5 556672dc6a5c7b2b3ba4b8e0b3017612
BLAKE2b-256 0dc4e49bafa4babef09929b10968a6b6efe3707fbaa5c5bb7c8db7f810232269

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4dadbd858ed8c04d1aa7a2a91ad65f8e1fbd253ae762ef5be8111e763d576c3c
MD5 5940a9ad2bae3518228952995db7f825
BLAKE2b-256 c14357b137af37344e03c7f6b28ddf38a4af820b53c1fa9ce13f668fe468d2e2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79ac65b6e2731558aad1e4c1a655d2aa2a77845b62acecf5898b0d4fe8c76618
MD5 5575e041677eaff7c4dfc84267fa6aa3
BLAKE2b-256 392648a4b5681eada16eb5b39cae277765aed1644b03610c43eadb8b331ccfea

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ab8ac3224b2beb46266c094b3869d68d5f96f35dba98e03dea0acbd055eefa03
MD5 e55921051e8d3cb810a6efe2b2c3ad10
BLAKE2b-256 eeed563de175d01fa26459a60a7c82dbf69d20e356d459476a7526329091b4c3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90eb902c06c6ac85d6b80fa9f2bd681f25b1ebf73433d428b3d182a507242711
MD5 9c1692dc73dfc0ecbab555c010990698
BLAKE2b-256 ef6b4b657e9fa72479df38117609d4ec8e4b07e8110b872df3872f9c6a96e26b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 610be925f89501938c770f1e28ca9dd62e9b308592c81bd5d223ce92434c0089
MD5 8b8954b51e21bd8f592a5c70baccf174
BLAKE2b-256 52b28290556f1f6b17b1af976a9abb17f9b54dc7218e11bbf6abbebaa7cc70fb

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 499a047d1c5e490c31d16c033e2e47d1358f0e15175c7a1329afc6dfeb04bc09
MD5 3b8b62940b3657c1233739583e49b80a
BLAKE2b-256 738dfde3a8f4801b14e0b9490f5bc86c5106cb7d96bd60ff2aaee53749c72fe1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ac1892f56e2c445aca5ba28f3bf8e16b26dfc05f3c969867b7ef553b74cb4ebe
MD5 058478eaabe70e973931edfde69d37d7
BLAKE2b-256 29be32c6c1d3a6c69e594b855bbf4014bea4c42008b0daac8c6e5c9f03207b89

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 777ec887264b629395b528af59b8523bf3164d4c6738cd8989485ff3eda002e2
MD5 6a13228c4b2f6cb8368793628ad2f976
BLAKE2b-256 23b0c5a774b3125ac854987b8ca45a6d995829987d01ece4525d3fc369a9ca88

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bd610a7e87431741021a9a6ab775e769ea8c01bf01766d481282bfb17df597f
MD5 53fd07db9a213f3c952ef0e7693723b8
BLAKE2b-256 821f364e64292c95bb6c9e2823b0afa1ad3f06524c573d45df82294be572489d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2a8434ca31c093a90edb94d7d70e98706ce4d912d7f7a39f56e1af26287f4bb7
MD5 9a04ea7bd7951f15deae24234be609bd
BLAKE2b-256 8c2b726466b4b4b16271a3db2a8a914d754d6cb9cee7bebde1f3ac6043e4e030

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2349a6b642020bf20116a8a5c83bae8ba071acf1461c7cbe45fc7fafd552e7e2
MD5 7e636b6c7cc997a511b37f0245b7bd52
BLAKE2b-256 e6345097441cc3047eccc2e0bfed3760ed068489b8392545d3aec0d8fbfab2b5

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.13.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 454.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f2543eebf890739fd93d06e2c16d97bdf1301d2cda5ffceb7a68441c7b590a92
MD5 9f137f61db10d94162b8e2a2183f643d
BLAKE2b-256 8668c83126f351ffa50b8b83b88c5e9bc219b6709a74139447d2e05786510873

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-win_amd64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.13.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 431.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a617769e8294ca58601a579697eae0b0e1b1ef770c5920d55692827d6b330ff9
MD5 9a03714ca7e39ab4b3a62d02323096c3
BLAKE2b-256 fd41c1a23276181d1f7a59e1569ae1f2ea4b03067753672791bb3587b7202899

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-win32.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff0357fa3dd28cf49ad8c515452a1d1d7ad611b513e0a4f6fa6ad6780abaddfd
MD5 58f1f3e9039e3a1c4cc49eb2e9707879
BLAKE2b-256 9240b355f78d1c8a25568831847bddcb9e0999374b514bae566d53588e21a56f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 168279a11571a39d689fc7b9725ddcde0dc68f2336b06b69fcea0203f9fb25d8
MD5 02d7efc8269e2843d7b0a02b15ac249d
BLAKE2b-256 ebaef4d1da25e352bee6a6973adee6f7fd551a5790b1ab2141a630d321c902c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_s390x.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7c5e2660c6d6ab0d85c45bc8bd9f685983ebc63a5c7c0fd3ddeb647712722eca
MD5 cf7a08f74dba52c4277d2877949de888
BLAKE2b-256 2926a4910cad8e2699bf64f68bb01a585f164829c0b89036d4141f915c2a26ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a1d6fd6e9e3578a7aeb0fa11e9a544dceccb840330277bf281325aa0fe37787e
MD5 465a90621da234099e0b0f76fd614f25
BLAKE2b-256 8fd73bdb019f03c95238112eca8a02894b191ca1dd267544971433adc856912a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed782a438ff4b66ce29503a1555be51a36e4b5048c3b524929378aa7450c26a9
MD5 a4e710c1cdf213421816029d494dd0ee
BLAKE2b-256 f8e87b5dfa9c405022f6e08a97fe1e5f6aa3b8d368c0eaaca03888d4f91ede64

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bff813424c70ad38667edfad4fefe8ca1b09a53621ce7d0fd017e418438f58a
MD5 b0803e3428b635832ddc628ccc37f6d5
BLAKE2b-256 09e47f606092153e2f85868462efbe038da97f00459a787ba1dae84e43196041

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-musllinux_1_2_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 51b3c44434a50bca1763792c6b98b9ba1d614339284780b43107ef37ec3aa1dc
MD5 1b92d861bfc4436ea598f12becda6421
BLAKE2b-256 3b3d0c43bef82e5ed691bf7b47bebe7323010bd5c9b685285829d4381e6514a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8ccd2946aadf7793643b57d98d5a82598295a37f98d218984039d5179823cd5
MD5 3280c73afdb9097adc9fca4c3e2bf6bd
BLAKE2b-256 790308dc71a29a32ef1b2e1d76c2d72559d0b729eb82933f824f149517f72d02

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 412bfc63a6de4907aae6041da256d183f875bf4dc01e05412b1d19cfc25ee08c
MD5 51c8b093334fa57a9e73893f100079d5
BLAKE2b-256 50c6b79780419bde91bac24ca91919f4a2bbd534cf52dc4a80b6a32bf9cfe60d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 37cc1b9773d2a01c3f221c3ebecf0c82b1c93f55f3fde52929e40cf2ed777e6c
MD5 93f04bd021f3cf65060b0e2aa91f269c
BLAKE2b-256 11071b4db771161afa796a86ffb4787fab7d81199a428d285742b553ba8d3c66

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 f37da298a486e53f9b5e8ef522719b3787c4fe852639a1edcfcc9f981f2c20ba
MD5 7035b35ba237795d2c24cc7d34162d3a
BLAKE2b-256 27dec50d56b8a2baaf2178743758cb013aae343fec47a4f3e261459142df7b83

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e95ea8fb27fbf667d322626a12db708be308b66cd9afd4a997230ded66ffcab4
MD5 ecf46a0bdcdf2f391ad525ebd1e8df55
BLAKE2b-256 5593ab03a54fa57fbba05a40cae18b704965a5f2b5deec9ae11fb81b554cd393

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb1e557bd1a90f28dc88a6e31332753795cd471f8d18da749c35930e53d11880
MD5 8deaa3738cba988d9d572b53662516d4
BLAKE2b-256 0e4fb57cb7a1d16844ec58fa436fa8f8d80afd6de9281162f93a4087cd69a962

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-macosx_11_0_arm64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb7c5f0b35f5a3a06bd5e1a7b46204c2dca734cd839da830db81f56ce60981fe
MD5 90a7e696bf644167f2dc39f3083a916d
BLAKE2b-256 32822e73cd55d35d6ecc4c5180d9388d8255c07010553badaa3634d2a77ab05a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-macosx_10_9_x86_64.whl:

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

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

File details

Details for the file aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a5dc5c3b086adc232fd07e691dcc452e8e407bf7c810e6f7e18fd3941a24c5c0
MD5 f013e606fe8d530cbcafeda190a5905b
BLAKE2b-256 1dc876ef829954d9b08c0b785f43394e6cdce5c87673bf5cd6bc6dd04e1c3a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.1-cp39-cp39-macosx_10_9_universal2.whl:

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

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page