Skip to main content
aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version Latest Read The Docs Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

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

gitter chat https://gitter.im/aio-libs/Lobby

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

Release files for aiohttp 3.9.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aiohttp 3.9.3
File Size Uploaded
aiohttp-3.9.3.tar.gz 7.5 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for aiohttp 3.9.3
File
aiohttp-3.9.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
aiohttp-3.9.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
aiohttp-3.9.3-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
aiohttp-3.9.3-cp312-cp312-musllinux_1_1_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.9.3-cp312-cp312-musllinux_1_1_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-32 Details
aiohttp-3.9.3-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
aiohttp-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
aiohttp-3.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
aiohttp-3.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
aiohttp-3.9.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
aiohttp-3.9.3-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
aiohttp-3.9.3-cp312-cp312-macosx_10_9_universal2.whl CPython 3.12 CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.9.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
aiohttp-3.9.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
aiohttp-3.9.3-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
aiohttp-3.9.3-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.9.3-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
aiohttp-3.9.3-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
aiohttp-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
aiohttp-3.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
aiohttp-3.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.9.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
aiohttp-3.9.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
aiohttp-3.9.3-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.9.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
aiohttp-3.9.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
aiohttp-3.9.3-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
aiohttp-3.9.3-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.9.3-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
aiohttp-3.9.3-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
aiohttp-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
aiohttp-3.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
aiohttp-3.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.9.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
aiohttp-3.9.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
aiohttp-3.9.3-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.9.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
aiohttp-3.9.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
aiohttp-3.9.3-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
aiohttp-3.9.3-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.9.3-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
aiohttp-3.9.3-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
aiohttp-3.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
aiohttp-3.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
aiohttp-3.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
aiohttp-3.9.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
aiohttp-3.9.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
aiohttp-3.9.3-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.9.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
aiohttp-3.9.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
aiohttp-3.9.3-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
aiohttp-3.9.3-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.9.3-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
aiohttp-3.9.3-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
aiohttp-3.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
aiohttp-3.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
aiohttp-3.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
aiohttp-3.9.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
aiohttp-3.9.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
aiohttp-3.9.3-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 82.6 MB

Release files / aiohttp-3.9.3.tar.gz

Download URL aiohttp-3.9.3.tar.gz
Size 7.5 MB
Tags Source
SHA-256 checksum
How to use checksums
90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7
BLAKE2b-256 checksum
How to use checksums
18931f005bbe044471a0444a82cdd7356f5120b9cf94fe2c50c0cdbf28f1258b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-win_amd64.whl

Download URL aiohttp-3.9.3-cp312-cp312-win_amd64.whl
Size 363.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b791a3143681a520c0a17e26ae7465f1b6f99461a28019d1a2f425236e6eedb5
BLAKE2b-256 checksum
How to use checksums
c2bfdb1fc240d89cde43fd7bb11c1c3f9156dd184881a527ad8b0f9e8f4d434a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-win32.whl

Download URL aiohttp-3.9.3-cp312-cp312-win32.whl
Size 342.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
38f307b41e0bea3294a9a2a87833191e4bcf89bb0365e83a8be3a58b31fb7f38
BLAKE2b-256 checksum
How to use checksums
2d8c8e0f346927177d2c25570bbea9975d3a99556753ee53ab55386149bbb1e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.9.3-cp312-cp312-musllinux_1_1_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
ff30218887e62209942f91ac1be902cc80cddb86bf00fbc6783b7a43b2bea26f
BLAKE2b-256 checksum
How to use checksums
784c579dcd801e1d98a8cb9144005452c65bcdaf5cce0aff1d6363385a8062b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-musllinux_1_1_s390x.whl

