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

Matrix: #aio-libs:matrix.org

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.11.0b0.tar.gz (7.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiohttp-3.11.0b0-cp313-cp313-win_amd64.whl (410.8 kB view details)

Uploaded CPython 3.13Windows x86-64

aiohttp-3.11.0b0-cp313-cp313-win32.whl (388.5 kB view details)

Uploaded CPython 3.13Windows x86

aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

aiohttp-3.11.0b0-cp313-cp313-macosx_11_0_arm64.whl (425.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_x86_64.whl (431.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_universal2.whl (647.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

aiohttp-3.11.0b0-cp312-cp312-win_amd64.whl (412.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiohttp-3.11.0b0-cp312-cp312-win32.whl (389.8 kB view details)

Uploaded CPython 3.12Windows x86

aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0b0-cp312-cp312-macosx_11_0_arm64.whl (428.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_x86_64.whl (435.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_universal2.whl (653.8 kB view details)

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

aiohttp-3.11.0b0-cp311-cp311-win_amd64.whl (416.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aiohttp-3.11.0b0-cp311-cp311-win32.whl (394.5 kB view details)

Uploaded CPython 3.11Windows x86

aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

aiohttp-3.11.0b0-cp311-cp311-macosx_11_0_arm64.whl (427.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_x86_64.whl (439.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_universal2.whl (657.5 kB view details)

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

aiohttp-3.11.0b0-cp310-cp310-win_amd64.whl (415.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiohttp-3.11.0b0-cp310-cp310-win32.whl (394.7 kB view details)

Uploaded CPython 3.10Windows x86

aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

aiohttp-3.11.0b0-cp310-cp310-macosx_11_0_arm64.whl (427.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiohttp-3.11.0b0-cp310-cp310-macosx_10_9_x86_64.whl (439.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiohttp-3.11.0b0-cp310-cp310-macosx_10_9_universal2.whl (657.5 kB view details)

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

aiohttp-3.11.0b0-cp39-cp39-win_amd64.whl (416.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiohttp-3.11.0b0-cp39-cp39-win32.whl (395.4 kB view details)

Uploaded CPython 3.9Windows x86

aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

aiohttp-3.11.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

aiohttp-3.11.0b0-cp39-cp39-macosx_11_0_arm64.whl (428.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiohttp-3.11.0b0-cp39-cp39-macosx_10_9_x86_64.whl (440.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

aiohttp-3.11.0b0-cp39-cp39-macosx_10_9_universal2.whl (659.5 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b0.tar.gz
  • Upload date:
  • Size: 7.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0.tar.gz
Algorithm Hash digest
SHA256 2821c4c75162ed1ba3dc56f344c33e37e6bbe15d995362596820276b0cb7d03c
MD5 f9c7b6eecf58908f5c510697a4640e89
BLAKE2b-256 57b8389b9275ea9bc25a7776cb030a8e822a473d773ae6c866fb2259087169ad

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 410.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b38f31546e0b0e95495b2ab98a7d607fa0c9812e760fa4ea84dce554083c51f6
MD5 426c82b9ad8c938825450f1e04b15cdb
BLAKE2b-256 968eed69317a9d566c59de1dbd59735f55685761ec538e9c05b51db27d8cab18

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 388.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6c2190fbe8d5c385d7f26098200d49e6ea53558f489010acb341ab4a430345cf
MD5 e0529f9a5a2269496851812a1fb0573a
BLAKE2b-256 174931e2a7f18ff4e7d6913c80de67acc7b8a93fed142199a7a95b5149e04c4e

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cba3a110d9a7f1bc3ab09063e85a7952ba77fb799433bc94d231a618eed4e86
MD5 7db082d33f0fbf74eb2c9f47e5f51071
BLAKE2b-256 d1297add29d2f260a8c9db3eb0cc2d6202b540ea2eb3a68be9dc4e6ebbc1a2d2

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b2c478ceb9c1fbfffdaca481a9dcbe3db9eca273f8e7e6662b16c9bb4308cb89
MD5 f39f53756deff824c040e6a2c995c7c2
BLAKE2b-256 73b4ce7b664782d37f19e6f92246636738c7fe4a7464ce6670e8670308daf1a1

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 83bc0830ffb9c0a9f036e72c6ff79a9e86e5dcb8a93c4a82d59e54d3071f5a95
MD5 758c5dd2e2b4be6faf23a00b004cad8e
BLAKE2b-256 94b829c19382d605212c4bfe25072bfe94f1f743c3ba7dfe95f1a85e85e135b6

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 210e2f211da6ae9b5f47b39d6e5952a31536c78a5dce580f80ec5640ded5102b
MD5 669436f5a6dffaa835c076cfa3de789b
BLAKE2b-256 5a210f87c939baba4b1619136f1e9bd651b55803eb0f0548f3816469ad4176b4

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c74eadbd96c379b7193141edf5596004a616cf4252bfa8bae0a2f2608658470c
MD5 8d9dbe5eb669654fec9334de78c7419d
BLAKE2b-256 e029a03427c51169947c1a56305b0204d0a9acb2694a1af4263de3384049f307

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a0701f4d34c1cf5c1f56b9b0bfa8af7bbf4c0c0e05279b4a255936491e5e23f
MD5 3d37f506b802f6af85d9b6e446b57600
BLAKE2b-256 ff90a7be6c9e241bed46a18595de17b621456638a0a10fc935935c46dbdc1251

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b2b0ca13d29008a8abc87d9a91d0748fe73f9a98885b5f80afdc7b1f326c0b5
MD5 7a6079ce2dcb07e45ce9dd5cf824bec8
BLAKE2b-256 a75258d617fee803622b5d788c29f8cc407adc21516453fc7710a72f51ae1fdd

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fba27b27cac4fcdb30b76104b33be1a581a7c6ccd70bb2a1b8a535a2373e6ec
MD5 5a55cb9e617fa7ef1c1c90679930e1c0
BLAKE2b-256 e473880d6091f1504f70f82ee229cb0cf234107b61693229339d6424ccfd3846

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29b25b030477dce59630af9891cddb87b5b09b07f240c20364cc7dd3f66b227a
MD5 e6bec0af2345cc22531c785d402c37de
BLAKE2b-256 dbe28f3f5902d2435a3c9c1eee21e3ff2d54fd2db10b78cfee6eb97f1fdafc4f

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 14f278c5cd92722c5626b45a62d3fc2fc4a0b0ecd9e205a7cf85b0384ea0e22b
MD5 9108600d92eb2d9661b96197c60be7b9
BLAKE2b-256 5934a382c82edffbf9806be2926c54ae77fea688ae3ef2ed656aabc23339cd48

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f102a1da8bbc7d60514af17d429f5fb1554837e6615ec149c5bc54b4674cba9b
MD5 ce187088bfd0f3cc31d6016c844159c9
BLAKE2b-256 177fd11111ba8019ebbfa2686457747d61c3c851e639b2fc12324bbd29b23d06

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ebc4019a9148a87fd45d82d943882764d60d3cec6f0cd2717916eb88c7c618b1
MD5 f1ae163b29f30edfdad895dcf28579b4
BLAKE2b-256 3b70ec6a2aa20ceb0e26807d51ae6619ac532a6bdecde7dd9907dca0b1209114

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 4df9f6fa684e732777fff4e2c56d8390ca73317c01c1b3f19f5f70d24710c70f
MD5 5ca3b0d8266d1036a77e709122ee9c4a
BLAKE2b-256 8f4dd08f7f461c7a77c3d97ae371e9a0c39f7c405a074e5f74e45f8f04371945

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 412.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 56b6a440809f3c42d67266c9e18ee859895a93b7020d17f8dc8484000925feeb
MD5 ae3815a7cddbc20950ce98cc6f405ce4
BLAKE2b-256 87c3456b2fedfdb7bf2e8fd3cb8feadb6e20905d12d4ad839349160debae6109

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 389.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 496071b235d2bc92613012d3c9024b2caf8aa1a9bbcc08ed5673c7fb103ddc21
MD5 1f83703ebcd5d9faaef533db48c15825
BLAKE2b-256 51a6ec3858f4854a6c1162cd4c0f5e21b8916f68137357f4a6ad43f5dee27304

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a5231d4003e0efdb7bb00e914b13ee4f7c4caa300c6b5fab29c0e597132fec4
MD5 27b50006e7dd9fe5579c9eda0a5bfe9b
BLAKE2b-256 bf84bdcb42fbb5a3efed82d6ef77de821f75563bddc6effd4769799fe2c081dc

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4b304fd9ae156fdcb3a085589bcd0c551807d46843aacf30706e67176ca874e9
MD5 30a296e538ac482379d5c304a5fe3db6
BLAKE2b-256 03675d3cdfd0d41d0b6ff63081480db8a29169c2faf7be44dc41c8ab4f97be07

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 746f5bf9e0a40358b8f1037e9ed1bf14fba166fe4c72fef3353eb369d21918ba
MD5 a757631904f0e5818b92ce31bfc8e448
BLAKE2b-256 ca78e6485a1383c83e3209fcd1db5f8ce18d70b1cbd597b43d0ba1fef93bed96

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 12c7fc1f9c3585912eb5fa11b96940f78a48c0ddcb236659486f017b6f1c2131
MD5 28956faf466955f9f49d6bc3aec5f26b
BLAKE2b-256 bef3e403d67e6ac05b71830ae1aa3332f3d8a0184bbc2d978b86a67bb6724195

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bf9dcee30755d2462194ccc1bdc3b25093708d7820f2f0db7d79ff42f80bbf3
MD5 d0c4bdf6a2b0bc9be07592f5bfe2c818
BLAKE2b-256 62a9039db34e0501c497e57cfb2074368445b1f54ae2c1dc5c551cd02630b231

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c06ee2d5193f79a0ac96b59f3b0a159479a1e8f3c56eafcac43d3a6c0dcd61
MD5 82a2d6f9d8396ed31b915a1fd7db9c0f
BLAKE2b-256 1efed8d53220b5d383cb8b6301cd6afc6d3a85d9c4d9e0fac3834f247f7fb91f

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71d3381b2a88b203a3fd6e22b52f840194145f096270c3fe03c981018b04eabe
MD5 77e951525660f64b4f4f021d704aed4a
BLAKE2b-256 e112e0e414329eff76627b60031608aa5ed4a66762e73e4116cef1b94b41ea94

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 616e9851deb7ededfbcfb3656e74c5a398fa68217432ab9cd9bd23e4f86ee999
MD5 00e40f3b64b353bd9d1f5bf73fdf6971
BLAKE2b-256 597cba4af6cde76f6ca598878bc3537d8a602157377a9a653b56d1da6f8330ff

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bcfe6eedb2292bc9256c85420d7546fb378f9226cb82750087edc5cea1246e4
MD5 6d36cb96368d02264271d132e4195589
BLAKE2b-256 795b059362f7c6c94b1dd4c61e70e89405ae574dc56cf125e0a159777a4f6136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7aa0cf10196b4ff80ff78e16ffa43fa0a201b5546f1cb8f1489ff57b48b803c
MD5 4ab7587adf404c523ab98336e86858b1
BLAKE2b-256 87dd46a60293505e0fb35e8092aacb33c5e027e0719de2d9a407799a539266dd

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 975ddf5443cd1afeac66c7f6a998ed8a28ed8177d6262c96a4af2b6c384ad149
MD5 55dbc9959918c597f110fd087ab95f3b
BLAKE2b-256 4a0d22414e12ebd3386858b4356a1d44dee00f81900c25865c5694decad786fa

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46e966257a0b656f46bee0016db4815b51a577b11ce1363434ac1ed48cd1ebef
MD5 c8562823dd51754eb888f7a2be62d019
BLAKE2b-256 618c054d07b5e2a8e4151fd3d2dbbe1ab129f0f9d5998d838023a303cdf0cc10

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 79be795912dbca15134db4ca0639a5b68933850089dc159a5534b4a9c9087573
MD5 6f1c83cd22879c1ca69b75842a8e5cf6
BLAKE2b-256 66b3e185d6949dc195312eb97ed942f5b4de4600bd90d22fb4b1407214004ea8

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 416.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f53d81553b9f19e7b3f13d6c421a5643013c2d88e312239eb337c5b01aa87216
MD5 dd7e5d3765d1355a55f9d534811d0714
BLAKE2b-256 ad6dc481888fd6232a395e3cb9481cb01035bc1b3f6e2d64bd08049a40d02eed

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.0b0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 394.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a720fc8f51430590ef60ccc2d91b41bb3706cd136580e11ff65cf5ddf776c82f
MD5 9a615a58620847b12fdbf2cbdb6c85d4
BLAKE2b-256 0ced87bd0eb680bbe94a59ee362e6d40e15e77ed7d31f0f0125a4271ab3506bc

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cba137225dbfdd3223bd8b7cfb1965ba8bc90fc3f5f04d22051eb0cae3282378
MD5 65f00c4e626426cdf7e01679e2bc5abc
BLAKE2b-256 56799d738c48c095fef9687f13c94e1469179340dabe2e400b97c5c45e12ff28

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 907283ecd7d25fbaa51798f5555a5f30ea82de18737aed0c706a0fce3797470b
MD5 3141ba4402ca96b8f05653b1687c1f2a
BLAKE2b-256 096d6ac54cdac817c0c6474f00887bb8e8fed789b6abe7e278c9e9b3b05c7efe

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0e3c69ec0e130f2d10cb3a675c941ae8937137be50bc271d08db3433c6a38497
MD5 e3dd37f9612acd271b22909d48588f02
BLAKE2b-256 8b52700619461a8e8a6d2bb82d8592cac198003ae376afef2cfbaa1e777a945d

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d25816c118033708065b935d8a1f1e0dfa43142b98a261a06a26e484a9980328
MD5 6d0941256e417bf1eee42fd262e7d026
BLAKE2b-256 a7522f567626163a7ac9db5de8049ac78992d23706bd33d5685a485f62e3252e

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa71751995146fc33a82f8e08be328a2df10992d0a5da5bc83f4bb33c9ad3120
MD5 da4953fd0e001542bf0c4f0fa635304c
BLAKE2b-256 e758042cdfc71b4b10539c70efd97bdd1353eb25d269bf0e059c7aff437f69e5

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb11adf496bfe415a8f80528d628b8db4e80b65ad1e55102e483e046ccb690da
MD5 785f2f5f750994e9a09ea336c9fc37ed
BLAKE2b-256 5f4c49a759d82cab51a649f0891e0d002eded70241cd3ad4b31af357c1f61eed

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 645855f33db63d6e8751b9560f04039f42695c05edaaa7bc411ad2b5d3970df7
MD5 e0604d91c930c51532f2394e449cefbb
BLAKE2b-256 df27ae10273c05953590d75401e3c7d601588d1f01d2797c60aba556f7a08264

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 292308b184321e34c095437ee3a1251e7bd44c7ba43544540677a547f6492964
MD5 98a97be841094cb8234040e3510c8400
BLAKE2b-256 bfc3664336d0e873d5af7559a1f4860afef251fc99e2e8590dee1b3641799ce5

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6123f727566875e17856a63800d7b163767ee5817019c89ecc660936d14c779a
MD5 ac31b821e85aff3a4cc9b7f5d4c2f083
BLAKE2b-256 934c25ca056daee881d475dba90137d14c979ceed20d80c43e3aa2fb4488e6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71df9704012b073b2a4acef05112ab94d62d64e58fbf1649614165c27f057b45
MD5 c3589a9fd55b6b34df768e5fda8ca96e
BLAKE2b-256 bc2a79dffbfe16b620e3edae46e1351cf4a4dc1bef9ae48ed7284dc71e17425e

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef6a986393b7b845a1b9dac7da59fd89c6196a222d61f32c563d8b6111fb4245
MD5 aacd152b489b5480f70d5825763706d0
BLAKE2b-256 bf546760daad7536527bc0c0c54b96e85897a4d9c4a23b714f4d89723ee1fe97

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38bfd03fc060bd4640be3493b85a368ff897f5ef94a9e457140473db1fc6cec5
MD5 04e556f99054c0525f61430ce87bbc4c
BLAKE2b-256 d6137a812be64bd8a519865a8f391daf32878a93146708eabc8a9a1e9fed9995

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a227376e1b872ef5bae328926aa1d3587cfc26a3ee83120b1c4abac63aa42af8
MD5 3635e0d8c871e39336c26eb844b37e4a
BLAKE2b-256 5aa7ddfa8c3f1746d15708824d12a2fb8c3a3eea22f1411e74a99cf9012e957f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 415.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b117e16bea7d7f97e8bf9fe4210b29f342dbb7d1b1f43ba22027ea324e0740b
MD5 c40affc7acc7b191dee7a5b8ea75dab2
BLAKE2b-256 9725605057a494ddfd0d89bee9b9e200ae490cb177d1183b1ba23cabf6ca51b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 394.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3db7857dbb2eeb9f74c4b8df4177bbf5b5df3c7c2c5868d130c6e5d05871ea25
MD5 0737125ff9d5ef0ff0e68237b74436ba
BLAKE2b-256 40dd75f90debee131b2d4f59669fbf5a202174832faee1ec9f7dd40b042f7703

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ef4081eee2a2e9a0fb674372829749d3e0f9429b24d922f06d1a2b08dad573f
MD5 f5a1c28b67c0f6e2c5d5ff9aa5ba4f75
BLAKE2b-256 f19e2bda0ec17cdab86099c9ffd3db0d4aad6bb87545e953dd77111f31cf9539

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2b553a9698007aaf6e698bb5ee0ad8803bcb67e201d36a2f5527820ee5d03ee6
MD5 d66f18b18a14590c80b3f2e15eb04dec
BLAKE2b-256 12161dcbc2e266b5bc835fdf69edab1b8748c6a46f7bcf5be5ecf4ec3a778042

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 80528481021e4ed96b713867eb902429ad818c42a3f34dfa8f6d570f4816cb2f
MD5 4e1a4372f3c08b8e01d0e25acc41c2aa
BLAKE2b-256 3c96b7cf9654ebe5d2858894946f81e9fdb877ea63617a527d07b97de3ca1656

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4dcb957a52c9a490db5c1497a8271ecfa89e37382021c881c31494749d14a277
MD5 4584c1e65b1f34d21acfd2f29ea205e2
BLAKE2b-256 839f12e85878ebba2e1ed3b70c26fe67c1930d37b37e8799a517a8b596763374

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d8070718567ed8651f96c96cdb9e61069e84c251fcda93d63ddb096e9db772d
MD5 38c6cb14a9c7bd735e8cb5401fd63b5a
BLAKE2b-256 275065dd9556324970603cd308e4444717b3c8d688f14705d13bfeb56e8ba1c2

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 818ea09815f042b24be4bc6ed90b3520560f85190d89bbcecbd7231a27b571c2
MD5 94047474fb63d6115a07d2386a1e532e
BLAKE2b-256 5f9b2bad77fd1e9a481f343f6924a885d0d9ab1cc3bad3b493e6b771ff8c24f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef9332544586ff73bbbe6faf07013b7fb75990e6a5ae3bf9ed89bd93402c46aa
MD5 20d30d4ce26308e60c8e591451c48699
BLAKE2b-256 4416b66565edbae660532ca24810208774d3c8f8463888f65a85e45dfd89bf79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f13f3c61c6591e04668c32b33987aa3956026a54d709b839e53ab852cd29701c
MD5 c83ea795d3563b15aa6c8554d7e5af8e
BLAKE2b-256 9e2973aeea22c217cd7c3156e43e80bf3ae5b6b2cae6ed23b3cc580994db31bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e6b1413450dceb8102447bebaa1ab20185c9f2d48f741a00737feffed1d395e
MD5 caf61e154c30c38ed9f65925fbd9d852
BLAKE2b-256 053568fbf9f7ae091bb82f31e42702f678927d5b480a705142797fc4a289af56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5652f2a7679941f835b2b1cc3f6d9a32a48beff156b91d8ff534e3cccb5ff0f3
MD5 076a099fd48b3957d4e645bd1f3ca97a
BLAKE2b-256 ab2534b3808e6b8c0eb1a6375872349b935b84a9baa3631818fd09b8e28db490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8470354e9ac80deacba37f0ff8c608a7cad577717175fadaba0af26f0dfe2043
MD5 98646d94e9438ab50e633fc8dc95bc0d
BLAKE2b-256 5cdfc2388495046f21c828ed83a80d12c4b19627c189bed68c4216b3c591e38f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22a6a36b1f6950c4b559173157261abf8dfb6837887f3d3a866c142a55fd57e5
MD5 5e9df649b089d3db7a1e347927e1a10a
BLAKE2b-256 71b3c6b026fdbaff9cad13b370114ae11997de648efc1d769efa8f782ed8ccc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 91022d535531e1865e43e74b4b843d9a243d8cd4de67b7bc8471917856205b7f
MD5 4976ab5ea162010b31d39efcc77ac80d
BLAKE2b-256 172b460acabe351cca7fc167ea4aaa12fb8db63345f102932b38502412004ee3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 416.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 476d13691ebde61ffba87e30e5564409ca787244b034a702514597f0c6852ae8
MD5 8bacd150d6956611d152125c3f47223b
BLAKE2b-256 7fbc8d1830882959b4b3e81c33cd16290d3e5855ce68bb9894464e36f4ecdeeb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.11.0b0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 395.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f9cf82ba8a535076febdf7a383795789a4a920e7f48c3a5f5601c53b6f77e403
MD5 92f2f8bf588ac510aaf562704d9220eb
BLAKE2b-256 7c6da2e3fb212d8f88c55140208fd9cebf3a32fffc0b4a99079b8524b6b640e9

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0799d232ae388070610d03a1f6baf4c00d61014c560e96620645fceb3f90a033
MD5 f86c108aad24c67e0d9a88218ebbcf3f
BLAKE2b-256 90fe7cdc0a0468621e0f872d429e6421c8aee19650b0086e5a61064a088cdb77

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5f2f0bee085d85e8e34edebd1fa64a13301a7f6f696628b04fcb1c8dc4a42592
MD5 d0197df7ad5616c1e9daee58256615fe
BLAKE2b-256 0631a5eb43ee46c7ab7f181e1dd7778ed248ed6678828e79f0440e70cb1ec540

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4196a811efb8fa11b50699fae58151046bb56404cf2e2d8613a03a174b5882c5
MD5 63b0ed1af2c642a1e3658ab788dbb471
BLAKE2b-256 7ceeb94d558e46a31505289454a592339d295f32c4bcb0b946e58c27c62b1e4f

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81829046af53ddc66e5bb908e80a7ca2c617983d70f682ae95c5ab4969f1996e
MD5 8a7ca7d76e3d9dcf559681ae3a1c7d0c
BLAKE2b-256 eb31d3a90c4d12edfe2bd8eb426f63d9ac7ca439682d722461ce39bb9a288d5b

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1fd61883ec0e2275028ab2bc0261e41910acbe34727867350ebdee97ee0e2e1
MD5 2981b69686f412ef54c6cc2c543c0857
BLAKE2b-256 65c24a655afab15b907c3aad07966a214856c1761da490ffbb555f993da81f7b

See more details on using hashes here.

File details

Details for the file aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28c35f7c0de807dd8265c3b972143d7c148f40e0ffbf6b15d5c1a95be4be2551
MD5 94a7d51b756e5ccd7e1dd962b28f8327
BLAKE2b-256 eec973d525e554ced507ea5c01d488b142357e6e0069c1cd11b4f6c01ef4ab5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 600b1aae1ea3e5028b879ad8421284e01fa7095ef17cc35f7af6145ccd8be436
MD5 cbcb36ea0fa14408b726204f4a5bf856
BLAKE2b-256 02edee511d19070e737d83394694ac45a6c475a4f34fee32464852250fcebecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8646b68aaed9d583b284d70bec4d6611e6b6e3876f78f58eb7c4d9b79a880698
MD5 048c675a823998e534a815d16c5efbfa
BLAKE2b-256 50fc0d14c512618308cd866d6a02114962dc683971085a9a6bdff2f7cfb161c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f01dae803f9e0d3bfd6158d8f9e54b022f1621ae2401482c4510377f199e6d1
MD5 b31214df9c3e3948d81a86324f051cc3
BLAKE2b-256 f129cdcfad81dc24c3bf0303aae116c5363d1783fc619f8663d7ee09338895e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d275478927272b414162e741812ac6db2667ffbdf52a20c525b096329de91f6
MD5 b64f5828c730143b7f38cc1c06cf9d95
BLAKE2b-256 b83fd89cf00af28474cdf81cb6837071d90b757048496b7efdd73117c77eeb59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 81a6035f9070ea1e0fae796f130b2ad3e7306e397cc0da686b9fc725745ddb8f
MD5 8edad0341377e5c5623f7295cb161a55
BLAKE2b-256 11163a1d6cb776f89097e84bdfb692b159b2bb05e570ecb79ac89b8908909588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 39c347ecb59bc3a4d04922b45115e3fb3706fe3a5cd7470642618e30da5ea635
MD5 5e8f88bbe0b1a07b21211c015a4827db
BLAKE2b-256 fe212956b0090f9c995e3e8e8dd8bc8d1df3763b1215c14f5e1e3febc78b2074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.0b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8d900aef5e52ce41d99ec346c35b0b0611bf131864aaaa4e7985ca1fca32eec7
MD5 f56006130d53c5f5145b0de827e470ae
BLAKE2b-256 059fb7a239788754f31dba749ba7663eca00a5b7aed84439ad9527f96430aed7

See more details on using hashes here.

Supported by

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