Skip to main content

Async http client/server framework (asyncio)

Project description

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version 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 history Release notifications | RSS feed

Download files

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

Source Distribution

aiohttp-3.8.0b0.tar.gz (7.3 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl (571.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.8.0b0-cp310-cp310-win32.whl (550.8 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl (568.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl (745.3 kB view details)

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

aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl (571.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.8.0b0-cp39-cp39-win32.whl (550.8 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl (568.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl (591.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl (744.8 kB view details)

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

aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl (572.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.8.0b0-cp38-cp38-win32.whl (551.6 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl (568.0 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl (590.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl (743.8 kB view details)

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

aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl (568.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

aiohttp-3.8.0b0-cp37-cp37m-win32.whl (548.2 kB view details)

Uploaded CPython 3.7m Windows x86

aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl (587.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl (567.4 kB view details)

Uploaded CPython 3.6m Windows x86-64

aiohttp-3.8.0b0-cp36-cp36m-win32.whl (547.8 kB view details)

Uploaded CPython 3.6m Windows x86

aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (1.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl (587.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file aiohttp-3.8.0b0.tar.gz.

File metadata

  • Download URL: aiohttp-3.8.0b0.tar.gz
  • Upload date:
  • Size: 7.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0.tar.gz
Algorithm Hash digest
SHA256 1877c0aa9da644ac3e71f3027a14b551183e2ec63aaba7a99b972bfe33c569e5
MD5 264342834dd74589102582de4f9a64ea
BLAKE2b-256 4498f2f185361d43e426d0f10580059931c7672f37529381e1ed4145c5c673c1

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 571.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cde759e38ef2e48f9d531477e8965288507af3c8f0e94eef6a46b245139da435
MD5 6bbd96d71eb8446b4418b3c8f1856ed3
BLAKE2b-256 8266d9b480193e27b1ebc9f0062795c137ac1c632d267f2da2c538225d1138d5

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 550.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c510e5171c1e10c9febc23487854b62b39a9ab33d1f77c57d41d54b78d882b8b
MD5 565e9422ac4c2aad90a6d3080ee98d6a
BLAKE2b-256 b8d79c2bb22d144496a6563130ce75a2f41958910784d62a54942a3590406251

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 600be86250a017394053d6bc55267f5a3c47baba1a0df27b3233def55d41fd9e
MD5 9444a58748683a27b58b8ebffc04adf2
BLAKE2b-256 7df8ae14fbdfd221469d810dbfca3d544d2728189e982a6849fc5e69522d7f0f

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 c3e7f6b2176e1cb41ee582cade31e11880920528b23fa82c24e3333aa16a1abf
MD5 fb0041ac78a468fd1e22d2b747e95931
BLAKE2b-256 40cae3f406317bad07fa64cec24bf0f446bdb1983cbc95678cd980f8fa84bf20

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c12f2f0e154514b09e1d1e7f3648129f16de435be4ae2e337add32362ce433ef
MD5 e7c9fd28548f66182b7fe82c9802fc97
BLAKE2b-256 333e092eed49b2d7703b215ce32ce111c6c57578eb42fbcbd9aa97e0b1a9e69a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ad17a644fb03fdd4a1979b9e2531622c8cca956b075c66ea28c1998a2f17e6b
MD5 7bc221b145ac79d8383cfacea1bbb1c2
BLAKE2b-256 f12a387a0f714ae52f39b8c59545fa6100095f2a45f1caee4777af3e3938f5c8

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 366b1699a0308596f39529e017e1a496a699fd1333f9bfe6221c45b090ad20f1
MD5 5b6337dc4039242be67812c8a633f332
BLAKE2b-256 024d7f1e07b0b8567d1570bffcc313bfbc2be3f38fd4777e65f08e97bdfc0520

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dfe5a0eddd157088c1f1951d4add3d59e3c86bba7613e9db719470561ea85b0f
MD5 44bd17a1cbcbb9d6a405ce899f2e5c1a
BLAKE2b-256 22f10a6506423601d853b07cf25e91c72f8b3a3f62aecb557507ff0c06a95f11

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4b7a835bd9409d2bf7be43267d4e59edfad23ab4bd3b8c08d2bea2e6e2cff4e
MD5 0984af69f575f1dec488760bb6fcad4a
BLAKE2b-256 ba9b436bcbdd13628b9130445e7f761b7df9f2294948356fdaac6be4de3baf4b

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a423a47525f23a718dd43e832071e6101313c60d68ffbad10da4898dc23678e
MD5 19433f487d94f0a95fcadde608b8d0ab
BLAKE2b-256 981b9e0b34a1c344b236ef57889f3f0be24a149a7fa10deb9b4e5077eff12144

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 741f886093b593133ddd11cad9fe1f75d433ce3447bd281137a957a366142088
MD5 4ea37fe522191e7bc4abd582fde38504
BLAKE2b-256 0287ecfc981ad2bd001539b13548702e68cfd6b62a6becd0f0d9e9be0a4d650a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 28d09b342a6f51f8f6e0d8e932240ad89bbc941ce1c382e1f1fe87464fa2fe32
MD5 3ba9b95b7421703e6ce6fc0b192e807c
BLAKE2b-256 32494385b1dc1d4ffb06fe56be8ae0e0929f449accbe7303c0ccd304e29381de

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.6 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b232094045efbba1e2040c49e4f07296a114b582c9d15a5863279b58d75a8c6d
MD5 832c722b51d593d64bffe9877caca8e8
BLAKE2b-256 d09d73957f389c7206b87eeef70df51a7af1ca8de8e6863f220bd0bcc8d62579

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.4 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c97898b78c5ff1d35625aa72afbd177bf4c949b8b55cfa24296acd8dd6b777e
MD5 bdeadf708f2cf87cbbcef81170ad3319
BLAKE2b-256 6b296189c6df06811d6faf864725d9cf2a2cc9389c7615de07fc3db0175ca098

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 745.3 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a366d71f5bb179e17d5d2095806633e14e68af7166cb401e8021abace915e587
MD5 eac813eb57384caf0596b5c8992985a8
BLAKE2b-256 c06454e5d96df9d337ff1f1d587c5340fa9e9dcdf3ae22fe2781d7be18bfc315

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 571.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7544498612ce91247f9ddb72e97d6413a9f88b05b67b6f3a0909497cbef3e8bb
MD5 581e255e02c11d1d8095a270f4143c9a
BLAKE2b-256 6b57e095febabc73d33f0ed645609a55eb4de0a5602e7d22c9f1274cb95546a6

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 550.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4991086a7ecf2b11c11f69a9296571c7086414f8fc2d4c422f8097f44731875f
MD5 677c2581e11ec11692e43cac78caf44c
BLAKE2b-256 fb13317e86f632fb17249c4824109540cba1a0a94c03d9a2203e409b7e0fad80

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d3b8a7fd4939919b7f7da3507fece85330259fc40f3a06810acf9d30bb5022d7
MD5 6e43417487e54eb79ec8e5f0f523ac85
BLAKE2b-256 4325cd4ada935f2a0cb7da9ebf1917ce8d13f34648869543b0fe6fd91c9e02a5

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 fe00030d33419dda4a52a1cfa2cb2254b10b6e2b90038d0f6d2d7819cd57bc92
MD5 92296c766aad5c1f03519ab960e0c8ca
BLAKE2b-256 becd478c6b6171dbfc2a10a88b835734a411124e7ca08eb1e49ee5f579d0c472

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 6d81cac9fb2ef36c02871b58f141015e1aa471901b54cd8b88c061516b7f39a9
MD5 b17f176cd7195a613869ce944a568087
BLAKE2b-256 e26494b7836e9d2d96555b9b4417cbd6d9c74108c5eb9cb5525778c97fb15a27

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e759b842b724fe802da33517f6edbb89c3c91a04b8163c01370af4cb15e56bd
MD5 ac1a6647db2d18d6d386d6f488a44ad2
BLAKE2b-256 d7d613bbb3d67d87f85e4b5c60e7f3b1dea38428bba2164fbb300531e35ee77d

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 489cd7cc6d12855906f1c4078b44df81a0eb0d3e2d6cf1ffd8a04dae779ba2b5
MD5 015bba1dfa9f9b321c40856153b43964
BLAKE2b-256 247199d74c704e411001d2b2335515ac30b25d8d8339ab48231aeb6213a110ad

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6fe79c60ccdfd2349c6d1030d07e86a395b836c92465c1c8864af7175595b7a
MD5 aab53d91307138617fe065957c2be76a
BLAKE2b-256 da86ecf44707bc81a72f5b82999403a57d21b831464d0dd1edfaba4baee27092

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2dd6bec13182b63c15afabeb42805f1ed32a5188b1baa005eb71ade7101a7fb9
MD5 a300e706f56d52ee69d3dff37f2d4400
BLAKE2b-256 fa3bbac955adab69be6be3d68410366ef76b03c41c3c3d9afc3dc2d13e0bbc8b

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26d6f55c56a185288a795acb350f7323657a06f2b97a83368ddef84f2b6ef196
MD5 bda9c3e2f627852d241b15c0366a8758
BLAKE2b-256 0e27f9a5dbf562681b1bc60dd09afe5a1fdee78f71eb0d957da79defa092dead

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d34ccbc30f75679c8ea1f51577c53820dc2f33736368a44562f7f3cd67814080
MD5 18e8fbb7d58ef3d7d81e35429ed0ec7c
BLAKE2b-256 4eb6a2c4407d5fcf80176e7cd686fe4e88e86b6d8842a427cd67718e176df511

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a67bee21339317c821ae9c1cfe9f5dbbc34d76690fa5518b20d63fe12a23dd58
MD5 de9c0f98b59cc093560dfb88590feefd
BLAKE2b-256 6be9f58ae2896c067aca9bc6dfe6069b1f3038d6da34340c807344f5c9ff1732

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.4 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f02613e77e579a8bb11e4a60ad1aa89aec626671d05972cb8b6befb9f4fb14b2
MD5 5e947094a91e565b10b850b9cd267086
BLAKE2b-256 0a1f23bb2b625616307f31890401d5ca9e13a44a4550ecc668a97251bb5be03a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.1 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4bbb2be7d04e564d2b4eb9a615bde57cd56e550e648f11acc4a3b354d43f0c3
MD5 c5c27e83820113005b38925d16837081
BLAKE2b-256 073b8cc237f5d841e18b3ca20f4165abf3c150a68c5450c1a53dc33683ce98e3

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 744.8 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 da7d583fd4a5bc3bd0f8e816e6d1fe5ba9ee723c76b0139f6ac56743f756c663
MD5 17fd7ecefe1802331283d462dd6b7b47
BLAKE2b-256 f0ec1257f4767865162eeaaa538519856708ebef9396685cd390b45a31163fa8

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 572.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88c1b766e69bbf1cea250d8efd707c280c15f47b080467f7501f07be8f2cbae3
MD5 535fb72d8110947c1f460aba5e98fd6d
BLAKE2b-256 f093fabc76155ec3764746e36e2a324b9aa47591a9fc13ee6d9a5dfb6eb925a1

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 551.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6edb42ed6d7fc82a1dae21600175c642e5b91d86620913f430d1c55f51995a7f
MD5 8c95c9bbbe0cbab7f71411e7f624713f
BLAKE2b-256 e8e6b1430f1a6d5ce06beb667577a0a262a52eb8f6a8c1aa0e25bf72dae49b1c

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44edbc23d26d0db09f470056a5f8d5c0e138a79869852be93a86c03b85c20dc5
MD5 1f3e9f252095e5b6458641dc3d35f8fb
BLAKE2b-256 7d61711955836eee4cce054d543f0151b6c21dbde4e73f948d0c82804f036e33

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 680eaa83e9eac4c788c8df9dd42e8c9789da9ad060f7931382aafe28a5067811
MD5 18e1222643f7920ab9461b2835e4bb25
BLAKE2b-256 e091a4aa891dcf14b16804bed44e1353b920ef2f7b3b47fb846b8383ffcbb3c9

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3119f61824f65783ba33cf0c4ab6dd2871d304fb6e51104864a86bed5477aee3
MD5 8175d7133dd01cc7d963b513c30d3e03
BLAKE2b-256 bd4fcda0267fb68f665c587877bf8c88d39659766103d8eef441b954c982ddbb

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 09d3066ad2e2f50432b5df73c88e9b4ec0fa2daf9fde8fe785487c76550b1d39
MD5 ed967a7748c6ad2742d13d5b994141fb
BLAKE2b-256 f545c93fcf5858dac82275447f1dcfe3ba58b9b18d280b070403b1b47d62b3e2

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b2f5369e658ec9d4529658a432c4bf988092eb3f81e1d24613ae1987d960eab
MD5 6a62fde5680b4515b4380006729f34ba
BLAKE2b-256 92b2fe62f6fb2bd8580127fefd0c591fb58c62dd787413ddbfb6eb6c8b5113a9

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9103fbadd38408e7a07cb544d398e67d217b01d7a10dc27fd3743dbc2748b75e
MD5 b921a59e7797e7a0b0d27a377db03bba
BLAKE2b-256 da931ed85560f9271417d3ce861440f9959714d372b087e9f983fbba56b2e776

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15c0cf061be891d2e81bf5de4522be6db749f01cb4217ae864c2684c2b87814c
MD5 75ec1bfb3be0df52b66afa21ee92f90e
BLAKE2b-256 7c50c941ecb0503f8bafa4e922a1b7862823fcdb8bf366e53f2d4f7978f07c2a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b351ea6cb34bf2bf6c7d2565391b67c1f704520dcf98936f22ad5fd2f2ef8bd8
MD5 4bda442811d8ca66b9661bec04da7d76
BLAKE2b-256 e6454a354a2552f4f40580c1560ab5a227f2514fe6579851ea18c2995b914190

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 856ea1f5966d7ccb0d1e4ae7846cc813ffb969b51d3b5ed739b5674d90eebbe3
MD5 f802cc65832abd8c970300718333bdc0
BLAKE2b-256 a71eef36d17ae0f1d3f4c5fd60d755e1c006017d07cc29d53ea567cdb3e9fa6a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 edd2408840473ed86a03e7591b1840b2e76bf2d21119a0c8469442e6a1013c38
MD5 7752c9469a96e0930a11b67a5508fb00
BLAKE2b-256 db4df4c10a45c1c67915038d14ef419b7c05bc54336e80b07ccce0b96af8404c

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.0 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71e17141946a5caf9a218e5eed8bbafeb0a912c6b9e9597a3da2ec3ffbfb5c76
MD5 812da5c73ccc6acb92f3f1ff2ce20fd3
BLAKE2b-256 73e77f870097e8bfe999b2199bd89a497a0511386f6bb17a441a4e2684f0d789

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 590.4 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 62444dd7305926b5d1bf3f48af710a6226280e3716b4200e3138c0359e6f8758
MD5 273ff1bc4b945a42db82836a6de97b79
BLAKE2b-256 afb64bdd3457f8d3db1fc4d7caef792705d1d602633e8143457581bbb43d93ac

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 743.8 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e04f78a6a2fdc34b1c33c7a9d919a841fa1c535f02177b9ef43f0ab3db2769ae
MD5 ac295524c7ebbc168f503e6106980efe
BLAKE2b-256 41a1141e65cb9d8f633e7777576654bf444c592cbea5f1bbce59a16e6e21cc14

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 568.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f72121b684ba1f0a8a9609bbfceb8c4b0118b10524eb565f9792ef6e9e28a531
MD5 b20dc2d215af9f005cef10cee7e22030
BLAKE2b-256 aec0bbb431ab63807e33bfe8b508df2e5ae487cca149ca320dbc05db9ebdc1a0

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 548.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4a71259fc788ec8a8e1cb1f6c90bb285367836691c96e25f69bf98eef35f80bd
MD5 69557f4dee41c8e2fe493a3bd0bba6cc
BLAKE2b-256 a6d9caf613b5e2435bb124c254db353ce847a1ada984f9e6f83a86462959a036

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f942aedee46609394e8903e05e4029dc287ff42002be432fc7032176d82b4449
MD5 b72f881da1358a71fde20b9cc22698f3
BLAKE2b-256 097f78d17540d5fbd789f9a66af0c763437f613b12716ffdff7af84250150894

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f4a6be09c1865b9d6659d27f0d5bcd861f8c3343e3addbc370247d66e695836e
MD5 efe3be6e4b5afbb7cd2e83bdc378d39d
BLAKE2b-256 eb79e2580ebe784bf7d2b307f718300a58873a0735c6b6bfaee7cd96bf310698

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1dbf266f70a7ece89fdfcf6b800534385ea944e441bbbaa0a1ec98088d1ef456
MD5 f9131970ec3e7a69c140183bb0f629cc
BLAKE2b-256 34971a0223086a4cc775b21d78ea3b990b44a9b13a7ecc1f32977caecc0e02aa

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d2b35fdae4aa9889a81d7047160692155f25dc2ae398b45947f398436844f3f6
MD5 e03c49a6ceb92ae5c89ce228116764e2
BLAKE2b-256 810a23e9818bf229cbf5aadfa6f9bbd3da21c63524755283c10dd18f3c468459

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5c9be827ce9446513c0d35a92e228edd38e3d18d71b0d3b3f15baae3f68ddcb
MD5 dd9dd5bd223ed8b1acbe0b7ee0bec2f0
BLAKE2b-256 9a4b643b8b31c6eac230add0ce2b34ed905302265caf8412300d20df50f7be79

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46ffe95cef6604e0c4517fbf500e6f6ae4977e872a3561754a90d5dd0ad9f960
MD5 3cfa29d21246f82147cb955a878c647c
BLAKE2b-256 5121e126c22b5e209dee9125db22f11e72caa1893773b45311840f3e4f126615

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86884b67b28a5e5888775db4a5a238b1a6b4afb2ffe92975850bf4e9a94b2c2a
MD5 4a6b7f2479cbb91985b1ff05c25c2515
BLAKE2b-256 6e8f62729760a2d90c6b8fd60b85e9c168a712059d8681e757248db48adb9962

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eec2464fece785f6f17b1da3cb42c6e3ed73bb16647393e782fc2ba7ea648996
MD5 449f26547a268fd1b081b268809ff528
BLAKE2b-256 ca37b32eb1c7c6fd028d667d4f7ba746d46090002da4a16d54f14a759f8e6ee8

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d3add5dfed1cef30599c884d096b193ab7f96b20b7e773f8356ca2fb31530096
MD5 0a13f666faba983fe98b83dc29b21a00
BLAKE2b-256 4110b488096e495c94adb3a47957851ca31d489cd469417bee8a3b0c3def3b9d

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74b87354c05c5226cfaf219c583a53ea53f14d0fea74c6e1aa3e8465a5395a2c
MD5 f592e5a6b823f671382bf938ce125483
BLAKE2b-256 63f9f5f40bd67adf6f68d91a9ee63ad5f1b660603c45e13a5a823c3ad645591a

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 587.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7de6084febcd497b38f6fe76dc427b988a53a52d788ca0cced4e6908919b5a65
MD5 4e04f7a4caf6b94d280e6afeaf846dc5
BLAKE2b-256 2c1b7c1521449e4aa799ec04da1e35e23e272baeb05fa9fdc63fec073dfa26c6

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 567.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 027f238261dd89e2b3e0b04225cfc115092dabab82e51ae547453395361a08c2
MD5 6932ced4e62023cf48fa0c0b19872278
BLAKE2b-256 65855546684a1a1e811e5f62b9ba5ecb306b2e2fcfa71fea6d423cdd34a103d8

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 547.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 efe99d7e3fb0beae8fd7c6afae5fb57fc92029129b9fccbd617a9c1cd565e27d
MD5 4142f46e17b955443f8a09ec0cf0db9a
BLAKE2b-256 a8ca35babce7ff174cc037de4a60bc8c1d634c2fbe0795009a610a6f4f1a6887

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a530fd8b5c3dac637b460630958a3282d819cc7cce76f87d570ca1e435dd9a2e
MD5 c2fef61359e4b4aaab2ddbc18413e5ea
BLAKE2b-256 caa05ddb1602d1f3cbf371dbb26b97db1a31a623c54d607d6c5c8459c632e245

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ s390x
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 73752bdbffa520e79261ed2b951b6686003cc71e231fa69c273525d2cd22883e
MD5 af4ef92e8c6af8802579b226c69ee666
BLAKE2b-256 16184792fe152db1706e247f78dbcb48f0bd5107ea1c50931dbdd733ba68955c

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ppc64le
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 be745ec891a25994f9adea3491349a30fc2201da0e0ffb55048fe7e75b339a67
MD5 b49b2b2c2be8b9fa72658cce8bc97d8e
BLAKE2b-256 3a58a3e87ac4798f9df8b8754b97844e2deff9e7bb77311c21f55b3faac02255

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 37f717b7d06b314c64f689c89f3f6ecd5c136a2159fdfc5ecd2eb8fbb25e138f
MD5 2c567a5739bb4b34615aba9d19b2cebe
BLAKE2b-256 6586ce354fcd78e1cede66da9b9d7192d338bea6c63bdd213217bcd5efdacb08

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e4a5484f14563132615d1e8c21592b6e7c8886a8f27434572aaf229f54e2f08
MD5 bd1bbd96dabef14cedbf538c317e8965
BLAKE2b-256 09a4c9586249cbd8eba23e179e37ba7aebf85bf220d5377779c279a77d31d4b8

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a0561575fdd6ddd1f8bc3730c1a06223db7ef71e3069fbf5b34b5b6f3aeb416
MD5 4e0cf59104ea413783b6db515c5d6152
BLAKE2b-256 adfef4cd69fa5e297c043e2ad58924faab36d98fea1aa48ac1f668c1e5e4923e

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f44d1d9d3ff2fbfdd519151d79f1f5cf8186d0291dc717a4866734334ebd1a6
MD5 7be03e98a6c521cc43cb5a0aa6ac253f
BLAKE2b-256 855dbd0d12014473848264e1b48605a33417aa2e1cddf4fa2608e116f52d142b

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aadff1c7ce77fa007429fe5268644de6ea783f93d72c634f473639713e11b194
MD5 773a78be496e1bb2bf6468cbcd31d74f
BLAKE2b-256 2155db1c0bc346b4a40d0ab1b82bf0e4a8710717c93570f9b1d69d023c53591d

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9dd23be08d5892a004ec97bf463944e93ec798ad68cb4ba3988e67740c3ac091
MD5 96b0f3778da2089837b1a553fef722df
BLAKE2b-256 a5c7e11e723d2ad63ee70f82f8b33fcf3db0d1ecd64db10c4f611d093a4cd6ff

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7872c018a20f1a34ad40416aca83c781ecb37fb828dcbf6891d5983834057991
MD5 b02fff0fb49b2c07db91046fdc6ad56c
BLAKE2b-256 97a66d13fcc31a983e031db9d995d40d1168e15a54a0256378cab549999d082e

See more details on using hashes here.

File details

Details for the file aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 587.2 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for aiohttp-3.8.0b0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c22bcccdc0602165d186c60514ffb4c133e43ae73351c17b566efadd4b196100
MD5 cb65b03a414f25eb29d8069fc35d8435
BLAKE2b-256 f8bd211ddc21fddf7fdf391e61876dfd49362ff9141179c606aadcdc60009e6b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page