Skip to main content
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

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.0.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.0-cp314-cp314t-win_amd64.whl (496.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiohttp-3.13.0-cp314-cp314t-win32.whl (462.6 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

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

aiohttp-3.13.0-cp314-cp314t-macosx_11_0_arm64.whl (507.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiohttp-3.13.0-cp314-cp314t-macosx_10_13_x86_64.whl (502.6 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

aiohttp-3.13.0-cp314-cp314t-macosx_10_13_universal2.whl (765.3 kB view details)

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

aiohttp-3.13.0-cp314-cp314-win_amd64.whl (455.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aiohttp-3.13.0-cp314-cp314-win32.whl (429.5 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

aiohttp-3.13.0-cp314-cp314-macosx_11_0_arm64.whl (489.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiohttp-3.13.0-cp314-cp314-macosx_10_13_x86_64.whl (488.7 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

aiohttp-3.13.0-cp314-cp314-macosx_10_13_universal2.whl (733.2 kB view details)

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

aiohttp-3.13.0-cp313-cp313-win_amd64.whl (450.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.13.0-cp313-cp313-win32.whl (423.8 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.13.0-cp313-cp313-macosx_10_13_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.13.0-cp313-cp313-macosx_10_13_universal2.whl (730.1 kB view details)

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

aiohttp-3.13.0-cp312-cp312-win_amd64.whl (451.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.13.0-cp312-cp312-win32.whl (424.6 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.13.0-cp312-cp312-macosx_10_13_x86_64.whl (490.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.13.0-cp312-cp312-macosx_10_13_universal2.whl (735.6 kB view details)

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

aiohttp-3.13.0-cp311-cp311-win_amd64.whl (454.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.13.0-cp311-cp311-win32.whl (429.8 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.13.0-cp311-cp311-macosx_10_9_x86_64.whl (495.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.13.0-cp311-cp311-macosx_10_9_universal2.whl (741.4 kB view details)

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

aiohttp-3.13.0-cp310-cp310-win_amd64.whl (453.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.13.0-cp310-cp310-win32.whl (430.2 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

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

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

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

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

aiohttp-3.13.0-cp310-cp310-macosx_11_0_arm64.whl (487.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.13.0-cp310-cp310-macosx_10_9_x86_64.whl (491.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.13.0-cp310-cp310-macosx_10_9_universal2.whl (734.4 kB view details)

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

aiohttp-3.13.0-cp39-cp39-win_amd64.whl (454.0 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.13.0-cp39-cp39-win32.whl (430.9 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9musllinux: musl 1.2+ riscv64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.13.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (488.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.13.0-cp39-cp39-macosx_10_9_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.13.0-cp39-cp39-macosx_10_9_universal2.whl (737.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0.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.0.tar.gz
Algorithm Hash digest
SHA256 378dbc57dd8cf341ce243f13fa1fa5394d68e2e02c15cd5f28eae35a70ec7f67
MD5 b39c2e4849ac86f6cb32570dc1fd338a
BLAKE2b-256 62f18515650ac3121a9e55c7b217c60e7fae3e0134b5acfe65691781b5356929

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 496.0 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1f164699a060c0b3616459d13c1464a981fddf36f892f0a5027cbd45121fb14b
MD5 db3487db58f3650db2aacb505943278d
BLAKE2b-256 bdafad12d592f623aae2bd1d3463201dc39c201ea362f9ddee0d03efd9e83720

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 462.6 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dea698b64235d053def7d2f08af9302a69fcd760d1c7bd9988fd5d3b6157e657
MD5 78089783cd3d3479ffe07a6b9ef6873e
BLAKE2b-256 bdb04bad0a9dd5910bd01c3119f8bd3d71887cd412d4105e4acddcdacf3cfa76

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb34001fc1f05f6b323e02c278090c07a47645caae3aa77ed7ed8a3ce6abcce9
MD5 bb50b6b680e3b5b275a46e9a290df14f
BLAKE2b-256 d578394003ac738703822616f4f922705b54e5b3d8e7185831ecc1c97904174d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 99a303ad960747c33b65b1cb65d01a62ac73fa39b72f08a2e1efa832529b01ed
MD5 e1e5ce7144de936dfe60f929d0a5d749
BLAKE2b-256 8cf6da76230679bd9ef175d876093f89e7fd6d6476c18505e115e3026fe5ef95

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 474cade59a447cb4019c0dce9f0434bf835fb558ea932f62c686fe07fe6db6a1
MD5 5b15659a6d57debf7e731022b42e3018
BLAKE2b-256 faddc9283dbfd9325ed6fa6c91f009db6344d8d370a7bcf09f36e7b2fcbfae02

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a921edbe971aade1bf45bcbb3494e30ba6863a5c78f28be992c42de980fd9108
MD5 50ff349b10234c22bd70b20fced56861
BLAKE2b-256 c7540e8e2111dd92051c787e934b6bbf30c213daaa5e7ee5f51bca8913607492

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8e38d55ca36c15f36d814ea414ecb2401d860de177c49f84a327a25b3ee752b
MD5 d349a9dd8572d73f53ad53b2571ed79e
BLAKE2b-256 ddae8b397e980ac613ef3ddd8e996aa7a40a1828df958257800d4bb325657db3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3a8e6a2058a0240cfde542b641d0e78b594311bc1a710cbcb2e1841417d5cb3
MD5 685cc57b61e2d26df2c19149f287e983
BLAKE2b-256 84975174971ba4986d913554ceb248b0401eb5358cb60672ea0166f9f596cd08

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2c4aeaedd20771b7b4bcdf0ae791904445df6d856c02fc51d809d12d17cffdc7
MD5 cc5c1769c5a6beb3b654d7340ac68d29
BLAKE2b-256 788d9af903324c2ba24a0c4778e9bcc738b773c98dded3a4fcf8041d5211769f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 019dbef24fe28ce2301419dd63a2b97250d9760ca63ee2976c2da2e3f182f82e
MD5 d1d1348cb60738871391ea0e785903df
BLAKE2b-256 88e286050aaa3bd7021b115cdfc88477b754e8cf93ef0079867840eee22d3c34

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e88ab34826d6eeb6c67e6e92400b9ec653faf5092a35f07465f44c9f1c429f82
MD5 cf5c60c11bb2e11ce54f5a20c5fb6f07
BLAKE2b-256 dfb9b3ab1278faa0d1b8f434c85f9cf34eeb0a25016ffe1ee6bc361d09fef0ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3e77a729df23be2116acc4e9de2767d8e92445fbca68886dd991dc912f473755
MD5 83e2a12781232c34c9d3593fe917e2e7
BLAKE2b-256 238f50cc34ad267b38608f21c6a74327015dd08a66f1dd8e7ceac954d0953191

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3b3bdc89413117b40cc39baae08fd09cbdeb839d421c4e7dce6a34f6b54b3ac1
MD5 43761b351374d47c5f0740668e6996ff
BLAKE2b-256 1a251449a59e3c6405da5e47b0138ee0855414dc12a8c306685d7fc3dd300e1f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc95c49853cd29613e4fe4ff96d73068ff89b89d61e53988442e127e8da8e7ba
MD5 7d398d891eb5c62e1745012500dd28ff
BLAKE2b-256 494c046c847b7a1993b49f3855cc3b97872d5df193d9240de835d0dc6a97b164

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e68c0076052dd911a81d3acc4ef2911cc4ef65bf7cadbfbc8ae762da24da858f
MD5 81d860c2204c0d20c57bca312b3bceb2
BLAKE2b-256 e722b0afcafcfe3637bc8d7992abf08ee9452018366c0801e4e7d4efda2ed839

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4df1984c8804ed336089e88ac81a9417b1fd0db7c6f867c50a9264488797e778
MD5 33c37d21bc6c871cd349394182eb8078
BLAKE2b-256 5c0237f29beced8213bb467c52ad509a5e3b41e6e967de2f6eaf7f8db63bea54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2fd35177dc483ae702f07b86c782f4f4b100a8ce4e7c5778cea016979023d9fd
MD5 eca688091d3d76228b8f9b21bc4fa8bf
BLAKE2b-256 7cea7d98da03d1e9798bb99c3ca4963229150d45c9b7a3a16210c5b4a5f89e07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 455.5 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 56f7d230ec66e799fbfd8350e9544f8a45a4353f1cf40c1fea74c1780f555b8f
MD5 4d19cbffad2ca1ed5936f1c968e4a423
BLAKE2b-256 c5595d9e78de6132079066f5077d9687bf524f764a2f8207e04d8d68790060c6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 429.5 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a1c20c26af48aea984f63f96e5d7af7567c32cb527e33b60a0ef0a6313cf8b03
MD5 7930fd20ebf37409b406ca2788136ae8
BLAKE2b-256 8aab6919d584d8f053a14b15f0bfa3f315b3f548435c2142145459da2efa8673

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5004d727499ecb95f7c9147dd0bfc5b5670f71d355f0bd26d7af2d3af8e07d2f
MD5 8c8112354b1fb9e883d9f63126b0a04e
BLAKE2b-256 da008f057300d9b598a706348abb375b3de9a253195fb615f17c0b2be2a72836

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 62d8a0adcdaf62ee56bfb37737153251ac8e4b27845b3ca065862fb01d99e247
MD5 4d3ffabcd14b0c5743d71c4f364d620a
BLAKE2b-256 a46ef2e6bff550a51fd7c45fdab116a1dab7cc502e5d942956f10fc5c626bb15

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 76484ba17b2832776581b7ab466d094e48eba74cb65a60aea20154dae485e8bd
MD5 38fb83c6cf2b307504e0d88d6d0fcd7b
BLAKE2b-256 4414c8ced38c7dfe80804dec17a671963ccf3cb282f12700ec70b1f689d8de7d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 052bcdd80c1c54b8a18a9ea0cd5e36f473dc8e38d51b804cea34841f677a9971
MD5 53b59e14da6941f89257f2581a65eb6b
BLAKE2b-256 eaeb948903d40505f3a25e53e051488d2714ded3afac1f961df135f2936680f9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b8a5557d5af3f4e3add52a58c4cf2b8e6e59fc56b261768866f5337872d596d
MD5 8f70059f5330f38d641732c593d21223
BLAKE2b-256 8e1b11f9c52fd72b786a47e796e6794883417280cdca8eb1032d8d0939928dfa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf8b0870047900eb1f17f453b4b3953b8ffbf203ef56c2f346780ff930a4d430
MD5 22fa86b1aa42cb5c4778b2928072ecfd
BLAKE2b-256 7aa64c97dc27f9935c0c0aa6e3e10e5b4548823ab5d056636bde374fcd297256

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7c20db99da682f9180fa5195c90b80b159632fb611e8dbccdd99ba0be0970620
MD5 c562bdfb7df6655ff0e3371200f688ec
BLAKE2b-256 6ba5c68e5b46ff0410fe3abfa508651b09372428f27036138beacf4ff6b7cb8c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d812838c109757a11354a161c95708ae4199c4fd4d82b90959b20914c1d097f6
MD5 f83800832967771a9b0a43c12a166567
BLAKE2b-256 57e866e3c32841fc0e26a09539c377aa0f3bbf6deac1957ac5182cf276c5719c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f27b7488144eb5dd9151cf839b195edd1569629d90ace4c5b6b18e4e75d1e63a
MD5 5590c177213ccf3333436b361f9d2413
BLAKE2b-256 fbb740c3219dd2691aa35cf889b4fbb0c00e48a19092928707044bfe92068e01

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 19bb08e56f57c215e9572cd65cb6f8097804412c54081d933997ddde3e5ac579
MD5 a500e79876276a2e055690423662f7c1
BLAKE2b-256 3adecaa61e213ff546b8815aef5e931d7eae1dbe8c840a3f11ec5aa41c5ae462

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ee433e594d7948e760b5c2a78cc06ac219df33b0848793cf9513d486a9f90a52
MD5 5a91ed6921cc32c5345359b3b75b319a
BLAKE2b-256 abfcc755590d6f6d2b5d1565c72d6ee658d3c30ec61acb18964d1e9bf991d9b5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c811612711e01b901e18964b3e5dec0d35525150f5f3f85d0aee2935f059910a
MD5 73a8fcf29326fc47e05e99593ea19e28
BLAKE2b-256 050f85241f0d158da5e24e8ac9d50c0849ed24f882cafc53dc95749ef85eef09

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 990a53b9d6a30b2878789e490758e568b12b4a7fb2527d0c89deb9650b0e5813
MD5 0cb075c126a8f49d75042f8e2d19e064
BLAKE2b-256 8293fa4b1d5ecdc7805bdf0815ef00257db4632ccf0a8bffd44f9fc4657b1677

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f84b53326abf8e56ebc28a35cebf4a0f396a13a76300f500ab11fe0573bf0b52
MD5 5484d64a7421df9ee42e88ac90b9e67a
BLAKE2b-256 5e362d50eba91992d3fe7a6452506ccdab45d03685ee8d8acaa5b289384a7d4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp314-cp314-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 c417f8c2e1137775569297c584a8a7144e5d1237789eae56af4faf1894a0b861
MD5 365d08e6f00d9ee91f669bb112996327
BLAKE2b-256 fec193bb1e35cd0c4665bb422b1ca3d87b588f4bca2656bbe9292b963d5b76a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 450.1 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7897298b3eedc790257fef8a6ec582ca04e9dbe568ba4a9a890913b925b8ea21
MD5 b6d5f432f9387137d605d84c23682d63
BLAKE2b-256 c958afab7f2b9e7df88c995995172eb78cae8a3d5a62d5681abaade86b3f0089

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 423.8 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3194b8cab8dbc882f37c13ef1262e0a3d62064fa97533d3aa124771f7bf1ecee
MD5 b4425a2c2a435828eaab1b4e1ecada08
BLAKE2b-256 db437abbe1de94748a58a71881163ee280fd3217db36e8344d109f63638fe16a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 582770f82513419512da096e8df21ca44f86a2e56e25dc93c5ab4df0fe065bf0
MD5 3c8c1fad822dcbbb7f90dc29dddc5e5b
BLAKE2b-256 99e7cc9f0fdf06cab3ca61e6b62bff9a4b978b8ca736e9d76ddf54365673ab19

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0f1338b61ea66f4757a0544ed8a02ccbf60e38d9cfb3225888888dd4475ebb96
MD5 2a2d79ba4715aa3f93c7111dd2f0a365
BLAKE2b-256 757dfbfd59ab2a83fe2578ce79ac3db49727b81e9f4c3376217ad09c03c6d279

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 12f5d820fadc5848d4559ea838aef733cf37ed2a1103bba148ac2f5547c14c29
MD5 e529ae8814183a06e92465a519bbf033
BLAKE2b-256 466a8acf6c57e03b6fdcc8b4c06392e66abaff3213ea275e41db3edb20738d91

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 34d8af6391c5f2e69749d7f037b614b8c5c42093c251f336bdbfa4b03c57d6c4
MD5 bc25613f457a087b1a8853bf7e8bc76a
BLAKE2b-256 476d15ccf4ef3c254d899f62580e0c7fc717014f4d14a3ac31771e505d2c736c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cfe6285ef99e7ee51cef20609be2bc1dd0e8446462b71c9db8bb296ba632810a
MD5 2c55429f16f991f60b073e19cc6a4ff7
BLAKE2b-256 7195b829eb5f8ac1ca1d8085bb8df614c8acf3ff32e23ad5ad1173c7c9761daa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bf635c3476f4119b940cc8d94ad454cbe0c377e61b4527f0192aabeac1e9370
MD5 57027ada5e7a6b479c8927c7bfe4984d
BLAKE2b-256 d1120bac4d29231981e3aa234e88d1931f6ba38135ff4c2cf3afbb7895527630

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 703ad3f742fc81e543638a7bebddd35acadaa0004a5e00535e795f4b6f2c25ca
MD5 3436e51d46bd82da26497c255b576aaf
BLAKE2b-256 6ca74fde058f1605c34a219348a83a99f14724cc64e68a42480fc03cf40f9ea3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d169c47e40c911f728439da853b6fd06da83761012e6e76f11cb62cddae7282b
MD5 3a4ccfc209e2c0b8eb5962b76e41b41b
BLAKE2b-256 1e0245b388b49e37933f316e1fb39c0de6fb1d77384b0c8f4cf6af5f2cbe3ea6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2117be9883501eaf95503bd313eb4c7a23d567edd44014ba15835a1e9ec6d852
MD5 e2bf9788853d3be7f21dbdf2fd2475e5
BLAKE2b-256 05d7a48e4989bd76cc70600c505bbdd0d90ca1ad7f9053eceeb9dbcf9345a9ec

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 49ce7525853a981fc35d380aa2353536a01a9ec1b30979ea4e35966316cace7e
MD5 2857d9f95d31973140f9e0436b258845
BLAKE2b-256 ecac5095f12a79c7775f402cfc3e83651b6e0a92ade10ddf7f2c78c4fed79f71

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 55ca0e95a3905f62f00900255ed807c580775174252999286f283e646d675a49
MD5 3c5edb01b3d70500da9905c26c009a1a
BLAKE2b-256 e65976c421cc4a75bb1aceadb92f20ee6f05a990aa6960c64b59e8e0d340e3f5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4aa995b9156ae499393d949a456a7ab0b994a8241a96db73a3b73c7a090eff6a
MD5 0930c09a79946f3c51784cdfbabd8be0
BLAKE2b-256 37b40e440481a0e77a551d6c5dcab5d11f1ff6b2b2ddb8dedc24f54f5caad732

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 564b36512a7da3b386143c611867e3f7cfb249300a1bf60889bd9985da67ab77
MD5 69e21ba391f922aa25dfd887c8cefa39
BLAKE2b-256 fd79ef0d477c771a642d1a881b92d226314c43d3c74bc674c93e12e679397a97

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 059978d2fddc462e9211362cbc8446747ecd930537fa559d3d25c256f032ff54
MD5 916ea1a7291a9d08f873407601d61b65
BLAKE2b-256 13181ac95683e1c1d48ef4503965c96f5401618a04c139edae12e200392daae8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 00243e51f16f6ec0fb021659d4af92f675f3cf9f9b39efd142aa3ad641d8d1e6
MD5 15c75d8baec3118e092663472c5ea830
BLAKE2b-256 862cac53efdc9c10e41399acc2395af98f835b86d0141d5c3820857eb9f6a14a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 451.4 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0a2be20eb23888df130214b91c262a90e2de1553d6fb7de9e9010cec994c0ff2
MD5 5eb91df4e46b69bc212a77ecfb26a006
BLAKE2b-256 8b6846dd042d7bc62eab30bafdb8569f55ef125c3a88bb174270324224f8df56

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 424.6 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 682d2e434ff2f1108314ff7f056ce44e457f12dbed0249b24e106e385cf154b9
MD5 81577545d27dff49a5a1248e39b339a6
BLAKE2b-256 1fe529cca547990a59ea54f0674fc01de98519fc628cfceeab6175711750eca7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 222c828243b4789d79a706a876910f656fad4381661691220ba57b2ab4547865
MD5 8bb0f578f5edb2ba82b2fd895825094b
BLAKE2b-256 3de69d30554e7f1e700bfeae4ab6b153d5dc7441606a9ec5e929288fa93a1477

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d871f6a30d43e32fc9252dc7b9febe1a042b3ff3908aa83868d7cf7c9579a59b
MD5 e2f0ce7a2c309be406b2dd263ca7cd52
BLAKE2b-256 39fae82c9445e40b50e46770702b5b6ca2f767966d53e1a5eef03583ceac6df6

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ce887c5e54411d607ee0959cac15bb31d506d86a9bcaddf0b7e9d63325a7a802
MD5 fb3c0dbf66690ba98059113f9dd9ee3f
BLAKE2b-256 0e488d6f4757a24c02f0a454c043556593a00645d10583859f7156db44d8b7d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a533873a7a4ec2270fb362ee5a0d3b98752e4e1dc9042b257cd54545a96bd8ed
MD5 079548e3e975bd73cb64e20e011bdcd5
BLAKE2b-256 fbc05911856fef9e40fd1ccbb8c54a90116875d5753a92c1cac66ce2059b390d

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b4174fcec98601f0cfdf308ee29a6ae53c55f14359e848dab4e94009112ee7d
MD5 a5a0e1a6c52a1c6e459dd6dea7388628
BLAKE2b-256 56cbcaa32c2ccaeca0a3dc39129079fd2ad02f9406c3a5f7924340435b87d4cd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9f3546b503975a69b547c9fd1582cad10ede1ce6f3e313a2f547c73a3d7814f
MD5 89e62fd950497a6a24350a07667f93b8
BLAKE2b-256 3856e23d9c3e13006e599fdce3851517c70279e177871e3e567d22cf3baf5d6c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 469167d5372f5bb3aedff4fc53035d593884fff2617a75317740e885acd48b04
MD5 8fde00b579ece098e4a00262b419558f
BLAKE2b-256 ae3d2ec4b934f85856de1c0c18e90adc8902adadbfac2b3c0b831bfeb7214fc8

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e66c57416352f36bf98f6641ddadd47c93740a22af7150d3e9a1ef6e983f9a8
MD5 ebb7cfee53c858a471cfd87fa9200c05
BLAKE2b-256 1451d0c1701a79fcb0109cff5304da16226581569b89a282d8e7f1549a7e3ec0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a6d9487b9471ec36b0faedf52228cd732e89be0a2bbd649af890b5e2ce422353
MD5 374b56aa2cb4460d80d6e60b34defad0
BLAKE2b-256 df6a1fc1ad71d130a30f7a207d8d958a41224c29b834463b5185efb2dbff6ad4

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e04ab827ec4f775817736b20cdc8350f40327f9b598dec4e18c9ffdcbea88a93
MD5 b9042244626669a1fa52e37642dff705
BLAKE2b-256 33e227c92d205b9e8cee7661670e8e9f187931b71e26d42796b153d2a0ba6949

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 4af1f8877ca46ecdd0bc0d4a6b66d4b2bddc84a79e2e8366bc0d5308e76bceb8
MD5 794dd06975b88024cb9867da6e40f7ac
BLAKE2b-256 3dc6dd6b86ddb852a7fdbcdc7a45b6bdc80178aef713c08279afcaee7a5a9f07

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c32ada0abb4bc94c30be2b681c42f058ab104d048da6f0148280a51ce98add8c
MD5 e49142109d9d448d1bb55460af600fb6
BLAKE2b-256 3359752640c2b86ca987fe5703a01733b00d375e6cd2392bc7574489934e64e5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 475bd56492ce5f4cffe32b5533c6533ee0c406d1d0e6924879f83adcf51da0ae
MD5 be25a4d56d88d631c4f355b682a129c8
BLAKE2b-256 7415ab8600ef6dc1dcd599009a81acfed2ea407037e654d32e47e344e0b08c34

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 97891a23d7fd4e1afe9c2f4473e04595e4acb18e4733b910b6577b74e7e21985
MD5 64081ca7fcb11ca94dddb4318334a21d
BLAKE2b-256 9f202f1d3ee06ee94eafe516810705219bff234d09f135d6951661661d5595ae

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1c272a9a18a5ecc48a7101882230046b83023bb2a662050ecb9bfcb28d9ab53a
MD5 94e4eedb51bbcc61e22e770a1dd71622
BLAKE2b-256 3a957e8bdfa6e79099a086d59d42589492f1fe9d29aae3cefb58b676015ce278

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 454.1 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0f19f7798996d4458c669bd770504f710014926e9970f4729cf55853ae200469
MD5 b461ff9ce7506cb7c2960342bc942cb8
BLAKE2b-256 3ebd485d98b372a2cd6998484a93ddd401ec6b6031657661c36846a10e2a1f6e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 429.8 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2f9d9ea547618d907f2ee6670c9a951f059c5994e4b6de8dcf7d9747b420c820
MD5 f463e898d4e42b719c6f82317ebd5b84
BLAKE2b-256 ad53e124dcbd64e6365602f3493fe37a11ca5b7ac0a40822a6e2bc8260cd08e0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77da5305a410910218b99f2a963092f4277d8a9c1f429c1ff1b026d1826bd0b6
MD5 1129b27ebf5d73ca1d9ad4ede152c98c
BLAKE2b-256 c5bba3adfe2af76e1ee9e3b5464522004b148b266bc99d7ec424ca7843d64a3c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6475e42ef92717a678bfbf50885a682bb360a6f9c8819fb1a388d98198fdcb80
MD5 c4b66622dae041ef7a19d287a6612a5b
BLAKE2b-256 240e87922c8cfdbd09f5e2197e9d87714a98c99c423560d44739e3af55400fe3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 00fdfe370cffede3163ba9d3f190b32c0cfc8c774f6f67395683d7b0e48cdb8a
MD5 292d316f0a803529358771bd39e173e8
BLAKE2b-256 6664b9cd03cdbb629bc492e4a744fbe96550a8340b0cd7a0cc4a9c90cfecd8d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3c11fa5dd2ef773a8a5a6daa40243d83b450915992eab021789498dc87acc114
MD5 3f0b9d91cdd17d951a459694b2e0abe2
BLAKE2b-256 2a71769e249e6625372c7d14be79b8b8c3b0592963a09793fb3d36758e60952c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bfe824d6707a5dc3c5676685f624bc0c63c40d79dc0239a7fd6c034b98c25ebe
MD5 8768133f2f50e505aca30b0dfd0fefc0
BLAKE2b-256 6c61ca6ad390128d964a08554fd63d6df5810fb5fbc7e599cb9e617f1729ae19

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ca762140159417a6bbc959ca1927f6949711851e56f2181ddfe8d63512b5ad
MD5 3ef4dbd283d95ccd9be66d9f8cad352a
BLAKE2b-256 1c19a84a0e97b2da2224c8b85e1aef5cac834d07b2903c17bff1a6bdbc7041d2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 7ddedba3d0043349edc79df3dc2da49c72b06d59a45a42c1c8d987e6b8d175b8
MD5 d752830662384ed5289f5c057a8178ab
BLAKE2b-256 e6dfaad5dce268f9d4f29759c3eeb5fb5995c569d76abb267468dc1075218d5b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc6d5fc5edbfb8041d9607f6a417997fa4d02de78284d386bea7ab767b5ea4f3
MD5 1d232beaf983992efa65fbb0f363cafa
BLAKE2b-256 516d7b1e020fe1d2a2be7cf0ce5e35922f345e3507cf337faa1a6563c42065c1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6c333a2385d2a6298265f4b3e960590f787311b87f6b5e6e21bb8375914ef504
MD5 abb7cb79958bff527e24f39480592ec5
BLAKE2b-256 51b6a3753fe86249eb441768658cfc00f8c4e0913b255c13be00ddb8192775e1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ca8313cb852af788c78d5afdea24c40172cbfff8b35e58b407467732fde20390
MD5 52dca7b2e8a727feb160b3bb33bf7b65
BLAKE2b-256 651ec8aa3c293a0e8b18968b1b88e9bd8fb269eb67eb7449f504a4c3e175b159

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 7972c82bed87d7bd8e374b60a6b6e816d75ba4f7c2627c2d14eed216e62738e1
MD5 54a71166eb8189428f5cdc08a79cf614
BLAKE2b-256 f97026b2c97e8fa68644aec43d788940984c5f3b53a8d1468d5baaa328f809c9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aab715b1a0c37f7f11f9f1f579c6fbaa51ef569e47e3c0a4644fba46077a9409
MD5 2ab1336f9a63f429715111d4508ee2f5
BLAKE2b-256 fe4dee8913c0d2c7da37fdc98673a342b51611eaa0871682b37b8430084e35b5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e6a38366f7f0d0f6ed7a1198055150c52fda552b107dad4785c0852ad7685d1
MD5 3c3036d79a3c74e9ea5268e4c0bb63fc
BLAKE2b-256 89a6e1c061b079fed04ffd6777950c82f2e8246fd08b7b3c4f56fdd47f697e5a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4696665b2713021c6eba3e2b882a86013763b442577fe5d2056a42111e732eca
MD5 356c62cfe11118c2afb1d6ee7c2fbea0
BLAKE2b-256 aef92d6d93fd57ab4726e18a7cdab083772eda8302d682620fbf2aef48322351

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 99eb94e97a42367fef5fc11e28cb2362809d3e70837f6e60557816c7106e2e20
MD5 aa7381524782e40d0a4ae806a2449574
BLAKE2b-256 b1dbdf80cacac46cd548a736c5535b13cc18925cf6f9f83cd128cf3839842219

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 453.0 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8d877aa60d80715b2afc565f0f1aea66565824c229a2d065b31670e09fed6d7
MD5 31a7ab7a5c6dba4c29d9e059a1a3577a
BLAKE2b-256 c438f5385cb79afa1f31bcaa3625a9e8d849b782edaeac09f894f46439e006a1

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 430.2 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3b64f22fbb6dcd5663de5ef2d847a5638646ef99112503e6f7704bdecb0d1c4d
MD5 8e8f306ad853d6288edca9cdea49b199
BLAKE2b-256 23ba47fd065510a8bfab5d5f6e1d97c0de672447c0a941c5021298bd7210afc3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea6df292013c9f050cbf3f93eee9953d6e5acd9e64a0bf4ca16404bfd7aa9bcc
MD5 978bae52300c2dedd6c3b46742b67536
BLAKE2b-256 09f1e8f70462848b74d49b3115050623ecbd697889713c2c93c96616da56b2de

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5ae3a19949a27982c7425a7a5a963c1268fdbabf0be15ab59448cbcf0f992519
MD5 47026301566cb3eaf2e0976709c0fe44
BLAKE2b-256 9324345166f9c4cd2f5cc1d2173131998ee4adab0db8729126db32a7f91ed400

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 cd45eb70eca63f41bb156b7dffbe1a7760153b69892d923bdb79a74099e2ed90
MD5 ca7945f9262c865f6817d53c7099cb96
BLAKE2b-256 a4b953c1df2991686f947a9651265757ea12c4afc29b351a249b73a0fc81dd3c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2d71ca30257ce756e37a6078b1dff2d9475fee13609ad831eac9a6531bea903b
MD5 e9dd4f406fb7795f19b2159104349c2b
BLAKE2b-256 87e21d1f202f43c8be1956f05196159064cc05dc6842a33c1397cbb1b99610af

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 90b570f1a146181c3d6ae8f755de66227ded49d30d050479b5ae07710f7894c5
MD5 c589e20931231bc086f256fa1b0173a8
BLAKE2b-256 bfb15ff5fcaecccdcd5be7ff717cbde6e630760a8130e89167c3aa05b6b57707

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84912962071087286333f70569362e10793f73f45c48854e6859df11001eb2d3
MD5 93b24bbed24bf2168f2e92f05e222c35
BLAKE2b-256 478971cbda30f0900ab16084769960c467a355d6b1db51668fbb821c4a4ad5ed

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 564be41e85318403fdb176e9e5b3e852d528392f42f2c1d1efcbeeed481126d7
MD5 441407d169dd295b00726f7c29b835c8
BLAKE2b-256 f638348c4343052a400968dbf2051ee3dc222bdefd95af5874cf0f04cc7a8c92

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72714919ed9b90f030f761c20670e529c4af96c31bd000917dd0c9afd1afb731
MD5 4ef82870740aadc42c16a18ee3bf7c5e
BLAKE2b-256 f9ca135c21e85ffeff66b80ecd8a647ca104f2e5a91c37dc86649244ddbf87ab

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a4dc0b83e25267f42ef065ea57653de4365b56d7bc4e4cfc94fabe56998f8ee6
MD5 4ab44fd11a3da47fc79a95ce1a82ca3d
BLAKE2b-256 88d7e8a5ba2bbd929ed587b2a8ea9390765daede2d8cd28dfae3a0773c6d3fbc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 10b3f01d5aeb632adaaf39c5e93f040a550464a768d54c514050c635adcbb9d0
MD5 34878739521da13a53f844383aec0299
BLAKE2b-256 19add96d7d7023e7f5215b8737cad21a7637f6d9d10fbfbfef0435d0277f71a2

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 eeea0cdd2f687e210c8f605f322d7b0300ba55145014a5dbe98bd4be6fff1f6c
MD5 6eb42367e753b279bea8be7e61f82a01
BLAKE2b-256 4416db236671ec3758e3a6be6977009e74016470368012a58fea4b3799546549

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48fcdd5bc771cbbab8ccc9588b8b6447f6a30f9fe00898b1a5107098e00d6793
MD5 918abfa0a24eb288c90fc449da9acbd3
BLAKE2b-256 d3d556c622ad3bd57ff4adc2b701f298dcc0408735a8af998cec1c66a9ce224e

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4676b978a9711531e7cea499d4cdc0794c617a1c0579310ab46c9fdf5877702
MD5 d889c7efdd87e32179a689e582b88e76
BLAKE2b-256 e1db5d65af7cbe5f302e23b1ea5cfc156cd0c7738a0d2db531a3837d2754de94

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 240f99f88a9a6beb53ebadac79a2e3417247aa756202ed234b1dbae13d248092
MD5 4d7056cb73c762d56cb27fabffebf37d
BLAKE2b-256 aa02f1eac06d78997e015030130ccf1c7cf864a919f97d77ff27e89c82fc3186

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ca69ec38adf5cadcc21d0b25e2144f6a25b7db7bea7e730bac25075bc305eff0
MD5 f7ff3a5283661f4f319ae3e3cccde07b
BLAKE2b-256 2518a3a9c9b7c8d400f71d1ff93c3e1520a5d53dba170f829ca9c6b2b070677b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: aiohttp-3.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 454.0 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6b9697d15231aeaed4786f090c9c8bc3ab5f0e0a6da1e76c135a310def271020
MD5 b7f207905ee4651ad1f9250c1a1ad193
BLAKE2b-256 e6e6f49ed1869b961f41aa0421d35401dd4ee4c8ad74b3da618f7bde1a8ddc29

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiohttp-3.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 430.9 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf7a4b976da219e726d0043fc94ae8169c0dba1d3a059b3c1e2c964bafc5a77d
MD5 bbd8b3e4c94f3a297879b08dbfaf7db7
BLAKE2b-256 c4e4455240c0433ebc7c9400c6014d5e4d09509d0aeddb8c9d22aff1f3d40500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4b14bfae90598d331b5061fd15a7c290ea0c15b34aeb1cf620464bb5ec02a602
MD5 e95f2dd710c8fa31b3e0d0d76e270728
BLAKE2b-256 63b2ee8c8bae8d2f17a146089bba8130cf18eb0e929d4c5262beae944da82b3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 19ba8625fa69523627b67f7e9901b587a4952470f68814d79cdc5bc460e9b885
MD5 3a04fa1298ce16a784fde9616a4fbf2a
BLAKE2b-256 fd0906b8b45874ba26d7b012b9b21b6593d9a7a0a4e3375da83c74eb044caafa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 ea01ffbe23df53ece0c8732d1585b3d6079bb8c9ee14f3745daf000051415a31
MD5 29d01df8b2be6036f2d16fc4c04a6a9a
BLAKE2b-256 4efa221c09563a11ce0d22408bf41e4bd8385f2093a22ceb60eeddd1f5019bab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1ccedfe280e804d9a9d7fe8b8c4309d28e364b77f40309c86596baa754af50b1
MD5 b73dfc13e3982d14f2fbe73cc5101731
BLAKE2b-256 b52aca6f2ac71b6c7e6f93ad42616e0a75660d8b9400977053126b7eaeaa5132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf2b60b65df05b6b2fa0d887f2189991a0dbf44a0dd18359001dc8fcdb7f1163
MD5 604df91a942d8252fadc66f98f4acd5b
BLAKE2b-256 55276fa2a583d45f711cf2f719f0d69274739a94f3b6d3deddfd19106d2ef3b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62fd54f3e6f17976962ba67f911d62723c760a69d54f5d7b74c3ceb1a4e9ef8d
MD5 7f88b3fb1e09f9c28fa167754207b627
BLAKE2b-256 a69ac6b4eb325f473f3a117fab90008348fc7094ccbaeeedf811d89738454996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 ac90cfab65bc281d6752f22db5fa90419e33220af4b4fa53b51f5948f414c0e7
MD5 db061df3272257a73944f669718fda4d
BLAKE2b-256 ac664d2c26a8a86b81a4493beb222457c6cba9f3853b6efa476a97edb4d52bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.13.0-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.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a51839f778b0e283b43cd82bb17f1835ee2cc1bf1101765e90ae886e53e751c
MD5 cfddf39b8a363925bbc4f28404b3a9c1
BLAKE2b-256 51649951b85fdf53aea1e9f41c715e9f4fc3e60f430fb58e0a46bc7837688e39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0f735e680c323ee7e9ef8e2ea26425c7dbc2ede0086fa83ce9d7ccab8a089f26
MD5 cc7ec875ac2e3378b70ebee704283faf
BLAKE2b-256 f16a64f23ffd040409ac148a389be5c377f8edc4ab2aebdd601dbe786a30e05d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 62a3cddf8d9a2eae1f79585fa81d32e13d0c509bb9e7ad47d33c83b45a944df7
MD5 52721d6f4aa2f5f9505159bca58a708c
BLAKE2b-256 a53d31f310c67b33e30d1f2fe11bf5aeb82d178189e8abfcf696bed69a9713cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 3b1eb9871cbe43b6ca6fac3544682971539d8a1d229e6babe43446279679609d
MD5 83f7ebea33254907dc2fad3d42ef348b
BLAKE2b-256 4972f3a894182b625c7f242ab90ff95d6fbf4319d39dc854568a33c8768220ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df46d9a3d78ec19b495b1107bf26e4fcf97c900279901f4f4819ac5bb2a02a4c
MD5 6a1d8de5cbffd191febf714609587681
BLAKE2b-256 1f894dd10ab758ba0dee025fc53345d24f5943f4d8741c1064ed3e92ca3274a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f91e8f9053a07177868e813656ec57599cd2a63238844393cd01bd69c2e40147
MD5 f0e6ca56e16ad987c9b275a67244ea47
BLAKE2b-256 e170f51f30694aa4f9de3fad5b254609c263bf873a36dfa36f0370b37acb6b18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c2c4c9ce834801651f81d6760d0a51035b8b239f58f298de25162fcf6f8bb64
MD5 81572011dedf4ab456f5cb4fb44fac8f
BLAKE2b-256 b7bcce07cc194f416f2d2539fec1237507b97496752f350738a051258be3dc08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiohttp-3.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fcc425fb6fd2a00c6d91c85d084c6b75a61bc8bc12159d08e17c5711df6c5ba4
MD5 c9ae9966f99ed60c77b5851f88f23785
BLAKE2b-256 40266625e909ea770910d9901cb04336d0280a5a578daa352434eba5e482a1eb

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

4.0.0a1

9 files

4.0.0a0

22 files

3.14.3

119 files

3.14.2

119 files

3.14.1

119 files

3.14.0

119 files

3.13.5

120 files

3.13.4

120 files

3.13.3

120 files

3.13.2

120 files

3.13.1

120 files

This release

3.13.0 This release

120 files

3.12.15

86 files

3.12.14

86 files

3.12.13

86 files

3.12.12

86 files

3.12.11

86 files

3.12.10

86 files

3.12.9

86 files

3.12.8

86 files

3.12.7

86 files

3.12.6

86 files

3.12.4

86 files

3.12.3

86 files

3.12.2

86 files

3.12.1

86 files

3.12.0

86 files

3.11.18

81 files

3.11.17

81 files

3.11.16

81 files

3.11.15

81 files

3.11.14

81 files

3.11.13

81 files

3.11.12

81 files

3.11.11

76 files

3.11.10

76 files

3.11.9

76 files

3.11.8

76 files

3.11.7

76 files

3.11.6

76 files

3.11.5

76 files

3.11.4

76 files

3.11.3

76 files

3.11.2

76 files

3.11.1

76 files

3.11.0

76 files

3.10.11

91 files

3.10.10

91 files

3.10.9

91 files

3.10.8

91 files

3.10.7

91 files

3.10.6

91 files

3.10.5

91 files

3.10.4

76 files

3.10.3

76 files

3.10.2

76 files

3.10.1

76 files

3.10.0

76 files

3.9.5

76 files

3.9.4

76 files

3.9.3

76 files

3.9.2

76 files

3.9.1

76 files

3.9.0

76 files

3.8.6

87 files

3.8.5

87 files

3.8.4

87 files

3.8.3

87 files

3.8.2

87 files

3.8.1

72 files

3.8.0

72 files

3.7.4.post0

37 files

3.7.4

37 files

3.7.3

37 files

3.7.2

33 files

3.7.1

33 files

3.7.0

33 files

3.6.3

13 files

3.6.2

12 files

3.6.1

13 files

3.6.0

14 files

3.5.4

22 files

3.5.3

22 files

3.5.2

16 files

3.5.1

22 files

3.5.0

22 files

3.4.4

22 files

3.4.3

20 files

3.4.2

22 files

3.4.1

22 files

3.4.0

22 files

3.3.2

15 files

3.3.1

15 files

3.3.0

9 files

3.2.1

15 files

3.2.0

15 files

3.1.3

15 files

3.1.2

15 files

3.1.1

15 files

3.1.0

15 files

3.0.9

15 files

3.0.8

14 files

3.0.7

11 files

3.0.6

15 files

3.0.5

15 files

3.0.4

15 files

3.0.3

15 files

3.0.2

15 files

3.0.1

15 files

3.0.0

11 files

2.3.10

22 files

2.3.9

16 files

2.3.8

16 files

2.3.7

22 files

2.3.6

22 files

2.3.5

22 files

2.3.4

22 files

2.3.3

22 files

2.3.2

22 files

2.3.1

22 files

2.3.0

13 files

2.2.5

13 files

2.2.4

13 files

2.2.3

13 files

2.2.2

13 files

2.2.1

13 files

2.2.0

13 files

2.1.0

13 files

2.0.7

8 files

2.0.6

13 files

2.0.5

13 files

2.0.4

13 files

2.0.3

13 files

2.0.2

13 files

2.0.1

13 files

2.0.0

13 files

1.3.5

7 files

1.3.4

7 files

1.3.3

13 files

1.3.2

13 files

1.3.1

11 files

1.3.0

9 files

1.2.0

9 files

1.1.6

9 files

1.1.5

9 files

1.1.4

9 files

1.1.3

9 files

1.1.2

9 files

1.1.1

9 files

1.1.0

9 files

1.0.5

9 files

1.0.3

9 files

1.0.2

9 files

1.0.1

9 files

1.0.0

9 files

0.22.5

8 files

0.22.4

9 files

0.22.3

9 files

0.22.2

9 files

0.22.1

9 files

0.22.0

9 files

0.21.6

5 files

0.21.5

5 files

0.21.4

5 files

0.21.2

5 files

0.21.1

5 files

0.21.0

5 files

0.20.2

1 file

0.20.1

1 file

0.20.0

1 file

0.19.0

1 file

0.18.4

1 file

0.18.3

1 file

0.18.2

1 file

0.18.1

1 file

0.18.0

1 file

0.17.4

1 file

0.17.3

1 file

0.17.2

1 file

0.17.1

1 file

0.17.0

1 file

0.16.6

1 file

0.16.5

1 file

0.16.4

1 file

0.16.3

1 file

0.16.2

1 file

0.16.1

1 file

0.16.0

1 file

0.15.3

1 file

0.15.2

1 file

0.15.1

1 file

0.15.0

1 file

0.14.4

1 file

0.14.3

1 file

0.14.2

1 file

0.14.1

1 file

0.14.0

1 file

0.13.1

2 files

0.13.0

2 files

0.12.0

1 file

0.11.0

2 files

0.10.2

2 files

0.10.1

2 files

0.10.0

2 files

0.9.3

2 files

0.9.2

2 files

0.9.1

1 file

0.9.0

1 file

0.8.4

1 file

0.8.3

1 file

0.8.2

1 file

0.8.1

1 file

0.8.0

1 file

0.7.3

1 file

0.7.2

1 file

0.7.1

1 file

0.7.0

1 file

0.6.5

1 file

0.6.4

1 file

0.6.3

1 file

0.6.2

1 file

0.6.1

1 file

0.6.0

1 file

0.5.0

1 file

0.4.4

1 file

0.4.3

1 file

0.4.2

1 file

0.4.1

1 file

0.4

1 file

0.3

1 file

0.2

1 file

0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page