Download URL aiohttp-3.9.3-cp312-cp312-musllinux_1_1_s390x.whl
Size 1.4 MB
Tags CPython 3.12 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
c3452ea726c76e92f3b9fae4b34a151981a9ec0a4847a627c43d71a15ac32aa6
BLAKE2b-256 checksum
How to use checksums
64df5cddb631867dbc85c058efcb16cbccb72f8bf66c0f6dca38dee346f4699a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.9.3-cp312-cp312-musllinux_1_1_ppc64le.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
938a9653e1e0c592053f815f7028e41a3062e902095e5a7dc84617c87267ebd5
BLAKE2b-256 checksum
How to use checksums
72091f36849c36b7929dd09e013c637808fcaf908a0aa543388c2903dbb68bba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-musllinux_1_1_i686.whl

Download URL aiohttp-3.9.3-cp312-cp312-musllinux_1_1_i686.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
e5e46b578c0e9db71d04c4b506a2121c0cb371dd89af17a0586ff6769d4c58c1
BLAKE2b-256 checksum
How to use checksums
03200a43a00edd6a401369ceb38bfe07a67823337dd26102e760d3230e0dedcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.9.3-cp312-cp312-musllinux_1_1_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
ba39e9c8627edc56544c8628cc180d88605df3892beeb2b94c9bc857774848ca
BLAKE2b-256 checksum
How to use checksums
0e91fdd26fc726d7ece6bf735a8613893e14dea5de8cc90757de4a412fe89355
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
504b6981675ace64c28bf4a05a508af5cde526e36492c98916127f5a02354d53
BLAKE2b-256 checksum
How to use checksums
fd4f5c6041fca616a1cafa4914f630d6898085afe4683be5387a4054da55f52a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b955ed993491f1a5da7f92e98d5dad3c1e14dc175f74517c4e610b1f2456fb11
BLAKE2b-256 checksum
How to use checksums
efd16aea10c955896329402950407823625ab3a549b99e9c1e97fc61e5622b8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.4 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
dc9b311743a78043b26ffaeeb9715dc360335e5517832f5a8e339f8a43581e4d
BLAKE2b-256 checksum
How to use checksums
6f8258ceac3a641202957466a532e9f92f439c6a71b74a4ffcc1919e270703d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
52df73f14ed99cee84865b95a3d9e044f226320a87af208f068ecc33e0c35b96
BLAKE2b-256 checksum
How to use checksums
e91864c65a8ead659bae24a47a8197195be4340f26260e4363bd4924346b9343
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.9.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a6fe5571784af92b6bc2fda8d1925cccdf24642d49546d3144948a6a1ed58ca5
BLAKE2b-256 checksum
How to use checksums
e2114bd14dee3b507dbe20413e972c10accb79de8390ddac5154ef076c1ca31a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL aiohttp-3.9.3-cp312-cp312-macosx_11_0_arm64.whl
Size 389.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ee43080e75fc92bf36219926c8e6de497f9b247301bbf88c5c7593d931426679
BLAKE2b-256 checksum
How to use checksums
98e46e56f3d2a9404192ed46ad8edf7c676aafeb8f342ca134d69fed920a59f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-macosx_10_9_x86_64.whl

Download URL aiohttp-3.9.3-cp312-cp312-macosx_10_9_x86_64.whl
Size 393.7 kB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
770d015888c2a598b377bd2f663adfd947d78c0124cfe7b959e1ef39f5b13869
BLAKE2b-256 checksum
How to use checksums
5f75b3f077038cb3a8d83cd4d128e23d432bd40b6efd79e6f4361551f3c92e5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp312-cp312-macosx_10_9_universal2.whl

Download URL aiohttp-3.9.3-cp312-cp312-macosx_10_9_universal2.whl
Size 592.5 kB
Tags CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
38a19bc3b686ad55804ae931012f78f7a534cce165d089a2059f658f6c91fa60
BLAKE2b-256 checksum
How to use checksums
02feb15ae84c4641ff829154d7a6646c4ba4612208ab28229c90bf0844e59e18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-win_amd64.whl

Download URL aiohttp-3.9.3-cp311-cp311-win_amd64.whl
Size 365.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5fe9ce6c09668063b8447f85d43b8d1c4e5d3d7e92c63173e6180b2ac5d46dd8
BLAKE2b-256 checksum
How to use checksums
a359cd5e456835df696e6307c8b045acfada1557ac822d527c27bb33c1308091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-win32.whl

