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 Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org

Key Features

  • Supports both client and server side of HTTP protocol.

  • Supports both client and server Web-Sockets out-of-the-box and avoids Callback Hell.

  • Provides Web-server with middleware and pluggable routing.

Getting started

Client

To get something from the web:

import aiohttp
import asyncio

async def main():

    async with aiohttp.ClientSession() as session:
        async with session.get('http://python.org') as response:

            print("Status:", response.status)
            print("Content-type:", response.headers['content-type'])

            html = await response.text()
            print("Body:", html[:15], "...")

asyncio.run(main())

This prints:

Status: 200
Content-type: text/html; charset=utf-8
Body: <!doctype html> ...

Coming from requests ? Read why we need so many lines.

Server

An example using a simple server:

# examples/server_simple.py
from aiohttp import web

async def handle(request):
    name = request.match_info.get('name', "Anonymous")
    text = "Hello, " + name
    return web.Response(text=text)

async def wshandle(request):
    ws = web.WebSocketResponse()
    await ws.prepare(request)

    async for msg in ws:
        if msg.type == web.WSMsgType.text:
            await ws.send_str("Hello, {}".format(msg.data))
        elif msg.type == web.WSMsgType.binary:
            await ws.send_bytes(msg.data)
        elif msg.type == web.WSMsgType.close:
            break

    return ws


app = web.Application()
app.add_routes([web.get('/', handle),
                web.get('/echo', wshandle),
                web.get('/{name}', handle)])

if __name__ == '__main__':
    web.run_app(app)

Documentation

https://aiohttp.readthedocs.io/

Demos

https://github.com/aio-libs/aiohttp-demos

Communication channels

aio-libs Discussions: https://github.com/aio-libs/aiohttp/discussions

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

We support Stack Overflow. Please add aiohttp tag to your question there.

Requirements

Optionally you may install the aiodns library (highly recommended for sake of speed).

License

aiohttp is offered under the Apache 2 license.

Keepsafe

