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 Discourse status Chat on Gitter

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 middlewares and plugable 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 discourse group: https://aio-libs.discourse.group

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 cChardet and aiodns libraries (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.8.4

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.8.4
File Size Uploaded
aiohttp-3.8.4.tar.gz 7.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for aiohttp 3.8.4
File
aiohttp-3.8.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
aiohttp-3.8.4-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-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.8.4-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.8.4-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.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-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.8.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
aiohttp-3.8.4-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-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.8.4-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.8.4-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.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.4-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
aiohttp-3.8.4-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-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.8.4-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.8.4-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.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.4-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
aiohttp-3.8.4-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-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.8.4-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.8.4-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.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.4-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
aiohttp-3.8.4-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
aiohttp-3.8.4-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
aiohttp-3.8.4-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 77.9 MB

Release files / aiohttp-3.8.4.tar.gz

Download URL aiohttp-3.8.4.tar.gz
Size 7.3 MB
Tags Source
SHA-256 checksum
How to use checksums
bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c
BLAKE2b-256 checksum
How to use checksums
c2fd1ff4da09ca29d8933fda3f3514980357e25419ce5e0f689041edb8f17dab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-win_amd64.whl
Size 317.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc
BLAKE2b-256 checksum
How to use checksums
c5226bd9f9a90807ef11e4c4a3ec19099e24f2b6f4040ee568f71ed0e5fdb6d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-win32.whl
Size 304.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d
BLAKE2b-256 checksum
How to use checksums
c86d96781308f03ad27d849524053f63285cd53dc178b9018e8db148ed46a8c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24
BLAKE2b-256 checksum
How to use checksums
404d49cfd9cd450196601facd6f1f6ea551856dcd41b2061851c06c66885cca2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b
BLAKE2b-256 checksum
How to use checksums
8a06be76e45900b729964a595246b1a9cd7b7d22ca015203b4b74847b4424ee9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531
BLAKE2b-256 checksum
How to use checksums
ab9d3bdb23a925d7ba67acc8a6158191fe8874b1dda6745bb67ee40f493480e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb
BLAKE2b-256 checksum
How to use checksums
d9b85225fbcca70348708eaf939d6821f21cbbfa12290d6314b02608a94cc38c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a
BLAKE2b-256 checksum
How to use checksums
e64aad8fde32ba6bab15c15eaf770f10a10d0bfe8dd575fc96981ad1b615f509
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05
BLAKE2b-256 checksum
How to use checksums
a0e4a383cb4b68324b39f7d95cdfebdc8a66a88201c3646a87a00140d778c5ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f
BLAKE2b-256 checksum
How to use checksums
33a7c2304859f11531f6be5c464e3d8cdd85cbc196f0754e0c450ef76c297c7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e
BLAKE2b-256 checksum
How to use checksums
fc51962b938a296eaf08d1cfa80ad5d42670b15aa868f897c0e71ea1cf9d1f0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f
BLAKE2b-256 checksum
How to use checksums
88412a8453255ebb0864d81745d24bee03fff71b7b76ed2f846126a6f5930ee4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 985.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654
BLAKE2b-256 checksum
How to use checksums
6828e46516d7ca64146e50e595e0364530e4080da0d9f7640b43b687836ebd2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl
Size 332.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef
BLAKE2b-256 checksum
How to use checksums
08303dafa445e7f6358aa1c5ffde987ca4eba6bd7b9038e07ec01732933312fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl
Size 355.1 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4
BLAKE2b-256 checksum
How to use checksums
917199cd9ebe197cbebf46ba1f00573120802ace2869e1f63ff0b00acc5b4982
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl
Size 505.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4
BLAKE2b-256 checksum
How to use checksums
841886e01032e305637d991b23b37bb39170ebaf8b8c4d0ea458b75f4302ed86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-win_amd64.whl
Size 319.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f
BLAKE2b-256 checksum
How to use checksums
8ecdf8f8d801fa5c0cd1d6259fa71c9394437c5c14f8936aeff6f6c3233fd596
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-win32.whl
Size 304.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1
BLAKE2b-256 checksum
How to use checksums
66901c0ff493317bae426c1aec5da9cbcd9baea4a8d526e4beae892896aefa64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea
BLAKE2b-256 checksum
How to use checksums
296ea15e39b2ae4305336bfc00540bde991fff73c60e7e8390b9e82a6ec485f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949
BLAKE2b-256 checksum
How to use checksums
5cc526cd1522e373484b1648da913be6f084ce4d7473ecebe503533a3bb85536
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9
BLAKE2b-256 checksum
How to use checksums
25b44373590c8bd438ccca4c916bb6a65dc3366e4f030a17359f4adb0ff605ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl
Size 985.8 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6
BLAKE2b-256 checksum
How to use checksums
885f4fec6a1238fda86716374910aa5a1a4953eca4cf30b582c94efce9058729
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl
Size 1.0 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd
BLAKE2b-256 checksum
How to use checksums
3a4257dc93de564725208a1ea729a717f2608f0091a11e34ecd2e23863b9ef35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5
BLAKE2b-256 checksum
How to use checksums
819790debed02e5be15d4e63fb96ba930e35b66d4e518fa7065dd442345a448b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd
BLAKE2b-256 checksum
How to use checksums
c96ec68d4618e2f15248deddc992ce35d979b52df9a9b8ecbc00ae9ed83c6316
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc
BLAKE2b-256 checksum
How to use checksums
c7b8e886ff5e85698200d8b9667908a6f0e0439dc4fd165c4875b6efbbfeedd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3
BLAKE2b-256 checksum
How to use checksums
6b3368ba7406db6ea62f34cfacdb86eecbef1e3fc81f5f8335f0c8e11157ddbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 971.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e
BLAKE2b-256 checksum
How to use checksums
b1f281258cc72112956bca0bcf9f539cd6f503e1a631f5bf9307ae3cf21e05a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl
Size 336.9 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b
BLAKE2b-256 checksum
How to use checksums
bf9cf2fc160f21fd3ea98f00da1f285bb6b24c53863ee30e67901f92b8a8f6c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl
Size 358.1 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a
BLAKE2b-256 checksum
How to use checksums
8a921ce3215bcde9cb1da929bf78742269ed2371e5c22190e2886df4bc0251ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl
Size 512.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1
BLAKE2b-256 checksum
How to use checksums
ed1843720f71f5496544e69f8723534d8b5fa6de8b1ad2f64a5d7e797c4ee6e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-win_amd64.whl
Size 323.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04
BLAKE2b-256 checksum
How to use checksums
7c747982db5537646a87d8a71291fce33ecbc101b49ab2b8d3d58df880a165ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-win32.whl
Size 307.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a
BLAKE2b-256 checksum
How to use checksums
1a9edb7ceb5b9609dc60c8e8d94dd362e6e3d713328813a80a4ae0a98a961db4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl
Size 1.0 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4
BLAKE2b-256 checksum
How to use checksums
05ee77b3dc08f41a1bce842e30134233c58b3bbe8c0fa7be121295aa2fad885d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14
BLAKE2b-256 checksum
How to use checksums
9e8199624c57135c441c9668334f994e563b6e074efa4ae93d5a3dd0faaa65f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2
BLAKE2b-256 checksum
How to use checksums
211e32b08ea6c14d2b18db7c2d859ca658a7c64f0240c008beb4a9aac3c0c477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl
Size 1.0 MB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391
BLAKE2b-256 checksum
How to use checksums
8677359544aa8a63bcaea78f0be923a54b1ab899b35e097a93dfc62b80f712e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl
Size 1.0 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57
BLAKE2b-256 checksum
How to use checksums
03e784b65e341b1f45753fea51158d8a9522e57a5ae804acbc6dc34edf07cea0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2
BLAKE2b-256 checksum
How to use checksums
8b6091ef15bf94415c6749edb6fd168394c1f451e7bb4b3f32c023654e8ea91e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719
BLAKE2b-256 checksum
How to use checksums
35452119fb3958a7e5a745e521ea005f8ffd1bbe0ef63e74d4adcee1f3a47cb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf
BLAKE2b-256 checksum
How to use checksums
52dec20b9b274d7a3886beba2f218ad409458ebf67816c186ae9d0d26bf65a8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a
BLAKE2b-256 checksum
How to use checksums
13304905769f98953e4c1c02190d348001ee683ebf8af1e3ac5106ce7c952d95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 990.4 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e
BLAKE2b-256 checksum
How to use checksums
9bc1bae43e9677b163d4e8b4b0b0299257f0ad6a3e58f3bf8f890fa409ba9257
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl
Size 338.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643
BLAKE2b-256 checksum
How to use checksums
2aa94183ba5557c40aa5e3e94360ae945c159234b968572bcf3f96ef97ac1bc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl
Size 360.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567
BLAKE2b-256 checksum
How to use checksums
12552836961a617ce2eec38554bef8093f7f4359ae1b3f90ae7eeea59e447159
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl
Size 516.2 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed
BLAKE2b-256 checksum
How to use checksums
425a7b24ce955c38ad292ffdca44c2421cbff69f8746f9628b5314073441abc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-win_amd64.whl
Size 324.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f
BLAKE2b-256 checksum
How to use checksums
485bdabb02a8fe7da607c0b65d9086af36a2c77c509f3ee7efb7a80b008d7c7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-win32.whl
Size 308.1 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54
BLAKE2b-256 checksum
How to use checksums
f0568b005d90ba0f40d0076978d30b20922440afdc4964b50a7429a0e2024d56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d
BLAKE2b-256 checksum
How to use checksums
04033ce412b191aba5961b4ada3ee7a93498623e218fb4d50ac6d357da61dc26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl
Size 1.2 MB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275
BLAKE2b-256 checksum
How to use checksums
8bfdf27e517cca62c29011ff30bebef0f45f81d9de6a163d327209af2a5dc88c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71
BLAKE2b-256 checksum
How to use checksums
e2a3f2915766785ec152d67a548202d064b3d0b25c7ae6bf5e687897a83c127a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52
BLAKE2b-256 checksum
How to use checksums
80fd68a579ca1bd36560b46d6bdfe1ddc5e031aad0c53fb9dc17eb7f0eb45fa9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074
BLAKE2b-256 checksum
How to use checksums
77393b567439e6d7cea2dbc3978d2da171b939b9b6fed91b02229acbecbad3c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8
BLAKE2b-256 checksum
How to use checksums
d2e5cef5eeb11d7e8bac830b3bee1c8311b19bf8e8a1c45fe14b876c70adcd06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.1 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10
BLAKE2b-256 checksum
How to use checksums
85e8ba9fe9d106cf772a128fadd9c86018534b27aec5010f938aa26d40ca6fef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.1 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd
BLAKE2b-256 checksum
How to use checksums
374c0110001ca7950a7c4e672b6f3644299d3dabef669689691f5f1d4142e3e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da
BLAKE2b-256 checksum
How to use checksums
1985e9ed63f5a31e16c2f323993d4cefbd34538eb436c186ab531a9265a1cc1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a
BLAKE2b-256 checksum
How to use checksums
263d78f2ae20db769b7f91b823583a349b5756325a96241b5bb5ab14ad0a1986
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl
Size 337.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945
BLAKE2b-256 checksum
How to use checksums
249e9efb855fd4fe4332ac962d447fb87116550c7e317aee490bda1f7857b07b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl
Size 359.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15
BLAKE2b-256 checksum
How to use checksums
0f30f00e6c3dd65087ad402e1d5e94ddd54758803b88fc3902a8ad14ac970efa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

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

Download URL aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl
Size 514.7 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f
BLAKE2b-256 checksum
How to use checksums
7b6c63788c96b9874bc44c565820a41d07777f4207f427b66f028200f0ac34e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-win_amd64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-win_amd64.whl
Size 322.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480
BLAKE2b-256 checksum
How to use checksums
9b7935d0c8eea92ec2649cc4ee385f9bc46da975742c23672d3e1925dc29d55a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-win32.whl

Download URL aiohttp-3.8.4-cp37-cp37m-win32.whl
Size 306.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a
BLAKE2b-256 checksum
How to use checksums
eda248800f019182f280fda78d8d5d5f964a0d41a2eaabfd2868d8eed0baefae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 963.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241
BLAKE2b-256 checksum
How to use checksums
4909ea931f5d158ec2a735eda6f8e6923945650e6d705c420f0606b332219192
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl

Download URL aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl
Size 1.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6
BLAKE2b-256 checksum
How to use checksums
d635cbfeff7ca60ee89d4d08f4c3adf20c9e63535fd9e830312006613b142723
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 984.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699
BLAKE2b-256 checksum
How to use checksums
646e5da9e8863807644adc6aa94cd3457aacbc56ea6985e0ddc2144e54568781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl

Download URL aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl
Size 941.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9
BLAKE2b-256 checksum
How to use checksums
c8ac6d94a8bd494450a2e764b32cb9be8ea28054c90733c6c114d27e46687496
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 968.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333
BLAKE2b-256 checksum
How to use checksums
10a6bbd9881658cf821fe36144cce4fd05e1fb84f92c67c6222920317b2a7133
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 948.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab
BLAKE2b-256 checksum
How to use checksums
be2e78d9514437e4267988380482420f4a550be6abdc665c836efe6d6abf7b46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b
BLAKE2b-256 checksum
How to use checksums
a268a87a0fe59a9d4e8f65d85c04731d7b80b96645cad04bd3b6d07e2ed82863
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 968.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9
BLAKE2b-256 checksum
How to use checksums
38445a97d0d7080d3971f8ae00220e045a11b2307de1661f646e8fa90a7db46d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 953.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f
BLAKE2b-256 checksum
How to use checksums
680d81ec1a43c46b6ea1ec2ac58c0416a415d8e4b267ddd8e7c8deb27e90a42b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 922.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332
BLAKE2b-256 checksum
How to use checksums
6198bf502ad68b95c12d71d5a499a1730c9759f2b98cde2704bd595cbd462068
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl
Size 354.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519
BLAKE2b-256 checksum
How to use checksums
26a88a7e53fcf159eb838d96810de2b4d05e27b38bf9804275b13ddc952a32f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-win_amd64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-win_amd64.whl
Size 337.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e
BLAKE2b-256 checksum
How to use checksums
8607ff2670f03b9370a09fdccbb79f1555dd9a55e9a1f6fba360250bf42c1fb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-win32.whl

Download URL aiohttp-3.8.4-cp36-cp36m-win32.whl
Size 316.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777
BLAKE2b-256 checksum
How to use checksums
d5a02c42e4379a1100f5492dd48f82575bc2f4648c61daeb5fcbd72ad7680925
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 955.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff
BLAKE2b-256 checksum
How to use checksums
7e13ad03ec24f1ac2e00082106494950d8b34d8cdf6da075339c5005989317a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl

Download URL aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl
Size 1.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71
BLAKE2b-256 checksum
How to use checksums
c94b9fd9725b52ce61e6c946ac52e41c1560e94f0907b08d7e9708a8054d9642
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl

Download URL aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl
Size 979.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99
BLAKE2b-256 checksum
How to use checksums
deddba13b6a99a11ca0500c0fffa9786af2a482125c87944573cf46dddd020d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl

Download URL aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl
Size 933.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36
BLAKE2b-256 checksum
How to use checksums
073c04c65b5873524a415509cbcf21787be32c31f4e729840fab9866dd197030
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 960.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41
BLAKE2b-256 checksum
How to use checksums
57e503f8a15ed03dd384864c60dd3c1fba12d1968ab52e19b6dbf04b0c88c6eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 946.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01
BLAKE2b-256 checksum
How to use checksums
5d4bb0864214b587069ce37f25f1e117f72aac589bace98d16ae8cf0b695943c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75
BLAKE2b-256 checksum
How to use checksums
5278a952a0d581d85418ffe9d4a31957968c92c9b94fb7efa57dc40d3d85e1e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 965.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131
BLAKE2b-256 checksum
How to use checksums
8a216690f576bd0375ddb6418c6215b757cf65c16db727aef40efa5b65dd4f35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 952.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6
BLAKE2b-256 checksum
How to use checksums
823d47224dfbe502978773d2cbfc683df6d94283a38c0079fa737165b49dbb2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 922.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622
BLAKE2b-256 checksum
How to use checksums
c13be57204d1b2721dc66b8c004fd1e93e0e428688959ad7c567392e52ded438
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl
Size 355.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51
BLAKE2b-256 checksum
How to use checksums
8f38fd5ae9ce7764efce0ffeaa23db2e29d7aacd1fea69ec9959a3a6bbd07541
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release history Release notifications | RSS feed

3.9.5

76 release files

3.9.4

76 release files

3.9.3

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

This release

3.8.4 This release

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