Download URL aiohttp-3.9.3-cp311-cp311-win32.whl
Size 345.2 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
50fca156d718f8ced687a373f9e140c1bb765ca16e3d6f4fe116e3df7c05b2c5
BLAKE2b-256 checksum
How to use checksums
a889f35fbdcd20166eb2ab39de874712310866e2e8349c4a4dfc0b82fe5b8a67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.9.3-cp311-cp311-musllinux_1_1_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
1f5a71d25cd8106eab05f8704cd9167b6e5187bcdf8f090a66c6d88b634802b4
BLAKE2b-256 checksum
How to use checksums
42ea720d6d99462d91c7ff8a1d5602fbad2c1e9af232014fb8ac07611a5e54e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-musllinux_1_1_s390x.whl

Download URL aiohttp-3.9.3-cp311-cp311-musllinux_1_1_s390x.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
2c895a656dd7e061b2fd6bb77d971cc38f2afc277229ce7dd3552de8313a483e
BLAKE2b-256 checksum
How to use checksums
aeb134f3deb33ee7f5c573076021b581b875c7e364973d1852b3207265269f78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.9.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f033d80bc6283092613882dfe40419c6a6a1527e04fc69350e87a9df02bbc283
BLAKE2b-256 checksum
How to use checksums
6017bf9e80ec684ba8576dd3577a6562bff40c9bac9e4068f81aa3b9e66b008e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-musllinux_1_1_i686.whl

Download URL aiohttp-3.9.3-cp311-cp311-musllinux_1_1_i686.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
9d3c9b50f19704552f23b4eaea1fc082fdd82c63429a6506446cbd8737823da3
BLAKE2b-256 checksum
How to use checksums
1d44b0df11b0dc36ca2880c9a3a2a73f084290dafdf7451f43f6bce1d25a0925
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.9.3-cp311-cp311-musllinux_1_1_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
5eafe2c065df5401ba06821b9a054d9cb2848867f3c59801b5d07a0be3a380ae
BLAKE2b-256 checksum
How to use checksums
b7e0661d5b21fd9ca5bfb7f89373430298ed6c0c1e84270a3f8fda5172a95700
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7943c414d3a8d9235f5f15c22ace69787c140c80b718dcd57caaade95f7cd93b
BLAKE2b-256 checksum
How to use checksums
84bb74c9f32e1a76fab04b54ed6cd4b0dc4a07bd9dc6f3bb37f630149a9c3068
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.4 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
039df344b45ae0b34ac885ab5b53940b174530d4dd8a14ed8b0e2155b9dddccb
BLAKE2b-256 checksum
How to use checksums
101193c1f592e555f3db46226674b8c84b7c84c6fc19a0efdc8af9185a8e0fc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5ed3e046ea7b14938112ccd53d91c1539af3e6679b222f9469981e3dac7ba1ce
BLAKE2b-256 checksum
How to use checksums
be5cabb04824e97346a406349a6be4c8ea0a981b0d8bf472ee417ef83b5b5601
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dad46e6f620574b3b4801c68255492e0159d1712271cc99d8bdf35f2043ec266
BLAKE2b-256 checksum
How to use checksums
3d906ea3249e4570df575e1aa348b37b7ac1074482c2fab46a1ee84392cbc02e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.9.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
84871a243359bb42c12728f04d181a389718710129b36b6aad0fc4655a7647d4
BLAKE2b-256 checksum
How to use checksums
5100946624cb603d4433fab1f1f708aca9dd178349f9fe7956bd8eb4b08a377d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL aiohttp-3.9.3-cp311-cp311-macosx_11_0_arm64.whl
Size 387.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
07b837ef0d2f252f96009e9b8435ec1fef68ef8b1461933253d318748ec1acdc
BLAKE2b-256 checksum
How to use checksums
d3b0efb74d5f92a460c774e0254b3109c2d00fd3a1553f98363abb2b25cac9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL aiohttp-3.9.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 398.5 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c46956ed82961e31557b6857a5ca153c67e5476972e5f7190015018760938da2
BLAKE2b-256 checksum
How to use checksums
46579959621366c272f05c95f6cf795ebde9edc22c718e61bae1f565a4832b86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp311-cp311-macosx_10_9_universal2.whl

