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.0a7.tar.gz (7.3 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.8.0a7-cp310-cp310-win_amd64.whl (571.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.8.0a7-cp310-cp310-win32.whl (550.6 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0a7-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.0a7-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.0a7-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.0a7-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.0a7-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.0a7-cp310-cp310-macosx_11_0_arm64.whl (568.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_x86_64.whl (591.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_universal2.whl (745.1 kB view details)

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

aiohttp-3.8.0a7-cp39-cp39-win_amd64.whl (571.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.8.0a7-cp39-cp39-win32.whl (550.6 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0a7-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.0a7-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.0a7-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.0a7-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.0a7-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.0a7-cp39-cp39-macosx_11_0_arm64.whl (568.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_x86_64.whl (590.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_universal2.whl (744.7 kB view details)

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

aiohttp-3.8.0a7-cp38-cp38-win_amd64.whl (572.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.8.0a7-cp38-cp38-win32.whl (551.5 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

aiohttp-3.8.0a7-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.0a7-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.0a7-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.0a7-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.0a7-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.0a7-cp38-cp38-macosx_11_0_arm64.whl (567.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_x86_64.whl (590.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_universal2.whl (743.6 kB view details)

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

aiohttp-3.8.0a7-cp37-cp37m-win_amd64.whl (568.0 kB view details)

Uploaded CPython 3.7m Windows x86-64

aiohttp-3.8.0a7-cp37-cp37m-win32.whl (548.0 kB view details)

Uploaded CPython 3.7m Windows x86

aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

aiohttp-3.8.0a7-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.0a7-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.0a7-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.0a7-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.0a7-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.0a7-cp37-cp37m-macosx_10_9_x86_64.whl (586.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

aiohttp-3.8.0a7-cp36-cp36m-win_amd64.whl (567.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

aiohttp-3.8.0a7-cp36-cp36m-win32.whl (547.6 kB view details)

Uploaded CPython 3.6m Windows x86

aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

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

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

aiohttp-3.8.0a7-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.0a7-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.0a7-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.0a7-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.0a7-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.0a7-cp36-cp36m-macosx_10_9_x86_64.whl (587.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7.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.0a7.tar.gz
Algorithm Hash digest
SHA256 ed20f2a635ac9dd0e09207b21349229fc6e3bf8642895abaaf8ab6e9e713463a
MD5 78b01f4323cf4179ad6d178b0cc19cbd
BLAKE2b-256 3909980dea65ff9a3e156e57712b444a68240d3a0879b3f4c324c0a7dcc183b6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 571.2 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.0a7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9ad648f029f8603b3025937ba66d2555d4e2a0f606693e89e2a1fb3479530dfe
MD5 176306e7f456cf4080ca3bdc74904874
BLAKE2b-256 e6cc3b385af6bb6430d1345a4d6f38597f53d650ada53b99c11dcd95405c0a10

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 550.6 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.0a7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cf8374aa4e3fd6e849a48ddefaeba6674d338d85c525ac38bfa4b941ec1359a0
MD5 990214ffd748f4baf610c7edb2924835
BLAKE2b-256 0bcd27984e41c8d99f0d658a55efe5eb273205397dfe871587c9e028f9453445

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc210b385d4cc784648b6c484e4c83e23ce1473f8d1cea5e3add0c43c8eff79d
MD5 3b21b28e244bd2d56fdd81ff1fc89ed0
BLAKE2b-256 48c8345a6c180306dee815ae5a98494db2c7e9c1673e525aa2a043ac02ad4130

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e7c12831bb295b3fedc8bb91d42d41003ab1272ce8c802112cbc740d8d6d2649
MD5 4cbba23795ae3a6af4e1e53461818160
BLAKE2b-256 f161d3dcca4b1133168e9ec3014493b80cabc07bb3cc71ab0feabb0877afce84

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8f38d6302ebc37bb877ff1776d877282d90d3cd7781441904681d1c53ec6bdd0
MD5 bcd5ed5d09dea00dd4b62cf67f39e55d
BLAKE2b-256 14983110402e86ef8ab5835b39cf6c5144f1fde76c8cc6eb2d421f244965b4eb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fea5d837e363b26ccb47e6dd00986aafd9ca49b08ffc72997664e202294cb297
MD5 19ac318595a7169e73ebeb68309f7c05
BLAKE2b-256 2004e35f3338e2918cca4ae21dc12aa88d06b8b343b2bb356dd67ec842ae960c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5ba8e3bcf85903345250cb7eabf4ce4efa667b07b70074cceaa0b903f61b4f0
MD5 fd85b512d9c2b44fdf17a6fbe2825647
BLAKE2b-256 9a776877beb3740a3a3da8fbbd8f094d563458c00c8d3415b59e1fc6468b1103

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b59266d32472e3e1b981c4c5c59ebbf0f7e3a5d032260b968ab567d381d83237
MD5 602649b2d6c0b097eb37086c901ea63f
BLAKE2b-256 be6c77bc4354e135790e36166507970dda2b0170ad75e100e84596075a9cd209

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dc237f5c14c54944ce925c935d68edd9ea60407c620cdf97658fbea9c70e2d0
MD5 10621a2066e6c691a134e3170f033eee
BLAKE2b-256 8f732124f1fda4daa5c2df5b30089395005bc49bc640c26952aa32dc7bd33a46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d834390f58d799f6316478367ee5d1b8866ef0965cba961d46be3043dfca2e5
MD5 d94edc6274429e05bbdc3abe842a90cd
BLAKE2b-256 db8e25409a8804adcc25cc5253214fd9ca3424011403c8061500c682dda7d57a

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.8.0a7-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.0a7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e05ac8126550b6fdaeb68afd1e5198df40b2af48ee4c96972931c87abb04ad8f
MD5 8bad5685eb1b0982ce6e3e22306fb1d5
BLAKE2b-256 c135bed0e05bf0576ba0cca3bd623f95e2e579b63edfaa2ee612bba84811bb7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b548e25104716a6ec9ea872810ece87992aa7a3966757421fa0b1b59f44ad4c4
MD5 488ca539d8443f94855583a04de93046
BLAKE2b-256 c3e007dc946fce4fe943a663713375233e59931c8b17dee37dca562dcb73106f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.4 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.0a7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c3864d5efc91a9707de1ee3aa9c70ee0f8b6c784cb44b3331682494a998392
MD5 73dd682d86650807bb90b1462c8b0d74
BLAKE2b-256 7a67ada5e98de2fd1439461dd4e1c370959b8673549dcbb2bf67c58f9260d465

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 591.2 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.0a7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07a3d46c8796066fc538fe13fe3b2e08f1bbdeba6592434558a5ed94490b066c
MD5 4bde7a9160042166ff03e8b7ec4d65b2
BLAKE2b-256 256da2f8f9bbebc898225c03ce48e46ce52b1062c535206b07152302d12b9cbd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 745.1 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.0a7-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1f672765df9fdae86d9f38bc1d9bbd2a8ceb31947a4330052d99a22178dbbae1
MD5 159e86fbe7184c1c2e971bda507b9614
BLAKE2b-256 4a47a1bd5bb7e34398b697d72d9593bd5d99cf16a366110e6e4d4f3e52f1c3fc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 571.0 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.0a7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5aeb958080c38b4244a9150de1e4f9587f4e2a80c44d473391c4d6f1052262e1
MD5 aa324024709f8452ed07c4ee7e25b177
BLAKE2b-256 994f1671a433da2190630360c474b06ca4de6203aa0fde1a44962f459d9e88c6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 550.6 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.0a7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8498be5a4fe149a361cc6329373cb1590f2557fceac2707c276823f1d9e48216
MD5 53010420020087c9154f5c07f3fc6204
BLAKE2b-256 326032d37c92e227095d25ebf72d5946ef96bfaf3f792fb4a87b801fbabb1ff5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3759fb5318a5ea851a981ffb39b0572c40f17148dca7d9873cd1f3cb638406fb
MD5 cab201b1a4c0600e05e12bbeaa41d314
BLAKE2b-256 729bc645d7005ae4a72fc15669481452289a95f71f3fe219f5084d347e41425d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 989dd7ef5e5ff29cf300c01ab32edb9516ef4060a91143874ba24893e97cd978
MD5 ab6aa3a876620a2657d5818f83156509
BLAKE2b-256 bc98056c86f70eae78d9f026aeb5737e4622b7d8193506083b1cd340811db75b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 95341a2c48dc86af1b1f3a49d626c12d2754e8a854c409a05704b56c82349dec
MD5 3f1687be1cbe5a8b686b04389c68561d
BLAKE2b-256 e086e2f171789e8287274e3ccd584bb50ccf51b56c14459886535298b9b89737

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 82156da69d67fd274bbb75d4260019d1eb4d031c57a9d5a317afec726e24f8af
MD5 cdcdb418c3c9e8c51cf14cbc9c18527d
BLAKE2b-256 435b08f7fa968276d2fc2010a2db3b3679eff15712e47237e9973fe718475a84

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3458f7e1709b69743d56bab2005d8d1065cb9cbb42c2ec27e0841e9fae1c4bfb
MD5 5f69786478aca4a0a30ec0fbfb52d5a9
BLAKE2b-256 1da640d6c2ded77279e90ff1245c59a1af762ad067d041ff8801339734fb321d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6998da4b4e6bad2cd11e842679b1a6f3735326511f66d19b336087f7cb09bfe
MD5 64c07dbcd43ec573a615dc0d52e3ba41
BLAKE2b-256 91e643785afd1cab14bf34193c4dce9447cf8c6e6c57b7b4e9849b7d7e6716fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4b39264b9e5c35b3ed7a4ba8125a4e57e0b90b78e9983845a30499ac397cc6d
MD5 e09ef1866d15a55564e784469c8d63c4
BLAKE2b-256 ffdd06834e8d157c6d4c3ee95b75ddbe5a90cf7fa3dee7ef8908fa29bad94b1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4bd02091972bba25c47091335288cdf5587728f65c943dfdb3dada622be87c6
MD5 03f4df71613d486ea630bc2e53db02d3
BLAKE2b-256 72a0ead79fbffe6e23c426d54a8baf99b8be311e24a69400c86105af8eed4ca9

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.8.0a7-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.0a7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bc8673a896ee82de0d3a2c6e07a961e03c68e263486d2fd594f0a996702d193f
MD5 3a9ab7ce5be5eb14625d6210776e916c
BLAKE2b-256 2c99da1d05299952766fe32e944b4d452d8456b4d67c304b722b61caef5a6f4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 57f7397a0d292b001f8dea65b8942544aa3e59a7aad9c6a08ab0fad0a61ec97e
MD5 f092d8f8083a3c54aeb6884202bdd9b9
BLAKE2b-256 3378323a375ccc2b63d2b43eb2aa6b6acc333e08d533d01d661614e8d57416fb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 568.3 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.0a7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81dfa3beb82bb1a8d6dc321c67a33228f42df9b2b85ceb4948423d49cb88c7d5
MD5 9ba557a68f5208ae76720df8b52a9676
BLAKE2b-256 ed42ef9eea50a9b9f272cb175cec2d3cf99724949ff949dc5f3b931e86c83dea

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 590.9 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.0a7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34bbdfd00b7133534d9b45feafa6afdfbaf6c8632971b1bba24fa27f33727cd3
MD5 38596f1b998f9e88c9b65de8a0fc65a2
BLAKE2b-256 3a24ef38a5b3bc4008f3ab72e99b3cc81b3d2bceb2abc67d5d61ed5a3a52d7e2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 744.7 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.0a7-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0bdeacb631424dfffeb391b82a1b6d8fc54ab65541af798644136454f82db43d
MD5 7825e2ac34e27e87205941ec318f0fad
BLAKE2b-256 49e9960c4ddaadeccb4410676aea2e84ee18ab382a2dedc451c150ffd34a3f64

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 572.1 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.0a7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9cae035489ca6a43938a451b96f4a6f0630dd341105499c8a58fffebce27d0ee
MD5 579012c0d6b61e4f051efe03ddc90e1f
BLAKE2b-256 4c46a738f44447ec8f72511059b9ca885289a3f190383b3b9a7edfa946564818

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 551.5 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.0a7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 fb6436b37d4a50090578ab7d4e2db7528bef97d9c074a68d93f58685da5edaab
MD5 df7a3af8a577104ab18ad5b9f393113b
BLAKE2b-256 e9e14a44f322018457948d7901fa9a0487477c35beaa981e1f97482526256d1c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 464d0be76a9d12d332bd958823a4fa40a0f41087493f94c6769dabca2344c00d
MD5 3a6cbfa2cdd6d42b619c2eadbf8951d9
BLAKE2b-256 c07554de2ec0495bb720d0570cbdb06462d0b99458076b256e1a26484ce9e44c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 fea4e433a7ee458cd6c02cf069d1c4c6ebc8e5fde00d8b86b51cb08933904e7e
MD5 10c0626d3489be4937148347d996ab16
BLAKE2b-256 a0e580561f297586c8e1a541b017b3fdb989d56cd2b14871a4445b3936dfbee5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a261e41440ad776076510e311f5642c2153c7a51ba71fe34b57fbe80ce9b45d5
MD5 ea00a2cca94013d4fc2c16eff7225af4
BLAKE2b-256 6ab77dbdaec6e8c5e4edd974266c597c0cb81e4539dfecead961fdaf3964d077

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 02e45941bb2f7ff4f0d51940150994993ac54106a43430656650bfc46e0e4bef
MD5 714152b407ce4ead691efcfc22b8f800
BLAKE2b-256 e171c6443e74ad61dcf60f7d4eff882cbe9f3a78b2f2f33fd70eac8360b30418

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae848e622d704a66203705aebe6b73d97ce96f25d46a3a95bd3fe0239cc2cd60
MD5 4b8a1392693583cf17846bc419f5b1be
BLAKE2b-256 72af68d337631aed3f8732b7d60e80d4057e35df5d8d05f99ea698ec6bf643cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ee7f30d3dc347a808b991de33c85086fbf619a38c5ff5f0d6092ecfc3d3be74
MD5 70edfda40f6afc2517002d960ef0f81d
BLAKE2b-256 0d8205001f11fd57a22d8c065a96afe647545cda56534fc148f4f0d8eb772f54

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 318644d335fec1639e1160d4a9c033714841951e288e162e632c935f105c72d6
MD5 2668d68cde8d39251413a4da9c3c4a81
BLAKE2b-256 cedf92ec59cbe8ce4e80034cbba0617e7932a9df5c8b48a3d8c9574848438b54

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b4e9959e57a46ebf2446b43f04f0eac95fc0e92d6808cad5e52c061e11c1690
MD5 7737c495e303f992df7f65b520cc43b9
BLAKE2b-256 e04576033d58fd5544718c49685be140b5c90926d43319a9578bffc1fd7e8f38

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.8.0a7-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.0a7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 bb00745431194992b04a0f8c22b7451e112aa4bf1f61351a4a44cab930464398
MD5 aff7f1c3c846587461d785a1556d67fc
BLAKE2b-256 b0a8adf34034873b1c69aa3aeae3d671596a065a90e9100f3234686210c7e372

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1e3e9454f3a6b081127f97b0b29ed09f575487029aff57ec17f24af9dee0b773
MD5 0629ac5510acb71c6971747dc92cff07
BLAKE2b-256 087efb544a454e87f853512022ffea5d2a25f22507fa3e7544d63e032293c3c5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 567.9 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.0a7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21a5f48be649e4f3788030ee3acf976ca62f4b07b1be19d4bf9536bd7c23c943
MD5 4f9b14e986e1e79ff23089002687cf1c
BLAKE2b-256 96eb526bec2b01700fba007eb6b1377fb8d783cb6cd25f89e101f7c90659feef

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 590.2 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.0a7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3586eb9424c7b7f061fa2a76498603564fb245061a8cb258df7cec20fd8a84c
MD5 05268bb82120d84050b422fcca1606a6
BLAKE2b-256 edfa2311f4d912e5a588dc28844cfb98c035d324b440a115e820c87e64cf4b73

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 743.6 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.0a7-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 22bcb847dfa8fe5112ece76f4bb896f9204d59a79ee59ea7602930e30bba17de
MD5 33b5b1cfe30c6a98395d21d7a2af1f8f
BLAKE2b-256 7d2120dd60aff29789f5ed540b66956d68ff8cf6378d11c431f5cf18fd9c238f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 568.0 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.0a7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1ac0a11c91f9f1f14b063cdf5730331197c61d6c1ed51fcf6f5a4c482701575d
MD5 a88ce5a8483c714d09eff8465213af95
BLAKE2b-256 a82976007ff37bc60e818920e6d115032287d161b0f74c7bef9c74eabac05ebf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 548.0 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.0a7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e557f5d9552c72ba46f7a520bde126a3bfa59dc672a6457c5cca4499d8a2be7d
MD5 7816e1a46fd523805563d89df913b1c7
BLAKE2b-256 d899d6f90a3c10a36e6022d7b529d9ea72552ad6416005ddcad2750cf1a511a2

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4f0841982bde50b14643c347ddaf1d6ecd8fe3f85beb9352887a8a6516fda296
MD5 83f0692d02d97a390cf70cf3fd1cf1df
BLAKE2b-256 23872dc18a804154d1be3ce48763d3ce0c0bf77af527cf4c4f7e306e31fa9c7b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6adca096df4ce6abd90ab07cb5a18fa12c52d8ae9492b004a1a403a0ea5bbae4
MD5 6ef9e5401ff8f4524fdf068b0db28f19
BLAKE2b-256 f8ab21cc0f6845196c8b56265ad0b5a7ed66f9ba4c7b3dde6844dc44eceb2da8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 655fb0266b5692347c748145ad77479743a92f9ebcc65b2510584dedd706f242
MD5 1fe2cbb42843a2578214131cf58b4094
BLAKE2b-256 f222ab3432f4f10a7e77790f7a360cf84fe7ccd909d0c0e00d85e70ea37546e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4aed312bfab6c06803ad236ce67ea98af0120a72b01dd2803b917af6f227afce
MD5 690f256c4eff7e14dd0648f10059c204
BLAKE2b-256 564f96ee72a816a8bf9170377beb409a63a991d32681a78d24bf00e298c7529f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 296b5d3d066e7b409ecb938d53c233c0d5b9665211c1e5c2876d9f5e370c32a2
MD5 c6238d690742c047c233dcab041ba4ee
BLAKE2b-256 5b721e486ef001653a9cb9547ac0631ed1e8f6ba50c1e4706ca74205f0210977

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1615cc69a049c623b69c267025949c52760329bb509719def5ad916b3ff8f7d
MD5 c641480a1fd1cf26647b81ebd9b2cd84
BLAKE2b-256 c8d024d0fdfcade4a076a24d71eca564dd6e73210cc48d26f01389772f087637

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f9bef469186b88717f09205cbba23b4e91155b74fe5afc68a8e4e8808e22e942
MD5 79cd9c48cd0840c263dd8a5b41d0d97b
BLAKE2b-256 a09a677eebd47d3aeedfa1697d1b55e1f19d8fa63cfc6cd2d72df29c779eeb79

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07f92b48c557abc0e87c22f9fc21001f6ff9c8e325210e2f6ac0b9cd52c51f97
MD5 96b290a91e374e210b1c2c0f32449ed8
BLAKE2b-256 56abf132ea32c9ebbdcd7c224e40095f84227c88a7a999c50954d187b3e52041

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.8.0a7-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.0a7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c1a358055375773ccc7b3a60c20c624a81ea8cbd15a9c41b639c0b90832fa58
MD5 00d1a72f71402b55d904eef0b6d726e2
BLAKE2b-256 1e8e0454f3bfe652b0e4f7f104dca39734b4c27f25e65b44b7cdcc6788f653d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f2d1d22129f2bb4a8fd6f82c5684aa6b3893fc26a31476cb8913af071408a3cd
MD5 82448926121f713a3b879027864f9fb8
BLAKE2b-256 b9f608b8c73f1e20b4226fe069e2e190cb27fbc5a4b623841a665289e2749355

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 586.9 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.0a7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6847b4a2dc36377ab82bcbe0ed79f9cf33cc313bf55c9bb3b1b2d3d8cab6d6a6
MD5 f1be123a9c2d5482d0472f89c6cc867d
BLAKE2b-256 7f49009fc6af01d6354b6ab0561da3d2ccaef749c33686f6712d4cf8eecdec2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 567.2 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.0a7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 698a82ec58a0f6668eb6b01bdcfa2e88090ffbba407dc5a2d2e06e1bcf89ff07
MD5 ac0a0f3799e938ebd0fb60c08d5fbf41
BLAKE2b-256 121dabb7a5c45919b1a50940f9a5c8fd75b6ff3617e803769c8a57e696fb49b4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 547.6 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.0a7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 9a0d6bb906ae00b38af841e20c49a8d2083f34ccd9e8db43d9e84a91ca953720
MD5 b5ab34db525c7a7f451d2b95cd021484
BLAKE2b-256 34db2a25e2de91aa81daec1aec9fc1b44796a73561f1c3946b98873e2349783d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5ad7145ce5fa047614b4f4818824fb8a88a0f12a2220a92e36f0615a0e5989c
MD5 8dfd8896102c83d2258fe649d092f173
BLAKE2b-256 bbca74e4fd332fd4bd250872bfc34fea9b6b365f21167169e172382e51d721a9

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4f7a77e5986fafddf1cd1e92b1b218d96c74375f882ade3cfa9853ff366a16ed
MD5 3c3924b407ba003ba7f7d8964c0e0117
BLAKE2b-256 c77c24dfaacf7a6db66b67e8b38e4c7bff1f5883559bc37ceb3ecdbd9d8a65ae

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 fa4342c1eac30a46653fcf90fe613a68ac2fbbcf599a47cedb4197d3cea49754
MD5 da4c83ae4df8bcab9e1e5700a3be3321
BLAKE2b-256 41a16b83fac667fc17a5d47c76ee912053bb8c8f48e773a4344b10308ef18c97

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 30f3cfa66631d3e9e32b05ed8061c3cfbc2eae05338381d739a1147d4a797d3a
MD5 f34f289a93cbf5fb77e82756875974fc
BLAKE2b-256 f05b45584d060653148bc2ba33472698ccd568770103edf9d2a13ef0d8511b94

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-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.0a7-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1b8086048ca2e976163e93f560bc098a30b3e782c1400df0a5d8643abe34e798
MD5 b887e7c87c6666b6c888463a77402b2c
BLAKE2b-256 10a495d32db59bf986098d57061d2231b8e26011b7fec1110eb2d53dc39b07f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b71e505cfef591bb930e2c6ceb68956f1cc69266446d601e8970b4069f9c3442
MD5 9e6d72ffea0972070c1084e540fd6aeb
BLAKE2b-256 e619d962a94001f452c720d8751d28de0687a0b19b328be705087bb5a4f1a3d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47b61a5d44fdf841394bec415446bc9c4cbb331197110379293447955c0a8661
MD5 396a70465215e031399b23c04ee020c1
BLAKE2b-256 b959175f7dc2319e543713bee5abb3f92df2e0d1c4aab95a8367cebd63312aee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d33df01ab70cc185cb565f3d685e1b03797007ee0ab48769c55e0b4d2b465ed
MD5 b58188c44f1ea918a705f3995a041dfd
BLAKE2b-256 d169a311e595e58950f9d6dee16e66eab38f05577f3e3dacdf4c0f4ff16ce7e4

See more details on using hashes here.

Provenance

File details

Details for the file aiohttp-3.8.0a7-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.0a7-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 deb180c492032e721527680ff7155dd3860ae8b90868f14c2a5a9632fb410387
MD5 da181b5ba105b7d1fee70e09a8d2ae2b
BLAKE2b-256 fb30ceaa5955c28b5341259244c14325c1ed0bdad8dbf43c3348963ac5c1ecf4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.8.0a7-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cae10e14557a6d57cd76e3e9733d321dea3a270788b14234ed605db67e210c3d
MD5 a0903e66c1fd94723a37b1c5fbe4f5bd
BLAKE2b-256 feffd0533070009080e66acd67b1fccda73ec85016b940306aea608d0fe91727

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.8.0a7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 587.0 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.0a7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61cae18264b4955eabeb950f10e3c700ce00d1eecd91a3140129bcbeb60d63e1
MD5 7203331793fc112ccaced72ab3835019
BLAKE2b-256 5514c90028880ccc4e4c4666e939309be84f70fdb9da891016291f928f9d7445

See more details on using hashes here.

Provenance

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