The aiohttp community would like to thank Keepsafe (https://www.getkeepsafe.com) for its support in the early days of the project.

Source code

The latest developer version is available in a GitHub repository: https://github.com/aio-libs/aiohttp

Benchmarks

If you are interested in efficiency, the AsyncIO community maintains a list of benchmarks on the official wiki: https://github.com/python/asyncio/wiki/Benchmarks

Project details


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.9.4rc0.tar.gz (7.5 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.9.4rc0-cp312-cp312-win_amd64.whl (367.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.9.4rc0-cp312-cp312-win32.whl (346.2 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.9.4rc0-cp312-cp312-macosx_11_0_arm64.whl (390.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_x86_64.whl (394.5 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_universal2.whl (593.8 kB view details)

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

aiohttp-3.9.4rc0-cp311-cp311-win_amd64.whl (369.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.9.4rc0-cp311-cp311-win32.whl (349.1 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.9.4rc0-cp311-cp311-macosx_11_0_arm64.whl (388.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_x86_64.whl (401.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_universal2.whl (598.0 kB view details)

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

aiohttp-3.9.4rc0-cp310-cp310-win_amd64.whl (369.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.9.4rc0-cp310-cp310-win32.whl (350.0 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.9.4rc0-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.9.4rc0-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.9.4rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.9.4rc0-cp310-cp310-macosx_11_0_arm64.whl (388.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_x86_64.whl (399.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_universal2.whl (595.8 kB view details)

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

aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl (370.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.9.4rc0-cp39-cp39-win32.whl (350.8 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.9.4rc0-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.9.4rc0-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.9.4rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.9.4rc0-cp39-cp39-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_x86_64.whl (400.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_universal2.whl (597.4 kB view details)

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

aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl (371.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.9.4rc0-cp38-cp38-win32.whl (351.8 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.9.4rc0-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.9.4rc0-cp38-cp38-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

aiohttp-3.9.4rc0-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.9.4rc0-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.9.4rc0-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.9.4rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.2 MB view details)

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

aiohttp-3.9.4rc0-cp38-cp38-macosx_11_0_arm64.whl (390.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_x86_64.whl (401.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_universal2.whl (599.7 kB view details)

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

File details

Details for the file aiohttp-3.9.4rc0.tar.gz.

File metadata

  • Download URL: aiohttp-3.9.4rc0.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0.tar.gz
Algorithm Hash digest
SHA256 46bb4a3c87a7508f9fdb40a0a5c98acfe8520a2cc404762e8f17bd8b834035fe
MD5 91692e7898abe94dd849373c2dca0c5c
BLAKE2b-256 14ab089fbe6eb1a881ee60dd3dfad77cffe02f51a13f6233c9af8290a76c9e09

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c0ac8809d6cf6847e54580839119979388c7a01f0702820ecd434a437aa41ff
MD5 cfd9f1e242ba45455a556af804fd84c3
BLAKE2b-256 eef3a11cecfd02057fc13e11780268a365ee5e642ff0591c198ec35d0bb6abb1

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 346.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f557dbbf729ed09a255fa68545fb2458d77fd47eb71ad1caf6868cf9d392a22f
MD5 d0f94ef00d9553ca55af9a9b36dfb4e4
BLAKE2b-256 e040eace076d2d850a11378720a45e266d54909ac97e4da311792fff32900b29

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f410c8390f1c24989fc8bcf89a3bdf87f965e2d29ac2ab0a5d0ffe8b03f785e0
MD5 e90a6c776d36cd8f26caf386cc794b44
BLAKE2b-256 262e9f5b95f4d4c1e3f6efd07567f27d9edd51ff85b9246e41755a74183fb905

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 147c376807d39b46d0abf0022c10a5653c55b46a8e4169c0865f3c4f74f5483d
MD5 5326f49c37ae514fc56d24ea9d81ea9e
BLAKE2b-256 a1df25819cf68db4b59678ccfea3443d845bfce4c5d762411cedec43a193ac9d

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 453ec6614361d2feedbc182d635600686481537358c31a5d7c7273eeef0cc30b
MD5 706b1a9f57136c452e7cce98be0fcb31
BLAKE2b-256 d7fa4968c5543c2c6d2e905312d8f2155cfa69f1f461d2cdc327cc860630d446

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 161c3547fe8b7f8d460bd7e0d3f34e902395167e6b0d579e6f8353f7b2e7f997
MD5 24c31d6fb9a74f05c2e125211af1bb70
BLAKE2b-256 96250571910ac1abeaf5542fcc07037e95bb99e20ec456db07d2ee534610d2fb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e7449ed43fd287c6daf5b5452d354365f218f3965c23a127f988bd850e47038
MD5 7ea22d1564847ff72bd66dfc32370745
BLAKE2b-256 6a4ec4a4d74c0b63b2aab04748fff59ac3caaf9f17b61066bf9b0310a304dffc

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b385d33b454e26068b0c3c8e0d9e157aac152b5bf21c9bc2d7d9343bb19fdc49
MD5 765dc83ea690355bfc573f627746eb71
BLAKE2b-256 5c9f5dbb4ec7dad95b776f37370117a320a64bfd31e89bab0484da031a041e2b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6b1cf340280900e9ab12c93f2da0697bffb032b2afd4a2ffa6c2630eb9e8cbc
MD5 db3434cba2b02bba4a64d4bdf3ffec7a
BLAKE2b-256 3a46f580b558092c66a8411cd5e91cb473c20f6fea06c592d6cb05aeb486b7bb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90bb64d4160c77ee567b76c34e3b40f4aec20f761acaa9f3950ba8d5b1fa2fa6
MD5 ca29f0626baab66ef5486b881b471ff6
BLAKE2b-256 35a7491d26f332f1fafeb5f51cb4859d0d4f15a54a1e80d4bc28765f9ebf3dfb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86b783a685f16218f2ef5a5aae138e285a5f2f66ad135562b21e9b5a0b8737fa
MD5 5e9e1d7a9de82cad95a7e0c0387e1296
BLAKE2b-256 0908ad710aadbf3cc7eb3b7efa7bb5379f9b30b3c78b8331e3152f65e6a95e41

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df6ea211dde515db96f895b883ef6ecae0dc9a9e16b80426b7dca5f4e3cead1a
MD5 a42af82ae310235a207fc1de5bd087dd
BLAKE2b-256 5c4787752dbb18f26fd1bf0ffd44f258838116cb04616672fea2b972b2d68314

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b063449ad7c5125330361f8eb57b831d887f90c0865c99b380d35fb805eaef
MD5 95e33b209bc85975fe2f2364c09c0a6a
BLAKE2b-256 6b9efadddceeeb2db24750765bce615adedb5ecb9168e807c3d52299f6aa1f14

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10a89e0e7aea23bc555787eeb38ccabf610cf14d5ddce4db5168d459651ca6c5
MD5 a8c6872b458f31a08f26f30ee97c9a7c
BLAKE2b-256 7e5e354d81fede0655b03112089992a284c3831860da7aefcba347f04b7eff31

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 880bb009f29bccf0f64932c574083ebb7d8b08daf9c3c3c990ede0e110507899
MD5 33af4abd798a6e822bac188ff87d4c81
BLAKE2b-256 2f14ff385a71faf03e57b5cde35d7cf82436176bc3c7baf81985b66e11241172

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c3f63d1e9eca4ace8b9aab75fce0639b5b35f79a90fd210c0c7c8159ee6a590
MD5 1dba1ab810f380fb6e9fb509ccc4b956
BLAKE2b-256 a74d5c9ce209759b1d9c2bdb1e3c26be6d14e0675e8494e5a1605a63a45d794c

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 349.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4d485b038c56ffe1adbfaf2c1bbcbc6ee959ec4f1f882fabb89d5690bd56d8f4
MD5 6dc22dc1d93b8e90e3416000bba7578e
BLAKE2b-256 01c698c68c9fed9cfa41b514f5e0932e45d71fee221f44b8f78ec551b5d1c115

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5225f3d0471271a35bb7e3a83d123032f005785a2b97d7ab455beab64c0f4e0
MD5 d6a3088efcf68fd8dbf1585f5ddea0af
BLAKE2b-256 efdc97cfb4e9072920fce9d1d26d57f4fbb32b7bb559b89491a347732521f871

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 674a1fdf8403892753e410679b0aa9a9464940818f2f80de12deb12904fd1453
MD5 6f88b7d9d58d563e98dd61c98b2ac32e
BLAKE2b-256 22fcd43fdd0626c27742b9307623479baf8e7ec2fbedaf62835a8e00e8b5a3c9

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 056009df6402f0d5b0ccebcc622082859189a2f6e77a250e7ce2f6b07b9e550e
MD5 89e4427a0709ea323c2b42b50ba23973
BLAKE2b-256 4ec6ef4a34b26fc73139d5268428a13bc0268e004864a35c3cfe85cbf78ce7dd

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c7b0257b0d0c00c57b2631bf861953b85a643e0aa54f6843d7424cec6d000491
MD5 924f9839fb10c7f57ae58cdf96aa2685
BLAKE2b-256 eb3b6845228321ce8351c146399579002c4ad227c3c2ebcde036b81e42b6f813

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3624566806545abe02ed7543a9fc31adb1a520f1467ee0b7fd249be754cb3761
MD5 03550e92dbcb41e39127b32a765e633f
BLAKE2b-256 226c2a54c5490047c8ba7b8fd72124d9939dbb7e5280e72f5258e456d0071622

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f04f1fa39941023b39807bcbcc38b105a953a41bd990ea31eeb78c71f13e14db
MD5 2ccb434cd4222a44ffbc191a708c11b3
BLAKE2b-256 ba883ec383e52cc628fa132d74ceaf1afee27eec4504123526dc5eecc896dfbe

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 850cbaadd0bc095a9c7baa4e554f0472a8ca3beff222bbdb963805f950040f66
MD5 4236d7659e9df38eee37f9d23e1f243a
BLAKE2b-256 d8d083ae30d67d315885f8746e8d8eeed6cd1dcf40e2dc2bc182710a041f4b71

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fda54d331fc7e2a13e176550885e74567814b14e35ec8c8bf58c460ba89bbf2
MD5 14aeb6cdbe452c733acc6beb7550e576
BLAKE2b-256 dc6bacebb795d898bfd06de3fbf614d8e7cb5fdeba405f37b13442cfeb771bdd

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0767310b6ec6f1f63bbcad95bf9f6995967540d69f4f5ba91eeef14ff5c1a02c
MD5 397e404285a706ebffb9bc0ed325a839
BLAKE2b-256 d4eaed2deb72ebbe7fa9c44ecec1f0225812f0618ae8ca1c1acad660bccb3a69

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83abcbcaadfe8ce11278e7370e3c380f5305e4a19b892f4dfd1d6fd05389176a
MD5 f504dc767e6099112544379810336de1
BLAKE2b-256 ee5d8b391a43810e3b80120b24006fd8010243b889f421bc6b03f9781a180b40

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 485d2a5a56f6039a7c39b3b9318ff63c3d321c4dd9b4cea12fd52d2e24393d38
MD5 87e628921a0587e87ba8d7756ced2512
BLAKE2b-256 3842730f4ef647342bd11daddfad4a8fb7f764472d68603450bc9a13971e5012

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c7a7602060a05ca7943343cc1191d55730dfa2a6eaebc3f2e9cc81bf5ec067e
MD5 b642c182473f1b80da01eafdc4202d02
BLAKE2b-256 9e733f7a587b10143e37d7e2a8ae182e53cdaf787f73b85c2f5df122cbf54d01

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f97bdf7a5aae476ba452f44919d569c5656b76821fa82787e6d2bb27dfd96933
MD5 d38d2cc9566cc11c580471fe2a613593
BLAKE2b-256 52af25bcf8547b1e6895a4ffcff50e30601fca8332ad3a9f0761af7456b94db7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9bc71815b80ec0f2bc8f13ee0dcf221a545c67a16763137b61c04ba97a5474c9
MD5 6693e8ebb8f93ed9b20d8a54fdb2c4cd
BLAKE2b-256 936009ac6c558627179a76b7428a3f8e79435c962dcacfd139bbfdb244b695ab

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8a9fb29bf3a7188e11fc1bf1f5501dd020e0f3e16fc91462b29a1e3d57e0c33d
MD5 9aeaacf1913087097c0969b3991aa25e
BLAKE2b-256 8eef82c6093d4ebcab010c2c8ea1aa14183078102620730a4149052f9017e088

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a49207ae91f9e0281663a69d107ed2cf079fc2d2d8f3d7c53de304ffc891e85c
MD5 4889f7e2b5180840e39f8b3a3c204174
BLAKE2b-256 3b5acd02ac163a6fd73b437f164dbc4abbcb4dac333620eb71d81fda304cc5c0

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ff556f7449f35bc27b6291ea40c5de7822424f6a43d2f67f2a544e034e057dc0
MD5 7fbde5489a0e9641d386b2b5fbbf3031
BLAKE2b-256 d5409bda47ffde365d7acbfa29a08da723ad60cb51851ad06c76137b86d899fb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f3102766518468d11a1864e6f4f16b827335e060e54fb1d7e920c358c4a671c1
MD5 deba7c88909e713b3210fffa1c51328c
BLAKE2b-256 aca536f4378226c3e84843dc00d6196248cc9e584e08340aac32274b6dacfafa

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 89186054a92b7e63a5ca926c7617ed24c33a1108d5385091e55471d540e1089b
MD5 75cddf4b5c811d0f0c18b688dd17debc
BLAKE2b-256 78e66af43eca904fcf67d270122e65fc048820dc3945a50e7dc6432fb38a31a6

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4bcc61be06c1e629d130bd7c31904b206fb291b4d079ff01943889769deb4808
MD5 699f43e4ddceefddb55b51160d74aebc
BLAKE2b-256 aa2db57c4691f04dafe9f1b8cb4066d224492805da4bda784c71f8a8966432d5

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 077b70b370162bddd11999cef1fc081857443b84e234339dfa19c59e8f14c675
MD5 33c519816e141a31c7efa87b58ab968b
BLAKE2b-256 9c55e6180741e0a7ffef56127666fa1fe41129692308cae3ce9cf7f9e9ad3583

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ca46c33d5fa2d30409bac1c04df9e614e4ce5a336c8b16cfe05b0046a2b4ae6
MD5 82b580c6d7e441d31eb157e025d3bf94
BLAKE2b-256 260c12d4461998dd1846cef34de8acc391236a52e8038dc16143e05dc7839737

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dee5cb6e30aed0f781050860c12d96aa4758be6dec8ef4de5f14913b13c326b
MD5 b693d8096a89d4115a9838ad0a333bac
BLAKE2b-256 7f5c7bc5fa6f4b7142a332c7a57155d4f99ee4c5a04b84c9354927e47379dab8

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c5c9e63ff63f5bbbfb94802b29e6dc189feb52518758dfffbd94880dc0cbcb2
MD5 4dfbcf15e2cc9fe215851fc724da410d
BLAKE2b-256 e9fb086baa1e14a72c9e8bdb403c81f8cb2d053603f62da40ff2c10b7bd20c08

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa96c6c5e7da7b881d3ba632b647ee78888ecd5944b0fa0e51c2e0cbecbc6668
MD5 6fafc2d9dfe711918ee52c69ac2cc299
BLAKE2b-256 858462a83bbaefcaad1bb413ca6a2ecf7571c7fd1c90c001fcad8d23222e90e8

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcea576eff83ccbc866702fdd6e4eedf394d3c35a460221875e67c5bf6b39e2b
MD5 896c9f3e86ad86f86c262d1c5d48ee47
BLAKE2b-256 558d41b201390e70ae5d3ca31b3af913faff02aac7de35c7fb0f055cef404f16

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4e8d2104a2eb0380342d25ab05cad2e712da46c6d9eff0ec24621bb4bcd77e8
MD5 8695fe756f17a397df97eb0637b3a344
BLAKE2b-256 f12d1b30e8828f39c8b0f98ef06011ce8b59507d509201b2b88b0956900bb775

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d2b670f4973c4a7f544901fff4e786ced7578b7c604ac9260e82d83be3e7fcbf
MD5 6ccc470c446c82534d5b1ceb49fdcca8
BLAKE2b-256 f7b3c6f401b7fd27ae12c661dbb257c027cae670d7ff3eeb3c28382622f19437

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 370.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e81569300b14c415c0bca8a4edf3895aa42fdf08f4b00b84b50c86108078392c
MD5 7737b481211d16fac8655b5a16b5391f
BLAKE2b-256 386a2073b3cf177e9031266d9d0824fbbe084305aac11031fb9eb97f414d03f4

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2639883f5a555acad7f9f27dacaf6517a0155b57d86a107feea3bee292d997b7
MD5 dc2c9dfb5bebcaae95e731f98eb2194b
BLAKE2b-256 ebfbe819800904a2edefde2cd7301e0fe48a2943353e5b29eed46b8fada52651

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e773663d11076956529c11b3e583121247b46cfdd2ce02b4e4ac1c9e6c751be7
MD5 db36ca59fd0a20d8a3dbe75dfa5916e8
BLAKE2b-256 0fc9ae67167a2be5fa71557fefdb43834c3c4d8306e76318546efac78ba77cf1

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e39b0e3751977efdbb8d186895a838d3d3cf6b9f38e0b6b350493bac377a015a
MD5 fdbc12d81a684d36c4ca1b42bb2e2be9
BLAKE2b-256 6c0b8d29b175aac832b788aad2afe0490c87cf842528cc32d73ce521111b38fd

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5a7882336a581e5aadd969c9e6512cbccf1fcd66f2628dc137eeca43ad60c1bb
MD5 f94f58c1010ed2efe294414b96865314
BLAKE2b-256 97c63426f07af93a6fd7a182d1f13b923bfc32a90289649aba48da2f4454c8e1

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d433a690cc702ce025071a53194ac58326d3624404883c6a936fded83bbd55b0
MD5 17878f1122d203b3ea14cd926b390e9b
BLAKE2b-256 8b7fc84211e6b9f6785d8af4a8d2aa4ee121ba0153e6d7acd7f7f19e99ab7a34

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4557bb42e6d54a04294bccc685853fe297df7aa58b9e2de425f27b79a955fa6c
MD5 57553efb651b06ac090d91ad85731256
BLAKE2b-256 0f226d95ba8d33a0cd69434df7ac5098924ce4ef642ff5588515981bbe3560f0

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a27084f4d0e5746534d504023630dfeb08e00ffb695b7c41bbf7f2a17e2ebe0
MD5 b50df4c18a30033bc11c6c2fc2cc1358
BLAKE2b-256 d3cf93ad679a00c3aa240df729ec9df4874f7cae844c0543d258c0429310b5b2

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80d3637362667672d53083b5c165dad03712ee9f504a61d5f8d70ff3d4302da1
MD5 751955cdddbb225093fe7d376f2264b1
BLAKE2b-256 11a6898f2e1ce5f3dc96f4d0c004178d10e4f1ec15663f052c7e97cf324646fb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5187729c428245154b53501d8f577a90b64f43b2b39a8ec2aec1a6e7258446fe
MD5 b554fe64c16c095585f67aee3962f41d
BLAKE2b-256 58900a1e7f7820c5d7dc05e798cfd8e3b261b63fd62302d120c5fa4d2e548eed

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b477128dd437d86dadd94fe536c44d3302a1712d1c91a7ee4fe7df638e82eb1c
MD5 e711ef670ea2bb5d4ae4bd634f6f2194
BLAKE2b-256 190c3ee846c875161325f98856d4610ebe27baab883b7055c0376abe2067c9dd

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14e16b224eb540c3cec50236bf7cc9926ca646f86cdd1875715ded2e00ae4dde
MD5 8d856bca24167400428dcf35d925557f
BLAKE2b-256 a977be47a514dcf8ef55c7b0d65c2b7f1e3a6998fd6f0dc33e905bba924f3965

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b7cfa5f9d58ce3a7050acba332750543993d97f04ac1dfa026cce1abf943911
MD5 a96fb4d2266536bbe4ca6a1bdd238fc3
BLAKE2b-256 4d572073ec25817d80beacc1cd74e8fbecf281b57b9d66c2885eb40b858764a7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25e390c4866e22437cd7b329caa3d5e3435b86dc40abc091227b00d11a29fcd4
MD5 3436b83be6e25b732765b2ad01951d08
BLAKE2b-256 9c80d1832846e944006b54b2cf0af36c7fc99b64e4b13ad30c2c33fb0c713dd8

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e4c90431921d07b4ca869a2b5335d3f00b8bdc0b63772b76e3990742e2b127aa
MD5 2d5164fe7bc8501230bf5490344866dc
BLAKE2b-256 8b3ff8bfd38b40f23f189bb4020b55406b684b8d719b7370574ac490ecd3bc3a

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 371.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18e2db6cde06ba6467766620d69dab2ea4298481b56a7d6fe53d38841eb879fd
MD5 482ac831c741e6e72b78c543e0a21c1f
BLAKE2b-256 4c743af29abaaa31cce87a80188043adae7f56dba6785a59d50d6ad58dd23589

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.4rc0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 351.8 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 86f6e8e9b834ff17c6486bbf80dc13e36fd6518803880790e04995ba55ae292c
MD5 8c16d8770d22f32e5c65f7eca81936a2
BLAKE2b-256 d8e815ce83e3897e8282721b6b17e649f7a4683d89901c7971c295aed0314214

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb795c189e2dbb02f5fda273bd028f268f98d82d3fcc5a14ee7239494927c617
MD5 6bb6dac51cbadb16300014ac278b5630
BLAKE2b-256 62a21e1ccb5c5c7ea1878a99bbd14b79a2b01a815ff93c86cb78b0e864c53938

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 a0d18c8ac1bf9d8b12a8af4a000c5778f4ca09d4d60a609abc924079391bdc53
MD5 399bce9271805edc1cbc0b61c6f221b3
BLAKE2b-256 ed0621c2f1fc4c5403f09eaac75091fc9927baa00ab3a293dcd3a9220b1bb7c7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 22f7fad946801dfc1e2973449367944f8230885858f9e964439469176f6ee101
MD5 4c65e75b8d742b77de3c2e3d2e3dc9be
BLAKE2b-256 3886c9fbdafa7e0d988eb9013dba9dd29876a5361ca18e551d674068a571b69f

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 a0c99a42aa4591f71b323e2b53e65469bfc3c79f588def72ff553110a5db1757
MD5 d25eb4056bbcfbadd77b351785cec7d5
BLAKE2b-256 daa0996dcf890dc2a5eb38f61c1867e83c86c1609cfaa9d1eb4f6820681d8515

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1cdd6b31c4b74fb0d646aacc9c822324ccb9c6edec6fdaedb7e0ac260b042cfc
MD5 a753fc2ea665615d41ec5bc2da66bf54
BLAKE2b-256 6c76089ff3a989694829a073778ab445fb6b10e45c4b5518b982a633593da544

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16b39476d4a58cebf20772ebbbdf5999accfdff2efca6876d88b47cff864977d
MD5 3763b7b0f2cc179a2ba979eeddfd3f98
BLAKE2b-256 28aa71cae9395862713cdbffc23a2a3d90e0009385850e30423518c722b6b532

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ae0790d4b2f830d88f4d6edcf54510d752cedfced2cac3e48426ccb0412bfa0
MD5 c7eb4ce2c254072abca8408387f2ffb8
BLAKE2b-256 02cca4c9a63a1f74833597660db5d3ecfdb511a3e30715a6e45dc5e355f94a49

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0d870cf660b8e824de7278b0fbd50ea34931e6a9af4da41d7d5d05f938f871a
MD5 1a39ad971f9bc96c8fb6e34ae79f7b07
BLAKE2b-256 ef98103ac1b432a6d7b4d1ca6891a6f397e711300b0232075ac92f2adf053dbf

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0da6218b04c984fb16d13e2cdc80b8979673eb85d9acdc71c3662a055391417b
MD5 c0bc313bb4e8b7a64c62e9685344d178
BLAKE2b-256 09b98a5a8ef283186be6248f23a8065eeaf2c97f199fbf43cfdebbb7af4100eb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a59af49d7cd2825b5b51193c164e428d2117427c1c52dfab55feee4f305aed9
MD5 cc082a03d5596d8c48239b6263f2b2b1
BLAKE2b-256 e55efb5b31527d50628243e73c699b1adcf633332efa32a81ee51cb866a05262

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a368eaf9106761b5b42681228693cb3a31c1a9b299461eb48b897ab7b5f91367
MD5 2a24b97402b8d8b23821560e90678286
BLAKE2b-256 d472e249f24800e9386250993518ea3bd9cc23e9e3716343feb9b46ba6a8b71c

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6af5369775702a2efec662795144fa79bf675f2150fda4f284fac4b377bca36
MD5 5fd265e27ed4ef7d93ceabb4f92885c8
BLAKE2b-256 b99608de120142e52816278460ae43e4267a981b2db781114bcd2edaa278772b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.4rc0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 495ff73503ad25a0475effb33554cbaf0d829a6267e89d2ce60115b3303a0914
MD5 018a98f6fca3bb6456bf82b0edfefa7d
BLAKE2b-256 8146a3b6374899d393101111676eb0dc68a198d43f425860e53c6047cc9937f4

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