Download URL aiohttp-3.9.3-cp311-cp311-macosx_10_9_universal2.whl
Size 595.0 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
6b88f9386ff1ad91ace19d2a1c0225896e28815ee09fc6a8932fded8cda97c3d
BLAKE2b-256 checksum
How to use checksums
19bccfb51d97646cd67cebd90f0b5b0bebe063ebc8efd93e888b0aed9d74a549
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-win_amd64.whl

Download URL aiohttp-3.9.3-cp310-cp310-win_amd64.whl
Size 365.2 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
055ce4f74b82551678291473f66dc9fb9048a50d8324278751926ff0ae7715e5
BLAKE2b-256 checksum
How to use checksums
542d746a93808c2d9d247b554155a1576bf7ed0e0029e8cfb667a9007e2d53b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-win32.whl

Download URL aiohttp-3.9.3-cp310-cp310-win32.whl
Size 345.9 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
3e59c23c52765951b69ec45ddbbc9403a8761ee6f57253250c6e1536cacc758b
BLAKE2b-256 checksum
How to use checksums
7f6e35a29a56bd1da6b035708c402a88ff6cec768eec080fab79d6ec428e62ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.9.3-cp310-cp310-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
7cf5c9458e1e90e3c390c2639f1017a0379a99a94fdfad3a1fd966a2874bba52
BLAKE2b-256 checksum
How to use checksums
1f410852b954464d853cf315e60f096d3ff6a74aff75ad5f3388c06695d5d37f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-musllinux_1_1_s390x.whl

Download URL aiohttp-3.9.3-cp310-cp310-musllinux_1_1_s390x.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
6b0e029353361f1746bac2e4cc19b32f972ec03f0f943b390c4ab3371840aabf
BLAKE2b-256 checksum
How to use checksums
4ba08b50667a858f3e4f3fec2d471aa9e618783c0450b980e7a5bf617c1cb1f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a78ed8a53a1221393d9637c01870248a6f4ea5b214a59a92a36f18151739452c
BLAKE2b-256 checksum
How to use checksums
6356c1d39b27114595beaea776e164dbb793cf64c16331ba00cd0dc7cf0542f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-musllinux_1_1_i686.whl

