Skip to main content

Async http client/server framework

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], "...")

loop = asyncio.get_event_loop()
loop.run_until_complete(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.1

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

Built distributions (wheels)

Table of built distributions (wheels) for aiohttp 3.8.1
File
aiohttp-3.8.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
aiohttp-3.8.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
aiohttp-3.8.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.1-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.1-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.1-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.1-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.1-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.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
aiohttp-3.8.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
aiohttp-3.8.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.1-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.1-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.1-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.1-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.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
aiohttp-3.8.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
aiohttp-3.8.1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
aiohttp-3.8.1-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
aiohttp-3.8.1-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
aiohttp-3.8.1-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
aiohttp-3.8.1-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
aiohttp-3.8.1-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.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-64, Linux glibc 2.5+ x86-64 Details
aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32, Linux glibc 2.12+ x86-32 Details
aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
aiohttp-3.8.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
aiohttp-3.8.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
aiohttp-3.8.1-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.1-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.1-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.1-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
aiohttp-3.8.1-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.1-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.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.12+ x86-64 Details
aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32, Linux glibc 2.5+ x86-32 Details
aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
aiohttp-3.8.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
aiohttp-3.8.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
aiohttp-3.8.1-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.1-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.1-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.1-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
aiohttp-3.8.1-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.1-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.1-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.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64, Linux glibc 2.5+ x86-64 Details
aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.12+ x86-32 Details
aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 80.6 MB

Release files / aiohttp-3.8.1.tar.gz

Download URL aiohttp-3.8.1.tar.gz
Size 7.3 MB
Tags Source
SHA-256 checksum
How to use checksums
fc5471e1a54de15ef71c1bc6ebe80d4dc681ea600e68bfd1cbce40427f0b7578
BLAKE2b-256 checksum
How to use checksums
5a865f63de7a202550269a617a5d57859a2961f3396ecd1739a70b92224766bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp310-cp310-win_amd64.whl
Size 555.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
713ac174a629d39b7c6a3aa757b337599798da4c1157114a314e4e391cd28e32
BLAKE2b-256 checksum
How to use checksums
2e4f119a8efad036d1f766ad736864a6dbfc8db9596e74ce9820f8c1282a240b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp310-cp310-win32.whl
Size 534.4 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
c2aef4703f1f2ddc6df17519885dbfa3514929149d3ff900b73f45998f2532fa
BLAKE2b-256 checksum
How to use checksums
7586c55c7b6b9d0d9e25b1d721e204424f154bd72bb172d2056f0f9f06c50254
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
97ef77eb6b044134c0b3a96e16abcb05ecce892965a2124c566af0fd60f717e2
BLAKE2b-256 checksum
How to use checksums
4fc6a8ce9fc6bbf9c0dbdaa631bcb8f9da5b532fd22ead50ef7390976fc9bf0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
01d7bdb774a9acc838e6b8f1d114f45303841b89b95984cbb7d80ea41172a9e3
BLAKE2b-256 checksum
How to use checksums
cc28c95a0694da3082cb76808799017b02db6c10ec8687ee1ac5edad091ab070
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
31560d268ff62143e92423ef183680b9829b1b482c011713ae941997921eebc8
BLAKE2b-256 checksum
How to use checksums
f30da035862f8a11b6cba4220b0c1201443fa6f5151137889e2dfe1cc983e58e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
61bfc23df345d8c9716d03717c2ed5e27374e0fe6f659ea64edcd27b4b044cf7
BLAKE2b-256 checksum
How to use checksums
763d8f64ed6d429f9feeefc52b551f4ba5554d2f7a6f46d92c080f4ae48e0478
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
fa0ffcace9b3aa34d205d8130f7873fcfefcb6a4dd3dd705b0dab69af6712642
BLAKE2b-256 checksum
How to use checksums
c06df5423a7c899c538e2cff2e713f9eb2c51b02fad909ec8e8b1c3ed713049a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
eaba923151d9deea315be1f3e2b31cc39a6d1d2f682f942905951f4e40200922
BLAKE2b-256 checksum
How to use checksums
85e6d52a342bf22b5b5c759a94af340836490bcbffd288d4a65494234d8298f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
6f0d5f33feb5f69ddd57a4a4bd3d56c719a141080b445cbf18f238973c5c9923
BLAKE2b-256 checksum
How to use checksums
b1bde412cb6cd12b7a86966239a97ed0391e1ad5ac6f8a749caddc49e18264ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
12de6add4038df8f72fac606dff775791a60f113a725c960f2bab01d8b8e6b15
BLAKE2b-256 checksum
How to use checksums
4808c3efb449dea5f38292804e4fbf8eaef1b3f168535a4163cc3fce3f9b4915
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL aiohttp-3.8.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
2e5d962cf7e1d426aa0e528a7e198658cdc8aa4fe87f781d039ad75dcd52c516
BLAKE2b-256 checksum
How to use checksums
f42d07e3ba718571e79509f88a791611a3e156e8915ed9a19116547806bce8fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL aiohttp-3.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 1.2 MB
Tags CPython 3.10 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
099ebd2c37ac74cce10a3527d2b49af80243e2a4fa39e7bce41617fbc35fa3c1
BLAKE2b-256 checksum
How to use checksums
80a39403173d3a6ba5893a4e0a1816b211da7ba0cb7c00c9ac0279ec2dbbf576
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp310-cp310-macosx_11_0_arm64.whl
Size 552.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a79004bb58748f31ae1cbe9fa891054baaa46fb106c2dc7af9f8e3304dc30316
BLAKE2b-256 checksum
How to use checksums
a67f4c202b0fd3c33029e45bb0d06eaac2886be4427763cc9589774fb39b5da7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 575.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7dadf3c307b31e0e61689cbf9e06be7a867c563d5a63ce9dca578f956609abf8
BLAKE2b-256 checksum
How to use checksums
7e9f3cd2502f3cab61eccd7c20f5ab67447cf891ad8613282141955df1b7fb98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp310-cp310-macosx_10_9_universal2.whl
Size 729.1 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
1ed0b6477896559f17b9eaeb6d38e07f7f9ffe40b9f0f9627ae8b9926ae260a8
BLAKE2b-256 checksum
How to use checksums
e33a720635a98bb0eef9179d12ee3ccca659d1fcccfbafaacdf42ed5536a0861
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-win_amd64.whl
Size 554.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1c182cb873bc91b411e184dab7a2b664d4fea2743df0e4d57402f7f3fa644bac
BLAKE2b-256 checksum
How to use checksums
4b028bcd66c2a44714b3c3d076ff3bf49b3a247338a47f31adb00567841e15a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-win32.whl
Size 534.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
7187a76598bdb895af0adbd2fb7474d7f6025d170bc0a1130242da817ce9e7d1
BLAKE2b-256 checksum
How to use checksums
c1e210084a3437c0f3f971c46a9870b574ef6cc00d0480119fd3e193c19fdf66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
81e3d8c34c623ca4e36c46524a3530e99c0bc95ed068fd6e9b55cb721d408fb2
BLAKE2b-256 checksum
How to use checksums
8398d84ea011850be422d7db44c668b5d262ab94e0b9bfd54e0d0222cff62d71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
b6613280ccedf24354406caf785db748bebbddcf31408b20c0b48cb86af76866
BLAKE2b-256 checksum
How to use checksums
6da0bdc0596eb07b328ae97bf54cd1d0c3eed34b8728d1bf6fcab12c296de5a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
28d490af82bc6b7ce53ff31337a18a10498303fe66f701ab65ef27e143c3b0ef
BLAKE2b-256 checksum
How to use checksums
f08dcbe09c4e5d9b150a24765af508a5db745ba7049bc68ee6670063e04c2879
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
71927042ed6365a09a98a6377501af5c9f0a4d38083652bcd2281a06a5976724
BLAKE2b-256 checksum
How to use checksums
32f6a68f6f703541ce5cf3bba94c5f5415c732d0384e29d0ab6cdb6e62a6822e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-musllinux_1_1_aarch64.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6c7cefb4b0640703eb1069835c02486669312bf2f12b48a748e0a7756d0de33d
BLAKE2b-256 checksum
How to use checksums
8c257454b836072efe67f8b16a4751443c77e0a34f9e909e6bca7247853b9bf4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
e999f2d0e12eea01caeecb17b653f3713d758f6dcc770417cf29ef08d3931421
BLAKE2b-256 checksum
How to use checksums
df6def68db15f3bcb29ad4ff7815008f45d44a08dbdbf524bf2f904ce701ffd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a2f635ce61a89c5732537a7896b6319a8fcfa23ba09bec36e1b1ac0ab31270d2
BLAKE2b-256 checksum
How to use checksums
8dd77121308d1d3b399b1f3b902939e4c59987360ed3fbaacfb291da06cbb924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
ea302f34477fda3f85560a06d9ebdc7fa41e82420e892fc50b577e35fc6a50b2
BLAKE2b-256 checksum
How to use checksums
51b4174a2a94aedbad1f92b1a18a2051eba5b8ea915853361949b84e3ee1ac35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL aiohttp-3.8.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d15367ce87c8e9e09b0f989bfd72dc641bcd04ba091c68cd305312d00962addd
BLAKE2b-256 checksum
How to use checksums
e91321e7f1d0d1932b321cdeaea01d5008285dac3b088af855c5c3d8714dba7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL aiohttp-3.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 1.2 MB
Tags CPython 3.9 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0770e2806a30e744b4e21c9d73b7bee18a1cfa3c47991ee2e5a65b887c49d5cf
BLAKE2b-256 checksum
How to use checksums
24f2961f20184581dd21e181a927e4e264d991f5f6a090778a9b3575a4eac7fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-macosx_11_0_arm64.whl
Size 552.3 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
13487abd2f761d4be7c8ff9080de2671e53fff69711d46de703c310c4c9317ca
BLAKE2b-256 checksum
How to use checksums
640fbad91b74658ffea95982794603106c7d751734bb4e8e1f83c654a11ef971
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 575.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a996d01ca39b8dfe77440f3cd600825d05841088fd6bc0144cc6c2ec14cc5f74
BLAKE2b-256 checksum
How to use checksums
dd229b3e55dd0c8c460a9381c97e9f33cd4d7bc6f322f8c3ae5c9737becda9a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp39-cp39-macosx_10_9_universal2.whl
Size 728.7 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f5315a2eb0239185af1bddb1abf472d877fede3cc8d143c6cddad37678293237
BLAKE2b-256 checksum
How to use checksums
a80e068cb215e8709703c497fcd07e8a81e68b3eb8b83083f96e93ef964d4685
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-win_amd64.whl
Size 556.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
04d48b8ce6ab3cf2097b1855e1505181bdd05586ca275f2505514a6e274e8e75
BLAKE2b-256 checksum
How to use checksums
e4eb2e5c66f6ab8bf1fa9743552ec49bd8deb9a8ad385545bbd60c8f50529e21
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-win32.whl
Size 535.3 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
7d08744e9bae2ca9c382581f7dce1273fe3c9bae94ff572c3626e8da5b193c6a
BLAKE2b-256 checksum
How to use checksums
f1ca603261545a757915fb30446a9d7a394cd934865a8eac3c18ce638df90687
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
844a9b460871ee0a0b0b68a64890dae9c415e513db0f4a7e3cab41a0f2fedf33
BLAKE2b-256 checksum
How to use checksums
8131baf1ff4e36da246dc3ff2e0c12f2f7688b4f394ad21e29e3ef4ba864d035
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
44db35a9e15d6fe5c40d74952e803b1d96e964f683b5a78c3cc64eb177878155
BLAKE2b-256 checksum
How to use checksums
9fbc5928e69637252150176b3604f7c386a9184358fcc7338c0b8c55a7908523
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
bb01ba6b0d3f6c68b89fce7305080145d4877ad3acaed424bae4d4ee75faa950
BLAKE2b-256 checksum
How to use checksums
55a52912baebc80570a34a2103a34e3c65b84e93bcf20f6e09fbe335ce27e3cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
11a67c0d562e07067c4e86bffc1553f2cf5b664d6111c894671b2b8712f3aba5
BLAKE2b-256 checksum
How to use checksums
5854f4c1bac24b2365c2eb8d5205822b3ea41e40e1c471060c2409b9dbf05be5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
31d1e1c0dbf19ebccbfd62eff461518dcb1e307b195e93bba60c965a4dcf1ba0
BLAKE2b-256 checksum
How to use checksums
200bc077ca31bba80ed7c1c81a7505e7e339ef82ab3d9ee679c09b3ffb04cdd5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
2ed076098b171573161eb146afcb9129b5ff63308960aeca4b676d9d3c35e700
BLAKE2b-256 checksum
How to use checksums
17ab36da1a4b5d2685acdc84117b32588b1edb4033b40cfbdf27a219bd6a4c6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-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
589c72667a5febd36f1315aa6e5f56dd4aa4862df295cb51c769d16142ddd7cd
BLAKE2b-256 checksum
How to use checksums
54ab5e5d0e042b9b149efd867eaaf4a6c94c51ccdf3f955564e0fce1dbfbcb4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
718626a174e7e467f0558954f94af117b7d4695d48eb980146016afa4b580b2e
BLAKE2b-256 checksum
How to use checksums
ffa6184cd63b06ea05edfcfba946fed3da7afb2f0b7e3237fb1b2c056cce57f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL aiohttp-3.8.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
11691cf4dc5b94236ccc609b70fec991234e7ef8d4c02dd0c9668d1e486f5abf
BLAKE2b-256 checksum
How to use checksums
3871e1db3f96fa85f77906ef002a08fa8d02dbdb3292180d41eb1b17ddab72bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL aiohttp-3.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 1.2 MB
Tags CPython 3.8 Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
086f92daf51a032d062ec5f58af5ca6a44d082c35299c96376a41cbb33034675
BLAKE2b-256 checksum
How to use checksums
edafcf551e595af1979ba74c280d94aa0c351e634285608ac70cb6def374f661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-macosx_11_0_arm64.whl
Size 551.9 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c3d6a4d0619e09dcd61021debf7059955c2004fa29f48788a3dfaf9c9901a7cd
BLAKE2b-256 checksum
How to use checksums
5e34a5d2619c062e6fed7224fb920e93b1d8ad055bb3b1b544e754c864c978a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 574.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8b7ef7cbd4fec9a1e811a5de813311ed4f7ac7d93e0fda233c9b3e1428f7dd7b
BLAKE2b-256 checksum
How to use checksums
795c573d590ebff44e927aa0820b194a46c15253808725f82f23aa13440808ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp38-cp38-macosx_10_9_universal2.whl
Size 727.7 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0c7ebbbde809ff4e970824b2b6cb7e4222be6b95a296e46c03cf050878fc1785
BLAKE2b-256 checksum
How to use checksums
cf6aacf689f13f39700cfa526f6bff2d10dfd29aa21cbc0d3a5cf0f153298a74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-win_amd64.whl
Size 551.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
6ae828d3a003f03ae31915c31fa684b9890ea44c9c989056fea96e3d12a9fa17
BLAKE2b-256 checksum
How to use checksums
19227a9ea2992cf7adf534eb51f7b6bfd4642bb15894ac36df4edb0838ee1fdb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-win32.whl
Size 531.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d2f9b69293c33aaa53d923032fe227feac867f81682f002ce33ffae978f0a9a9
BLAKE2b-256 checksum
How to use checksums
2d7a2809619bd5ca3ab7f27c134f93d52c80a5dfed7d22e426e79415f35233b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c34dc4958b232ef6188c4318cb7b2c2d80521c9a56c52449f8f93ab7bc2a8a1c
BLAKE2b-256 checksum
How to use checksums
d6231942037534eb4f3671e68801af3af1adfe28add92300291934daa2b5cdec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_s390x.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
07b05cd3305e8a73112103c834e91cd27ce5b4bd07850c4b4dbd1877d3f45be7
BLAKE2b-256 checksum
How to use checksums
50dc9b1fd678730d7e9c8fa125ef0a0102c1783c0a80cffb2159e2a63ab0f569
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b9d00268fcb9f66fbcc7cd9fe423741d90c75ee029a1d15c09b22d23253c0a44
BLAKE2b-256 checksum
How to use checksums
428d8d85c84baa731de1f3a7fbb3bb85632f82534fc0b618abc51c6569440cdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_i686.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
55c3d1072704d27401c92339144d199d9de7b52627f724a949fc7d5fc56d8b93
BLAKE2b-256 checksum
How to use checksums
39971acbab256523838e37b895d70e39f45e7feb82801a18368fba323d598e80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6d69f36d445c45cda7b3b26afef2fc34ef5ac0cdc75584a87ef307ee3c8c6d00
BLAKE2b-256 checksum
How to use checksums
7556e0e5f6a59bd6053d61d7d8d1448100eacfc6f3d47cf39c4448351dd22e72
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
477c3ea0ba410b2b56b7efb072c36fa91b1e6fc331761798fa3f28bb224830dd
BLAKE2b-256 checksum
How to use checksums
072bef0ea5695809b1d5e485e136fcf9c1e00c3d8e7806f4bba9af3e77cb7a7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
15b09b06dae900777833fe7fc4b4aa426556ce95847a3e8d7548e2d19e34edb8
BLAKE2b-256 checksum
How to use checksums
37389f7ad00368f218f5f6b367a72d85f7a1ffce421f22c7c88787e11c87d985
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5c23b1ad869653bc818e972b7a3a79852d0e494e9ab7e1a701a3decc49c20d51
BLAKE2b-256 checksum
How to use checksums
590bb1773a7aa69763c336bc3be714c30246a5c4d2acb723e9f679f5566c9afe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ef9612483cb35171d51d9173647eed5d0069eaa2ee812793a75373447d487aa4
BLAKE2b-256 checksum
How to use checksums
ddfe80c594d62a7ff07730fd2cfc3a058498087436d8c938243e0610d1928f0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL aiohttp-3.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 1.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
2f2f69dca064926e79997f45b2f34e202b320fd3782f17a91941f7eb85502ee2
BLAKE2b-256 checksum
How to use checksums
cab5af043404814805fc2b74b9b0ce166cc79cbdfed720253777b928c85138c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 570.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
37951ad2f4a6df6506750a23f7cbabad24c73c65f23f72e95897bb2cecbae676
BLAKE2b-256 checksum
How to use checksums
f294af16a3f5baeaefe480271b852b8a18d063859a439183aff0492ed866619d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-win_amd64.whl
Size 551.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
b0e20cddbd676ab8a64c774fefa0ad787cc506afd844de95da56060348021e96
BLAKE2b-256 checksum
How to use checksums
9f06c64cec12f3480433e44d7a65b4087fad73b5409c8eee719a1cc48efddb36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-win32.whl
Size 531.5 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4aed991a28ea3ce320dc8ce655875e1e00a11bdd29fe9444dd4f88c30d558602
BLAKE2b-256 checksum
How to use checksums
4d4a8b095c58f8f8a3732c939fc00190761fb44a95cd601f18fbbf7a4acaf9d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
102e487eeb82afac440581e5d7f8f44560b36cf0bdd11abc51a46c1cd88914d4
BLAKE2b-256 checksum
How to use checksums
9e7a4af63e9951393397691e25aaf742044c66bae700c943d4f7c599da99ce26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_s390x.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
03a6d5349c9ee8f79ab3ff3694d6ce1cfc3ced1c9d36200cb8f08ba06bd3b782
BLAKE2b-256 checksum
How to use checksums
078b211d1fef10ed6f9e6fc0a70bc6e5658a8fdcdc6440fa5350663b4a2ee101
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
51467000f3647d519272392f484126aa716f747859794ac9924a7aafa86cd411
BLAKE2b-256 checksum
How to use checksums
c81194c3ca5ed8b811962de6f4f675adf9dbab28b3cb9e51b9823a5d655fcc9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_i686.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
5bfde62d1d2641a1f5173b8c8c2d96ceb4854f54a44c23102e2ccc7e02f003ec
BLAKE2b-256 checksum
How to use checksums
15f0cd8e6c2a28a3857c9ee71188d0f4b111847a37ab1c277ece61bcd5374ab4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a25fa703a527158aaf10dafd956f7d42ac6d30ec80e9a70846253dd13e2f067b
BLAKE2b-256 checksum
How to use checksums
60e2ffc6f4fb33a0f83b506d9b310a6b3028e868f67daf318f2ba50c625ed018
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c3630c3ef435c0a7c549ba170a0633a56e92629aeed0e707fec832dee313fb7a
BLAKE2b-256 checksum
How to use checksums
f6c4a32e3d81e716696c1d8149febb73b0d772eb12b3f9f1c039c94b7445a388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3af642b43ce56c24d063325dd2cf20ee012d2b9ba4c3c008755a301aaea720ad
BLAKE2b-256 checksum
How to use checksums
ccc558e46921955887814c7ca57569d695a45d9471aa48f09089999d9723e639
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 1.2 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
99b5eeae8e019e7aad8af8bb314fb908dd2e028b3cdaad87ec05095394cce632
BLAKE2b-256 checksum
How to use checksums
b65d2107ef289ddf5a7648ba98a0d4f5137c156f95d67fa1a81253d0f904f308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl

Download URL aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6f8b01295e26c68b3a1b90efb7a89029110d3a4139270b24fda961893216c440
BLAKE2b-256 checksum
How to use checksums
f63b2e3b8a5b19cdceb532c61d83077a09afe1f120cb876fb771b0ce577cc0ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

Release files / aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl

Download URL aiohttp-3.8.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Size 1.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.12+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4a4a4e30bf1edcad13fb0804300557aedd07a92cabc74382fdd0ba6ca2661091
BLAKE2b-256 checksum
How to use checksums
a46e212f857f9a400dbbedcaca13b99c8bb821a17a25b69e2286881f23e62554
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

Download URL aiohttp-3.8.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 571.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
473d93d4450880fe278696549f2e7aed8cd23708c3c1997981464475f32137db
BLAKE2b-256 checksum
How to use checksums
66701668029f303a33e5508de6825efec00854b0a3afbe3b11b4e3c970e03e88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

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

3.8.4

87 release files

3.8.3

87 release files

3.8.2

87 release files

This release

3.8.1 This release

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