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

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

Uploaded Source

Built Distributions

aiohttp-3.9.5-cp312-cp312-win_amd64.whl (369.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.9.5-cp312-cp312-win32.whl (347.6 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.9.5-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.5-cp312-cp312-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

aiohttp-3.9.5-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.5-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.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (392.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl (396.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl (595.3 kB view details)

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

aiohttp-3.9.5-cp311-cp311-win_amd64.whl (370.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.9.5-cp311-cp311-win32.whl (350.6 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.9.5-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.5-cp311-cp311-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

aiohttp-3.9.5-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.5-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.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (390.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl (402.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl (599.4 kB view details)

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

aiohttp-3.9.5-cp310-cp310-win_amd64.whl (370.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.9.5-cp310-cp310-win32.whl (351.4 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.9.5-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.5-cp310-cp310-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

aiohttp-3.9.5-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.5-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.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl (389.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl (400.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl (597.1 kB view details)

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

aiohttp-3.9.5-cp39-cp39-win_amd64.whl (371.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.9.5-cp39-cp39-win32.whl (352.2 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.9.5-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.5-cp39-cp39-musllinux_1_1_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

aiohttp-3.9.5-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.5-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.5-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.5-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.5-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.5-cp39-cp39-macosx_11_0_arm64.whl (390.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl (401.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl (598.9 kB view details)

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

aiohttp-3.9.5-cp38-cp38-win_amd64.whl (373.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.9.5-cp38-cp38-win32.whl (353.3 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.9.5-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.5-cp38-cp38-musllinux_1_1_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

aiohttp-3.9.5-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.5-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.5-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.5-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.5-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.5-cp38-cp38-macosx_11_0_arm64.whl (391.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl (402.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl (601.2 kB view details)

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

File details

Details for the file aiohttp-3.9.5.tar.gz.

File metadata

  • Download URL: aiohttp-3.9.5.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5.tar.gz
Algorithm Hash digest
SHA256 edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551
MD5 14829a5ea507c8219e3f679fceeb5585
BLAKE2b-256 04a4e3679773ea7eb5b37a2c998e25b017cc5349edf6ba2739d1f32855cfb11b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 369.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888
MD5 b5c6154fb7b35dc81a871857cf234505
BLAKE2b-256 a000cdbda8b406ce7b656b9cb765f8134b1edb999f816f54e47347d2bc67f4bf

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 347.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59
MD5 0de273b8e8bdffa3580edacd86da98d1
BLAKE2b-256 d15d8cb20df780921adf9f436f214350729b12873742abd697c981229c554acc

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da
MD5 b63656acce1e9adf48187be64cccc0da
BLAKE2b-256 5cf1f61b397a0eaf01d197e610b0f56935b0002d688f27d73af2882b282fc2f8

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a
MD5 3dbf3823540776f4cb78b01385ee9667
BLAKE2b-256 548e72d1ddd6e653b6d4b7b1fece7619287d3319bae10ad3a7f12d956bcc9e96

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a
MD5 29f84931561554015480305a248622ff
BLAKE2b-256 8831e55083b026428324cde827c04bdfbc837c131f9d3ee38d28c766614b09ef

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81
MD5 90b9739297dde35329ac5209c8fc97e8
BLAKE2b-256 e3f5e0c216a12b2490cbecd79e9b7671f4e50dfc72e9a52347943aabe6f5bc44

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f
MD5 58266f2d7f28b6d95804385bb8665427
BLAKE2b-256 2aac7c00027510f42a21c0a905f2472d9afef7ea276573357829bfe8c12883d4

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58
MD5 2cfa252e925a9e6f68105a7008607815
BLAKE2b-256 dd0a526c8480bd846b9155c624c7e54db94733fc6b381dfd748cc8dd69c994b0

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa
MD5 745ecfc736a3a397b94938dafbfc6ef3
BLAKE2b-256 a639ca4fc97af53167ff6c8888a59002b17447bddd8dd474ae0f0e778446cfe7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c
MD5 bcd713e84af632084b7885b0b1b99b43
BLAKE2b-256 f2fbd65d58230e9ed5cfed886b0c433634bfb14cbe183125e84de909559e29e7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4
MD5 e3088ee9433e748d4ff42c3baebb65d5
BLAKE2b-256 d3c0cd9d02e1b9e1b1073c94f7692ffe69067987c4acc0252bbc0c7645360d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf
MD5 ae861f6bf0ca0f2a55585f11b036e0db
BLAKE2b-256 0cea8e1bd13e39b3f4c37889b8480f04ed398e07017f5709d66d4e1d0dee39fe

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f
MD5 fcbee2e5b93b1845e4955aaa893529ea
BLAKE2b-256 78282080ed3140b7d25c406f77fe2d5776edd9c7a25228f7f905d7058a6e2d61

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c
MD5 92630fa0515fbc9109e47c3b23f0bc38
BLAKE2b-256 185ff6428eb55244d44e1c674c8c823ae1567136ac1d2f8b128e194dd4febbe1

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678
MD5 04c2e105863b971a75d5685f7612cc1b
BLAKE2b-256 5e25c6bd6cb160a4dc81f83adbc9bdd6758f01932a6c81a3e4ac707746e7855e

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a
MD5 496cb257d6cec65a26a161df90c5772a
BLAKE2b-256 a4690d415c6d8450842652ce01b29f43416a0f30122b75899de01485623c7850

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6
MD5 18396cffcf20e7309413bdcef8a02673
BLAKE2b-256 a7a5e8e0e4bf0adb3ebd3773ebb0fb006d4e4850d1a9eef0a911482eba883814

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75
MD5 2f595f359111395f5d04dbb09aa504a7
BLAKE2b-256 6b99c742967d54091496a5675ae9faa910765f572e7863461ccc7fb22a1501e2

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771
MD5 3754b0625ae0e798af7cd72f26996737
BLAKE2b-256 46604f5225360aebb03d9fbf2a26c79fa01c6da326eeb160d212050990a7f658

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9
MD5 e4e25315c969357d972b20af8dbb10e0
BLAKE2b-256 ead10e1d60543d68583ed5b87f4d2eb1c72e54c68933e7799e649de04ffbb6b0

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323
MD5 a84a25a9eeecbefb48e9749a73206bbb
BLAKE2b-256 efbd61671d071518ac18875c1471cf5f6e210f48c855bdfc9e6cbe47134e2921

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d
MD5 0704767499f9ebb3d2befaca585cf5fb
BLAKE2b-256 90aea0741922ef3e99e71faa18ddf1a3a00309dd01107d3dc51f46bedd30e5c6

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595
MD5 d3bc3d7907fa984bace019d582b304b3
BLAKE2b-256 2499e76e65ca811100b445d3c8af9764b27c5180ca11a15af694366424896647

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233
MD5 409868dc13928474790fe2e902ab88ae
BLAKE2b-256 3f42376e5e4b6f167358e1e8c6a78cae64ca49d30d6edecbab80796dbb838855

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2
MD5 8dbd8227c89a8abadf00fa3747f97fd5
BLAKE2b-256 1fd6412156ea1aa44a5cc95421db85b0c7a5d1ee3ba71efad04db84305ca1968

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee
MD5 1dd0ef2986e279f1ef622d8d3867a545
BLAKE2b-256 73f1084f82069428b87d2b5c1e3e2d1d51911981f4cccd94c5c3691f10061c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6
MD5 003a4ca592ff2db3e6e65078a9188239
BLAKE2b-256 01af8da680fa69632f413860d3f4dcace47f7fc50486fe920ec43447ffaccee7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424
MD5 221657e4049ff62a03bbf8f884860615
BLAKE2b-256 4e78266be6e31daad1a2dc99c777dfb12b62044691ec573b6e48409a0d804fc7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d
MD5 239f11867a95db6edb4d85599978ba97
BLAKE2b-256 97e7575ca16871071313a7a7a03fa055f0c3d52f77eb8583b373ac17fc87ec15

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342
MD5 c51845edad50d111f0b923b4d60b1439
BLAKE2b-256 67f5aa23d04a1bb57e5f51108a6473964a2618cc83e608e23e3543031aa2bb3a

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 370.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb
MD5 3f264b82cb32063673a0905e1a1b385d
BLAKE2b-256 60693febe2b4a12bc34721eb2ddb60b50d9e7fc8bdac98abb4019ffcd8032272

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 351.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb
MD5 21fc6131bb5eec1bc45ac38bab8571d6
BLAKE2b-256 ebcf3b2dcbed86574b0264f9f964d1c27a120aa888a362d80cd3586de0616d1b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10
MD5 a12f7e12b6cc0b289c34995bae52094b
BLAKE2b-256 2500d3d4a9e23e4d810a345f8ca24550caec0aaca7307fd692e0b939746b1d78

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832
MD5 9365d8af2d2649493d96387eccdc735e
BLAKE2b-256 b8e617062e803031c760bc452117f0789f36545355d287258889ccfe6f57cce8

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f
MD5 770d1e8b7119b7cc31f6ae83b1fda24e
BLAKE2b-256 774d892098719e00bcf746a9fccc5f6854b1cfaf0d892de8ca5a646083eb12e2

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db
MD5 0a4807e7b8ec701314d2a884de4e8490
BLAKE2b-256 a35c322ffd8b6bb4a49d399685c1fccecb0bd0f7487bfefeef202c4f4c478bd0

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558
MD5 f8d8b77e7bee7421056a2e4a41bd4219
BLAKE2b-256 dbfdf390f2a538858c0ff5d74f11226d85956d6c52b16765cc485d4f7ba7d45d

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72
MD5 643454e4f4cd643b8cf813ab46cfc126
BLAKE2b-256 a009e7637f4f0760cad4d67347bbd8311c6ad0259a3fc01f04555af9e84bd378

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b
MD5 e7888f4b2302f54df60ced8075810512
BLAKE2b-256 6e0536471e8cbcf4c56d4917fcbe0c2c6d68119ba6e83b66d7173f39ee0125b6

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3
MD5 e74414fefb18ef3d647d40a88f245474
BLAKE2b-256 7fee0c83fd6ece4200145417da81565af7e7266b3a0591fbe32129b48187a472

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430
MD5 09371fe0138f11c3fa372ac5578a6de2
BLAKE2b-256 ac035da5d4b8e88d8af96f3b2f498141cafaad9acf3282831f0036993385b2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0
MD5 956d1586f9efd8fa4c73f153f822279e
BLAKE2b-256 f446c36596481a148014b0b6d4a62570baf5580aede5acc95901317b12cc3308

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a
MD5 e2925763b1563e02237268a5cc6f4f39
BLAKE2b-256 a951d95cab6dbee773c57ff590d218633e7b9d52a103bc51060483349f3c8e1e

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c
MD5 e8d641e415e3faae068398fb167c9625
BLAKE2b-256 e73d557ca9d4867e0e17f69694e514999c3de0a63c11964701600c9719171b97

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7
MD5 54bfc2dd0105740a31b12cd98f096006
BLAKE2b-256 bb6bbaa5886a66dc4a9fe60df3fff543ac0cdbac3d18347889f17023b15bdceb

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 371.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1
MD5 71f836689cf4d3592ca785b3cb20d497
BLAKE2b-256 e6361480e47a31fe1424a991ca9e59609f37409ff74d7f891f47e096e0ac709c

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 352.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09
MD5 6a853539e33f1fbdca97a2eda934a261
BLAKE2b-256 ea549f0c6d42af5808b1b6dd011e9a25b219cc892a811a1067b9bc1d8ae6536d

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2
MD5 2a084a52f8e48a62ca299daa244f938d
BLAKE2b-256 a06fcdf328227c511dffdab5431807ee742342e489d5c984cf5a60f0ef142e28

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46
MD5 cfb8b3e9164621ae2225325c8115cc07
BLAKE2b-256 0aec3c69a88382d0424150c109da8e85bc285b915fdbfdcaae2f72c6d430d479

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c
MD5 58410b0c42f4267047eb3423b7b5a9df
BLAKE2b-256 320ddb026b8ddb76447fc0d0ff58f10819feaeb09900142c9042bdec73d409f2

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed
MD5 ce7a135007096773263fab08fde6e6f3
BLAKE2b-256 fa1ff0ab436f8fed9373b8a0bc8f8aa735dd9d18f0a09df8228a4df07e0cd885

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475
MD5 9477d3a5e1789b07762139fe75ac22fd
BLAKE2b-256 3d8dd4ac343b9decf7458bf75020a76680163fef16c28dad4a5283084a90f06a

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106
MD5 6fe324b4905995511271ce47ecfee8bf
BLAKE2b-256 944f3c99f1cdab4fb55e12a914c80828f0958f04d79ef6b6ce1e05d07c30c46b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2
MD5 75d0faaa46a112b9e82afaf594e78a65
BLAKE2b-256 a476bd2f2eae52e9e00002fcc0910428d2aabcd81edd420cb8dbc36adee99f0a

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24
MD5 813b0610b06783de965529c580a0f6fd
BLAKE2b-256 29b0e2728ce40ac9bd9e8998c5f1a36ff8273ada5c302607b720200607daff8b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb
MD5 08504aaa663747025c87540742fac40e
BLAKE2b-256 eb45eebe8d2215328434f33ccb44a05d2741ff7ed4b96b56ca507e2ecf598b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b
MD5 8e7d2127554eb905c371ba154c9ece5a
BLAKE2b-256 4646dc7da6d44f66026649c6b66584b3d4362b4450a5eb1237b0f1853ac673d3

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372
MD5 483305e97b4e690bcec2de69867f62ec
BLAKE2b-256 4c8f04381aa090cffc3dbb6673935bdb4a7c7690d3bc40949d1e66fc136dac15

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a
MD5 cc3a882c75b65a51cf8d6a82c81d3801
BLAKE2b-256 74216ef1ccb2bead0a5a5c9c198f56f0ef22781a759f8c0dbec067e6be947a87

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed
MD5 7f512715325ebeec4173fa60bd1c38d8
BLAKE2b-256 f99f5ee4aaf09c95da6e71c9f0d5578449d5288ad4fdf225124c7b8124c6287a

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 373.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a
MD5 edc089fdc3319b7003f65efb6f2418f9
BLAKE2b-256 c52be7260c532ea3057dfdee64d84e9860ed1e84cf54b775ece475d560382d1f

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiohttp-3.9.5-cp38-cp38-win32.whl
  • Upload date:
  • Size: 353.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da
MD5 dcbb3e20bfb3ec04fd7e6cd9ce4636bf
BLAKE2b-256 53c199c560b044c252cf47b71b5d7d33e9d38dc40d7a9a660579036b9d09f252

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe
MD5 48f384c848bedd51f2b00ce244c18c22
BLAKE2b-256 eb41a470f19879f861eb2183046493d57d0ae166ba432ef4b304ab3dd6843379

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031
MD5 8a35b570735b6975bab7ef6327622b39
BLAKE2b-256 74caf55eac020a2c4df8607bf42ae0e31cddb93801406d2fd4d70b34a370fa23

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156
MD5 a5f25e64811bdf2b2be0ed5d40418203
BLAKE2b-256 6cfc9656ec8b3546cf0a74ba0d39d5e497fc7712b51c958ea2ec03ca28ed2a55

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e
MD5 1dbe586d3f501f90b2dc2af6d866389d
BLAKE2b-256 4741a1ace3e0d5b7dfd72ce7a30629e75afcb5e731291ed8b8aa717bc0e1b8c7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1
MD5 4a071b41ded6b4cc6608cc4099e27c31
BLAKE2b-256 34af8d96e889d7d5f9e450545bad8694af66ef38afc0f28a77f058212d3662e2

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11
MD5 7c177d7fc4c77ad7d763282497a56209
BLAKE2b-256 bf856166b71dc124cbca726f1d062218a61f2541d7c5192bef8c9b518b787132

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac
MD5 7d4d42b09ddfcc53dcee399eb73e504d
BLAKE2b-256 5031da05d395ab732368795c01feb264e192b4e738597012d7d86a45df79640b

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de
MD5 22f07fb7ef918e9d85b63db0ad227958
BLAKE2b-256 3aafefbb5c0d22f5c4656c5c19b7ef1495ef6b03aa3fb6def05a57e7e3f682e7

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b
MD5 4b6e63de1f87831347cbffd87543752a
BLAKE2b-256 40c7331f8ef2cfa04592a0f397c451d32526778891fc5309646f6a2dbfa8b89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd
MD5 80788ba27faaf402feb130c901b577dc
BLAKE2b-256 b71461ab6b7427e252c3bc0ee94eeb06394c003cc295edf6558114e6e54ef882

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78
MD5 38df7882dfcadb54f3aeac56a3d52503
BLAKE2b-256 6937ca379996ae72e7795d5b3f6bd13c0b24ad8641d11d02732606fd363b7bed

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8
MD5 cfdda7037662d0e09c5889088f00c6e7
BLAKE2b-256 edaa555091d9ad3e036a91922bfbf6d4fc9906e78b22d776c25150caa96cb387

See more details on using hashes here.

File details

Details for the file aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8
MD5 67596741330f8add0176c27e1f492b02
BLAKE2b-256 854968a2da7fef9195b3fcfc27ebb469c06ebc2777546eb8311cdab4fe8c8aca

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