Download URL aiohttp-3.9.3-cp310-cp310-musllinux_1_1_i686.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
cd73265a9e5ea618014802ab01babf1940cecb90c9762d8b9e7d2cc1e1969ec6
BLAKE2b-256 checksum
How to use checksums
f54e41143834b3fd5b89b404c76b5a71496bca96fbd8587c1e42a8f2b2efb8b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.9.3-cp310-cp310-musllinux_1_1_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
acef0899fea7492145d2bbaaaec7b345c87753168589cc7faf0afec9afe9b747
BLAKE2b-256 checksum
How to use checksums
18024156ed2edca212041c7a5334b9520ff5a39e40648177e2f0ef13cac2b555
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ab40e6251c3873d86ea9b30a1ac6d7478c09277b32e14745d0d3c6e76e3c7e29
BLAKE2b-256 checksum
How to use checksums
9340d3decda219ebd5410eba627601d537ec3782efbcadba308e9ce381cc0b71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e083c285857b78ee21a96ba1eb1b5339733c3563f72980728ca2b08b53826ca5
BLAKE2b-256 checksum
How to use checksums
436886874ff80e74c2e8308af3d80345fd624b5b26197a914aa9a85cfaf5b025
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
bca77a198bb6e69795ef2f09a5f4c12758487f83f33d63acde5f0d4919815768
BLAKE2b-256 checksum
How to use checksums
6d8a46ba295c98b24779370580b4450f80f35a1ae9e4bc9f9783ea1043d33395
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f56455b0c2c7cc3b0c584815264461d07b177f903a04481dfc33e08a89f0c26b
BLAKE2b-256 checksum
How to use checksums
9d79b34562b6cce04322023112f1984380359d78bd043b8ef822c2f356b7a047
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.9.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
df822ee7feaaeffb99c1a9e5e608800bd8eda6e5f18f5cfb0dc7eeb2eaa6bbec
BLAKE2b-256 checksum
How to use checksums
8674b506f01485dba1c4298700156b915f3ba475be823a7b31056d40a9ac0daa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL aiohttp-3.9.3-cp310-cp310-macosx_11_0_arm64.whl
Size 387.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
82e6aa28dd46374f72093eda8bcd142f7771ee1eb9d1e223ff0fa7177a96b4a5
BLAKE2b-256 checksum
How to use checksums
7e6e6c0486fdd8918f9818e82b30898cb77ff0debccc4b09db5d9a939ed7a075
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL aiohttp-3.9.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 397.9 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
1f5cd333fcf7590a18334c90f8c9147c837a6ec8a178e88d90a9b96ea03194cc
BLAKE2b-256 checksum
How to use checksums
9a41d6ce776c9c22f402ad0b0cfbdc70a630512229854b0043bd0dbe6566d75d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp310-cp310-macosx_10_9_universal2.whl

Download URL aiohttp-3.9.3-cp310-cp310-macosx_10_9_universal2.whl
Size 594.3 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
939677b61f9d72a4fa2a042a5eee2a99a24001a67c13da113b2e30396567db54
BLAKE2b-256 checksum
How to use checksums
0c032cac72f64b2853397dd697aa4957755b85bfd3acc0ffe898571060f1db83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-win_amd64.whl

Download URL aiohttp-3.9.3-cp39-cp39-win_amd64.whl
Size 366.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
27468897f628c627230dba07ec65dc8d0db566923c48f29e084ce382119802bc
BLAKE2b-256 checksum
How to use checksums
2803c81f6d4ea89326b182b2e31e83388734ccae07b18d573e45f7e9216b5910
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-win32.whl

Download URL aiohttp-3.9.3-cp39-cp39-win32.whl
Size 346.7 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
f7217af2e14da0856e082e96ff637f14ae45c10a5714b63c77f26d8884cf1051
BLAKE2b-256 checksum
How to use checksums
9ffb7c938606d7f22e67ea9d8ea660c0a151bf82c34367c937c1e6ad49975605
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.9.3-cp39-cp39-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8e2c45c208c62e955e8256949eb225bd8b66a4c9b6865729a786f2aa79b72e9d
BLAKE2b-256 checksum
How to use checksums
5fc4114e9b0944f6ec3a294f3f7bbedf63109bfeb067bbacc9fced47d1a1ed3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-musllinux_1_1_s390x.whl

Download URL aiohttp-3.9.3-cp39-cp39-musllinux_1_1_s390x.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
363afe77cfcbe3a36353d8ea133e904b108feea505aa4792dad6585a8192c55a
BLAKE2b-256 checksum
How to use checksums
082acdfe84154aef0cd29e4a383a1f1840cf7257cf22bceed1603a95a92cca7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
361a1026c9dd4aba0109e4040e2aecf9884f5cfe1b1b1bd3d09419c205e2e53d
BLAKE2b-256 checksum
How to use checksums
130cd4ace84ca4de479aad35625e1715f29307268d859ee816e95d25fa1218bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-musllinux_1_1_i686.whl

Download URL aiohttp-3.9.3-cp39-cp39-musllinux_1_1_i686.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f59dfe57bb1ec82ac0698ebfcdb7bcd0e99c255bd637ff613760d5f33e7c81b3
BLAKE2b-256 checksum
How to use checksums
6189cf30539ebe0c23cf11ec9ab1af64affde23e4b8382e26140af9e3b2c4b05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.9.3-cp39-cp39-musllinux_1_1_aarch64.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
f1088fa100bf46e7b398ffd9904f4808a0612e1d966b4aa43baa535d1b6341eb
BLAKE2b-256 checksum
How to use checksums
c98c0a387a1b8cd5f71d23533ca413a87ac3a26f87fa05664d7bd21ab75033ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
595f105710293e76b9dc09f52e0dd896bd064a79346234b521f6b968ffdd8e58
BLAKE2b-256 checksum
How to use checksums
bf63bff4168e4be6da032225fe3f2492b4627bf9416a62e58b7e9dc98c6280b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f95511dd5d0e05fd9728bac4096319f80615aaef4acbecb35a990afebe953b0e
BLAKE2b-256 checksum
How to use checksums
95d9686d2c7ba9c717e4f5839bc3c1131307eca5ea8d27386cfac4785808127d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
59c26c95975f26e662ca78fdf543d4eeaef70e533a672b4113dd888bd2423caa
BLAKE2b-256 checksum
How to use checksums
16890972cbc2f48fa6ce0e5156cabbfd373455f4f9a96f21b307d924e287ae83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
abf151955990d23f84205286938796c55ff11bbfb4ccfada8c9c83ae6b3c89a3
BLAKE2b-256 checksum
How to use checksums
975b5a71c0d39e4e45647c50f6f7388ec895e5fe864381a50f6241881b7f3014
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c7c8b816c2b5af5c8a436df44ca08258fc1a13b449393a91484225fcb7545533
BLAKE2b-256 checksum
How to use checksums
7560519dbed73c045124d978715a263d20f6e7c577fa790438a03c80e88a2b77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL aiohttp-3.9.3-cp39-cp39-macosx_11_0_arm64.whl
Size 388.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
06a9b2c8837d9a94fae16c6223acc14b4dfdff216ab9b7202e07a9a09541168f
BLAKE2b-256 checksum
How to use checksums
6441354317518c143b672072429fa40d9ea70f34eb7ed8bff29302628fa4d860
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL aiohttp-3.9.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 398.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
835a55b7ca49468aaaac0b217092dfdff370e6c215c9224c52f30daaa735c1c1
BLAKE2b-256 checksum
How to use checksums
201cb7e668a1583cbb1e5060b45baee68a50123f66470ac463f81f7e3b3c3bab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp39-cp39-macosx_10_9_universal2.whl

Download URL aiohttp-3.9.3-cp39-cp39-macosx_10_9_universal2.whl
Size 596.0 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0fa43c32d1643f518491d9d3a730f85f5bbaedcbd7fbcae27435bb8b7a061b29
BLAKE2b-256 checksum
How to use checksums
ff3347599034c7d9aeaba6f7c320741c17cc56ae5accbc104e2f7e9ea657b8af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-win_amd64.whl

Download URL aiohttp-3.9.3-cp38-cp38-win_amd64.whl
Size 367.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
69361bfdca5468c0488d7017b9b1e5ce769d40b46a9f4a2eed26b78619e9396c
BLAKE2b-256 checksum
How to use checksums
4d2c961a78a32c0e057df20fd3a29c1d49bf2d9f37e3a8177bde0838e14dff03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-win32.whl

Download URL aiohttp-3.9.3-cp38-cp38-win32.whl
Size 347.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
298abd678033b8571995650ccee753d9458dfa0377be4dba91e4491da3f2be63
BLAKE2b-256 checksum
How to use checksums
039c7f8f23f912a3e7206a30731006cac75048d6354c1349900ff750cffde521
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.9.3-cp38-cp38-musllinux_1_1_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
4b4af9f25b49a7be47c0972139e59ec0e8285c371049df1a63b6ca81fdd216a2
BLAKE2b-256 checksum
How to use checksums
f2d3220c5bc5eeb639fd8a59b1edfb346db8a54f0ec5a452772912e300afc1ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-musllinux_1_1_s390x.whl

Download URL aiohttp-3.9.3-cp38-cp38-musllinux_1_1_s390x.whl
Size 1.4 MB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
5bce0dc147ca85caa5d33debc4f4d65e8e8b5c97c7f9f660f215fa74fc49a321
BLAKE2b-256 checksum
How to use checksums
dd3c6185887726b6178a298f5486c253dadff62ab145f6e2e04bfe69fce10bd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
522a11c934ea660ff8953eda090dcd2154d367dec1ae3c540aff9f8a5c109ab4
BLAKE2b-256 checksum
How to use checksums
aad300f7b511280929328e9b56da0960a8b21b123e847da7e879a76458c2eaa5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-musllinux_1_1_i686.whl

Download URL aiohttp-3.9.3-cp38-cp38-musllinux_1_1_i686.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
8aacb477dc26797ee089721536a292a664846489c49d3ef9725f992449eda5a8
BLAKE2b-256 checksum
How to use checksums
70d3b7b251515b486f043ff56ae66bc463e3c39feb0393fd5c5f83095dc587ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.9.3-cp38-cp38-musllinux_1_1_aarch64.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
648056db9a9fa565d3fa851880f99f45e3f9a771dd3ff3bb0c048ea83fb28194
BLAKE2b-256 checksum
How to use checksums
0fb6ad6daa6bdf9ca632be31a8a043bc17e74931f3e7196bdf063012e1d7d681
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
017a21b0df49039c8f46ca0971b3a7fdc1f56741ab1240cb90ca408049766168
BLAKE2b-256 checksum
How to use checksums
46115c9481d7a7f511b51e9b2a85885640268d0b92207a89e529585a3af397b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.9.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fdd215b7b7fd4a53994f238d0f46b7ba4ac4c0adb12452beee724ddd0743ae5d
BLAKE2b-256 checksum
How to use checksums
2e92dec25516bdb1ab6771b29f0b51d90794fe7fdbe795c19ce1f6eda7cd15ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.9.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b40670ec7e2156d8e57f70aec34a7216407848dfe6c693ef131ddf6e76feb672
BLAKE2b-256 checksum
How to use checksums
9a790e5b8a739b86a63fc1c792f794c77336ada77c20714c710ed9a59d74d424
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f734e38fd8666f53da904c52a23ce517f1b07722118d750405af7e4123933511
BLAKE2b-256 checksum
How to use checksums
4596a5c44383ff60bb3d0f0a74e55cbe15e90ab54de4a00c1510e2723d5984b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e99abf0bba688259a496f966211c49a514e65afa9b3073a1fcee08856e04425b
BLAKE2b-256 checksum
How to use checksums
f80f2273e0be47d61bb6b56e6aa2a1510f300d9beb2a367ab2090ee0d9e2d05c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL aiohttp-3.9.3-cp38-cp38-macosx_11_0_arm64.whl
Size 389.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
feeb18a801aacb098220e2c3eea59a512362eb408d4afd0c242044c33ad6d542
BLAKE2b-256 checksum
How to use checksums
f57a17492df8e51df785f709e9adf9085f0919d1e19ee3495d2db24449dd17cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL aiohttp-3.9.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 399.9 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7f46acd6a194287b7e41e87957bfe2ad1ad88318d447caf5b090012f2c5bb528
BLAKE2b-256 checksum
How to use checksums
4552dedbd54c23f7bf5904ed2b08efa3095ddd7dafe5d10f4c9bff479c2716d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release files / aiohttp-3.9.3-cp38-cp38-macosx_10_9_universal2.whl

Download URL aiohttp-3.9.3-cp38-cp38-macosx_10_9_universal2.whl
Size 598.3 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0ed621426d961df79aa3b963ac7af0d40392956ffa9be022024cd16297b30c8c
BLAKE2b-256 checksum
How to use checksums
8e21b53d73ab4a9d86dae97e85e103278062534d44ca88a1616126388bd53f59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/4.0.2 CPython/3.11.7

Release history Release notifications | RSS feed

3.9.5

76 release files

3.9.4

76 release files

This release

3.9.3 This release

76 release files

3.9.2

76 release files

3.9.1

76 release files

3.9.0

76 release files

3.8.5

87 release files

3.8.4

87 release files

3.8.3

87 release files

3.8.2

87 release files

3.8.1

72 release files

3.8.0

72 release files

3.7.4

37 release files

3.7.3

37 release files

3.7.2

33 release files

3.7.1

33 release files

3.7.0

33 release files

3.6.3

13 release files

3.6.1

13 release files

3.5.4

22 release files

3.5.3

22 release files

3.5.1

22 release files

3.5.0

22 release files

3.4.1

22 release files

3.4.0

22 release files

3.3.2

15 release files

3.3.0

9 release files

3.2.1

15 release files

3.1.3

15 release files

3.1.1

15 release files

3.1.0

15 release files

3.0.9

15 release files

3.0.8

14 release files

3.0.5

15 release files

3.0.4

15 release files

3.0.3

15 release files

3.0.2

15 release files

3.0.1

15 release files

3.0.0

11 release files

2.3.9

16 release files

2.3.8

16 release files

2.3.7

22 release files

2.3.5

22 release files

2.3.4

22 release files

2.3.3

22 release files

2.3.1

22 release files

2.3.0

13 release files

2.2.0

13 release files

2.1.0

13 release files

2.0.7

8 release files

2.0.5

13 release files

2.0.4

13 release files

2.0.3

13 release files

2.0.2

13 release files

2.0.1

13 release files

2.0.0

13 release files

1.3.5

7 release files

1.3.4

7 release files

1.3.3

13 release files

1.3.2

13 release files

1.3.0

9 release files

1.2.0

9 release files

1.1.6

9 release files

1.1.5

9 release files

1.1.4

9 release files

1.1.3

9 release files

1.1.2

9 release files

1.1.1

9 release files

1.1.0

9 release files

1.0.5

9 release files

1.0.3

9 release files

1.0.2

9 release files

1.0.1

9 release files

1.0.0

9 release files

0.22.4

9 release files

0.22.3

9 release files

0.22.2

9 release files

0.22.1

9 release files

0.22.0

9 release files

0.21.5

5 release files

0.21.4

5 release files

0.21.2

5 release files

0.21.1

5 release files

0.20.2

1 release file

0.20.1

1 release file

0.20.0

1 release file

0.19.0

1 release file

0.18.4

1 release file

0.18.3

1 release file

0.18.2

1 release file

0.18.1

1 release file

0.18.0

1 release file

0.17.4

1 release file

0.17.3

1 release file

0.17.2

1 release file

0.17.1

1 release file

0.17.0

1 release file

0.16.6

1 release file

0.16.5

1 release file

0.16.4

1 release file

0.16.3

1 release file

0.16.2

1 release file

0.16.1

1 release file

0.16.0

1 release file

0.15.3

1 release file

0.15.2

1 release file

0.15.1

1 release file

0.15.0

1 release file

0.14.4

1 release file

0.14.3

1 release file

0.14.2

1 release file

0.14.1

1 release file

0.14.0

1 release file

0.13.1

2 release files

0.13.0

2 release files

0.12.0

1 release file

0.11.0

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10.0

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

1 release file

0.9.0

1 release file

0.8.4

1 release file

0.8.3

1 release file

0.8.2

1 release file

0.8.1

1 release file

0.8.0

1 release file

0.7.3

1 release file

0.7.2

1 release file

0.7.1

1 release file

0.7.0

1 release file

0.6.5

1 release file

0.6.4

1 release file

0.6.3

1 release file

0.6.2

1 release file

0.6.1

1 release file

0.6.0

1 release file

0.5.0

1 release file

0.4.4

1 release file

0.4.3

1 release file

0.4.2

1 release file

0.4.1

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1

1 release 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