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

Uploaded Source

Built Distributions

aiohttp-3.10.1-cp312-cp312-win_amd64.whl (374.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.1-cp312-cp312-win32.whl (353.4 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.1-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.10.1-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.10.1-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.10.1-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.10.1-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.10.1-cp312-cp312-macosx_11_0_arm64.whl (385.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.1-cp312-cp312-macosx_10_9_x86_64.whl (390.8 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.1-cp312-cp312-macosx_10_9_universal2.whl (579.1 kB view details)

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

aiohttp-3.10.1-cp311-cp311-win_amd64.whl (375.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.1-cp311-cp311-win32.whl (355.8 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.1-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.10.1-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.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.10.1-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.10.1-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.10.1-cp311-cp311-macosx_11_0_arm64.whl (385.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl (394.3 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.1-cp311-cp311-macosx_10_9_universal2.whl (582.5 kB view details)

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

aiohttp-3.10.1-cp310-cp310-win_amd64.whl (375.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.1-cp310-cp310-win32.whl (356.6 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.1-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.10.1-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.10.1-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.10.1-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.10.1-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.10.1-cp310-cp310-macosx_11_0_arm64.whl (385.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl (394.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.1-cp310-cp310-macosx_10_9_universal2.whl (583.1 kB view details)

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

aiohttp-3.10.1-cp39-cp39-win_amd64.whl (376.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.1-cp39-cp39-win32.whl (357.3 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.1-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.10.1-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.10.1-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.10.1-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.10.1-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.10.1-cp39-cp39-macosx_11_0_arm64.whl (386.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.1-cp39-cp39-macosx_10_9_universal2.whl (584.8 kB view details)

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

aiohttp-3.10.1-cp38-cp38-win_amd64.whl (377.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.1-cp38-cp38-win32.whl (358.4 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

aiohttp-3.10.1-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

aiohttp-3.10.1-cp38-cp38-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

aiohttp-3.10.1-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

aiohttp-3.10.1-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.1-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.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

aiohttp-3.10.1-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.10.1-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.10.1-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.10.1-cp38-cp38-macosx_11_0_arm64.whl (387.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl (396.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.1-cp38-cp38-macosx_10_9_universal2.whl (587.1 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.1.tar.gz
Algorithm Hash digest
SHA256 8b0d058e4e425d3b45e8ec70d49b402f4d6b21041e674798b1f91ba027c73f28
MD5 9f1bb170c7e490ff7af02ecdb5dbf93c
BLAKE2b-256 f7e1bfcafd54dee859b2e6e690c5f8a8a30343d590a8822bb0669afba4c2c9e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 374.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8fbf8c0ded367c5c8eaf585f85ca8dd85ff4d5b73fb8fe1e6ac9e1b5e62e11f7
MD5 0e1febb82c866b13914d26318787c488
BLAKE2b-256 c066ae547a96abcbed450cabf2d438d9376b852c028838a50ee2c7678e2e5830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e7168782621be4448d90169a60c8b37e9b0926b3b79b6097bc180c0a8a119e73
MD5 1727daa111e5aac520a18b737cd447bc
BLAKE2b-256 494e7a7c6988884425dfb9d4bbe24e1fab0e7b24bfd6f857c1521b4b5a42f229

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f8605e573ed6c44ec689d94544b2c4bb1390aaa723a8b5a2cc0a5a485987a68
MD5 668830ca36febff0eaefa12e318c6bdf
BLAKE2b-256 ea783a01012380be75c8c42373ad54fea3cce73e590d2b863e490f709210ca4b

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f5293726943bdcea24715b121d8c4ae12581441d22623b0e6ab12d07ce85f9c4
MD5 b168879d916877717a00f0786e6f6f2a
BLAKE2b-256 498552e2ac28584b0c140737bd378143d4398a6e2838097764d5e6ffc862d85e

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 120548d89f14b76a041088b582454d89389370632ee12bf39d919cc5c561d1ca
MD5 a991b49a8b929900cfbc836e229e8726
BLAKE2b-256 9f6271ac0a332408f66b6ba31300532987287b85c38a56ef9e3d7fe8247cc81a

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e5a26d7aac4c0d8414a347da162696eea0629fdce939ada6aedf951abb1d745
MD5 620b06e1b4ed3cba743b28d5e367af52
BLAKE2b-256 324c9e0162927eda41006891f0e3e0499dcbb19513f6643291c5742c69d4b5bd

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67f7639424c313125213954e93a6229d3a1d386855d70c292a12628f600c7150
MD5 9cb9b1c8cc21725fa93533320bf8bfbd
BLAKE2b-256 b8a824a04764c0e7f30c901ff40408941049ee8c496ef9f60ffa51798c776321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 786299d719eb5d868f161aeec56d589396b053925b7e0ce36e983d30d0a3e55c
MD5 7a7b4019262658b78671dc063eb336e9
BLAKE2b-256 22119960494844f900d34693a5d49a9491340e708ed530b5bb2b8bdd4a0136eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51d03e948e53b3639ce4d438f3d1d8202898ec6655cadcc09ec99229d4adc2a9
MD5 fe79d55f1ddd44b4518ff7a19f41266f
BLAKE2b-256 f67e87e0ada9b0a7dea935671c0a33ec1428267efee857f93564aa0e83eb942e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cb54f5725b4b37af12edf6c9e834df59258c82c15a244daa521a065fbb11717
MD5 160dfc2a0a9887d1d562439350bebb35
BLAKE2b-256 8ada6486c426dde538b24e3f02a6fd841142a4cd2fd9c9a80e8537db5c36e144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68cc24f707ed9cb961f6ee04020ca01de2c89b2811f3cf3361dc7c96a14bfbcc
MD5 0ebcd0e257c498fe654deb89cc8a1b00
BLAKE2b-256 e41714c37f43cf46ae883185c479e010472636577b7d17fba36daef5ddcdec57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abda4009a30d51d3f06f36bc7411a62b3e647fa6cc935ef667e3e3d3a7dd09b1
MD5 4b1fb9239b12e824beef267daa3d1c90
BLAKE2b-256 0240d26e1a4af08f092dee09eff33a16562cb43a721251023e7e1cd9fdeb8f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb8b79a65332e1a426ccb6290ce0409e1dc16b4daac1cc5761e059127fa3d134
MD5 013b1e4043d912f0e185b826fedcc055
BLAKE2b-256 9317dff64781014a8595c06d3ec88a3f76d063c61371f81dcc0eb40b1d9399c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dcb127ca3eb0a61205818a606393cbb60d93b7afb9accd2fd1e9081cc533144
MD5 b37f0c595cbbc5f9e60f30a12607e82a
BLAKE2b-256 e42af34963d61ad73e01d2b1f60e7100c29d66bab6b3e9f3af5b5e1863c40314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2212296cdb63b092e295c3e4b4b442e7b7eb41e8a30d0f53c16d5962efed395d
MD5 f50b04b1c73d07aab414208a52eb4037
BLAKE2b-256 b935bc0ad5fdf85ef6d8188cc0c75360c0abb02463c5576ebb99565fb381010d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 375.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a77c79bac8d908d839d32c212aef2354d2246eb9deb3e2cb01ffa83fb7a6ea5d
MD5 1aece3371a56c507a58a361a2ebeaf81
BLAKE2b-256 828149afec048067b4436fafdf5d0ac8ce07fb8058ca19cb7a37a15e283397c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 355.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4a9ce70f5e00380377aac0e568abd075266ff992be2e271765f7b35d228a990c
MD5 82b45fa6114fdf0faf33b66e9767fa0a
BLAKE2b-256 ef100c63bf328ebbd90453b415fb5d92b1a1a92d6b277e96c55dce600caddfe3

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c186b270979fb1dee3ababe2d12fb243ed7da08b30abc83ebac3a928a4ddb15
MD5 2267a4642ce2bc164593d59c2f29c2d5
BLAKE2b-256 6df4e10165c17a280e8edf68595cbbf22a6f89768e61621e050882d7c0ca533f

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 de1a91d5faded9054957ed0a9e01b9d632109341942fc123947ced358c5d9009
MD5 783302dcbd22c20d7e9fc03ea1089013
BLAKE2b-256 dd61f6bdf4e5ad57de9929f4e4623d088b10345b68cf680e58667c1b97380f79

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5c12310d153b27aa630750be44e79313acc4e864c421eb7d2bc6fa3429c41bf8
MD5 35ee1f9fefa11608df685a995bf2948d
BLAKE2b-256 194c6fe69dbfc2fc6ae9ca31452c0c756bdf2c71e683c83937b50f41a02bf8df

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 028faf71b338f069077af6315ad54281612705d68889f5d914318cbc2aab0d50
MD5 f12f4ee7aa0becb35afadb1a26157f54
BLAKE2b-256 e337863dd5d9f265b850a48aa8e45a883d51ed881f044fe21c206e87a07c7abf

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7d5bb926805022508b7ddeaad957f1fce7a8d77532068d7bdb431056dc630cd
MD5 46c4cda3399e8bb03b11b09b59d784c9
BLAKE2b-256 2cec7c15d8d2b7cff7bb705d3b9257184fccb9255425cfb9c66ff52cb8049790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 615348fab1a9ef7d0960a905e83ad39051ae9cb0d2837da739b5d3a7671e497a
MD5 dcb33b3d89c82c869ccec2737668f439
BLAKE2b-256 5e465c102cb40305b38c9d7bceee84ca87a6c12e8fae52a2e8375bc55555adb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41d8dab8c64ded1edf117d2a64f353efa096c52b853ef461aebd49abae979f16
MD5 c4bc9767d0b22cada8fbcf907610b479
BLAKE2b-256 ba87bf8e4351f552dd8c70bcf9a33b187de56e198c1f7ec89e46c4553cd7cf2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a07c76a82390506ca0eabf57c0540cf5a60c993c442928fe4928472c4c6e5e6
MD5 afdd66c7832fb3bae6940f6bee452236
BLAKE2b-256 58f16fe725d90806f22a49e3a4653795b322d89f4596549dfb219d2f1aee28dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b023b68c61ab0cd48bd38416b421464a62c381e32b9dc7b4bdfa2905807452a4
MD5 bed37ac9dcbd5a9f6943d3a2341aee2a
BLAKE2b-256 9df98aa14244f9d4a02e7b1239326f3ffd38c212e515ab59d1b3e62d78bb98a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 256ee6044214ee9d66d531bb374f065ee94e60667d6bbeaa25ca111fc3997158
MD5 165ee196f8babcbc35af62151e7376a3
BLAKE2b-256 cd1d5ac784a10db7dd054240d07538ad463e2d1fad24fbfb32b46f0ac67e6ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c2b104e81b3c3deba7e6f5bc1a9a0e9161c380530479970766a6655b8b77c7c
MD5 7315146ab33f6469291a15044f54ebaf
BLAKE2b-256 b159d14ec2a49dc58ec18f67c92bb111113440a3e0010cb3dd3d9f4f16563609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03c0c380c83f8a8d4416224aafb88d378376d6f4cadebb56b060688251055cd4
MD5 5754cbfcf08166619a54c489bf5a0146
BLAKE2b-256 ccdd11045c0b347e5acd796648adbf02fb1f7d83d07ec5437bb288d3b349e846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f6979b4f20d3e557a867da9d9227de4c156fcdcb348a5848e3e6190fd7feb972
MD5 55158be1c39c699abe5240f2864e0172
BLAKE2b-256 1fb4682aefe768cf7799aa38841724d446d532c687afad96fec379f1f2651146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 375.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6bbe2c90c10382ca96df33b56e2060404a4f0f88673e1e84b44c8952517e5f3
MD5 5f5990a56699e122bd7880635462ae61
BLAKE2b-256 75cfb299e7f1b4943cf59cfc1e0e47b7368a23a4a38b16aa1dfa2c4ac1bcf2b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 356.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 68164d43c580c2e8bf8e0eb4960142919d304052ccab92be10250a3a33b53268
MD5 fee7e442523185121f1f91ac98bd0a67
BLAKE2b-256 c3e4ab2a3fff1e8e3054b8ca32a9183b08ddfc2eee4d240223ddac4608f313df

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88596384c3bec644a96ae46287bb646d6a23fa6014afe3799156aef42669c6bd
MD5 85d065f97efd7c89badd00ac29829296
BLAKE2b-256 b11ca3e962faae37cec5eb54578aec9067ee1c1b1d189de1ac73e07e73b24696

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b9fb6508893dc31cfcbb8191ef35abd79751db1d6871b3e2caee83959b4d91eb
MD5 2261cbb7839c82523ef078593d40e727
BLAKE2b-256 c0d0d8f5a81d7925ee6d8bffea2000848305b61b8eba3bbd30bfbada023d239b

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2a384dfbe8bfebd203b778a30a712886d147c61943675f4719b56725a8bbe803
MD5 6d6d16514ac6761c474f8e5560c15acb
BLAKE2b-256 f6fed01d171e12f5f05fd0e63253fbff3f3dfbf4e4346d355a16aee709a3633f

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c81ff4afffef9b1186639506d70ea90888218f5ddfff03870e74ec80bb59970
MD5 88caea90256bf8840e364a19566a3be2
BLAKE2b-256 e6aceb0ed9d127225d49d3c23877f90511a29684b64d32cf3e9270a28dac04c5

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5dd109a925fee4c9ac3f6a094900461a2712df41745f5d04782ebcbe6479ccb
MD5 0fa808fd8cbdf65aabaf37a59bdc4585
BLAKE2b-256 0884f8977e543717c267c9c1a25420609849d821861364ba87b590e0953aaea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9db600a86414a9a653e3c1c7f6a2f6a1894ab8f83d11505247bd1b90ad57157
MD5 066dd3d3b8263e33a9b6e172415ad4f4
BLAKE2b-256 79ac0319ee00dcc4ab36856d85a2185721f29806163212fb9e1745c836830aea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b07286a1090483799599a2f72f76ac396993da31f6e08efedb59f40876c144fa
MD5 3883e6e3135f985e7bed93d1a1bce8b8
BLAKE2b-256 1ea421a37f3ff7fae63e061ea5f78d331715ee11fa28314aec9bbfec854daabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 777e23609899cb230ad2642b4bdf1008890f84968be78de29099a8a86f10b261
MD5 877b1831ad929ab8954ccc145c6241d6
BLAKE2b-256 a3522f4497d2bdbf3a27daff1d275ae6949db7c793f42ed1dcdbc1e002734699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c577cdcf8f92862363b3d598d971c6a84ed8f0bf824d4cc1ce70c2fb02acb4a
MD5 64a537f0ffaaf5a5de6da2635ae12037
BLAKE2b-256 adcc5305199d55a463e9980b8dc65444b8905aa89cf9ef2cd67b283191ef81cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01c3f1eb280008e51965a8d160a108c333136f4a39d46f516c64d2aa2e6a53f2
MD5 bbbbd0ef7d60d9cc8ad2187961616284
BLAKE2b-256 4936754c0a3aa25fad98d62a21ff5a2ec13492f9cb7353203c80c15f30409402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8fb76214b5b739ce59e2236a6489d9dc3483649cfd6f563dbf5d8e40dbdd57d
MD5 d14754a78076be3d53bd7fc2af7e9bfe
BLAKE2b-256 2456b4b4cc5d93023b703fc997441a2c7b3e191118bf1e40278859c33a3be9b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7dbf637f87dd315fa1f36aaed8afa929ee2c607454fb7791e74c88a0d94da59
MD5 a1ba7f5857abadc90d98a5a4d768d33c
BLAKE2b-256 a0b8354b2b93ce26b7cfadffe45fcaa9e50b38561ca57c2d1bd20fe548bb6472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47b4c2412960e64d97258f40616efddaebcb34ff664c8a972119ed38fac2a62c
MD5 e0ce545cbb2601b6a8d59fb4b95df0d0
BLAKE2b-256 d341466751dafbc16d335ce771e2c73ca0ee2d6605a04ca30b52521edbd3da14

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 376.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5951c328f9ac42d7bce7a6ded535879bc9ae13032818d036749631fa27777905
MD5 a189367780e92629f0b96fde575c9fb2
BLAKE2b-256 c29c68da5e6ee6d201cf246e86b5da17024d7e11456478047bae046cde86acd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 357.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9fbff00646cf8211b330690eb2fd64b23e1ce5b63a342436c1d1d6951d53d8dd
MD5 101b499c2c8ad9813abb938e219447a0
BLAKE2b-256 def21d3234b473f0964138d06f29eb66700262ee1921129afa8ef9bb02d1f588

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfe33cba6e127d0b5b417623c9aa621f0a69f304742acdca929a9fdab4593693
MD5 a76ab9e19cf2ffe3bec8ecd5d826eb34
BLAKE2b-256 ba7a805c76b7e22c8eead5c02d0440a7fcb3d350a97e1beae825ec8ca3270c79

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 587237571a85716d6f71f60d103416c9df7d5acb55d96d3d3ced65f39bff9c0c
MD5 3ab9ffd47fcd06e52e927e31bcac22ed
BLAKE2b-256 97d288e551cdeb4fffaabb688b54a6622e773d32825f82744a22c4d545e5dcf1

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 bf66149bb348d8e713f3a8e0b4f5b952094c2948c408e1cfef03b49e86745d60
MD5 5ca1949d3d947addb4e76d503da11f5d
BLAKE2b-256 94b59cd00fc1ba34fb8d9305a0c9f4d9575509513503a11c05c40921b3532a9c

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bde0693073fd5e542e46ea100aa6c1a5d36282dbdbad85b1c3365d5421490a92
MD5 308395117cc8f3adb4839faeeef5299f
BLAKE2b-256 f88131d598e608d7beeebc7112aa940ff8319e61f815422a0eb5392a5afcc4c8

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21778552ef3d44aac3278cc6f6d13a6423504fa5f09f2df34bfe489ed9ded7f5
MD5 bcdfc6e427edfc8600f88e1df6f36b32
BLAKE2b-256 11c45aa68031c3526eb1bbeea4af2a3fe2af5dd4a9212bce0fd1ed8db249fa8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc3ea6ef2a83edad84bbdb5d96e22f587b67c68922cd7b6f9d8f24865e655bcf
MD5 ac5faccc7621e5511db4abd1b623ddf2
BLAKE2b-256 fee672ac673299f897a2291f34f5d165cf1645fe72c4f87e8e78e4c30dddbca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ccf1f0a304352c891d124ac1a9dea59b14b2abed1704aaa7689fc90ef9c5be1
MD5 ee926e77d1e31c60210c2956fb920505
BLAKE2b-256 6c1a5a40b549a8cd8d7f3a86c8b9b4ea7d17d725c5f19ef1b85d01027df410ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1988b370536eb14f0ce7f3a4a5b422ab64c4e255b3f5d7752c5f583dc8c967fc
MD5 1caeaec6c15d34e33dda6484ffbcdd6c
BLAKE2b-256 2579b822bfb9770f1da0c92343abb39d7742fcb94023bca19cce6ac2df5e7fdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a702bd3663b5cbf3916e84bf332400d24cdb18399f0877ca6b313ce6c08bfb43
MD5 9789f33a693aba4d8fdaf3308f7feae5
BLAKE2b-256 f989cce6b7f2703537fc89b85094ca63d775aff8321ff51e220cb500f2f0d5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89b47c125ab07f0831803b88aeb12b04c564d5f07a1c1a225d4eb4d2f26e8b5e
MD5 e65cea53ed24f01a5d60672e60a3ef87
BLAKE2b-256 93760517c26049dd5a5a12ca38fe4646d13ec030bdafe5fbc5eead6f3b825f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8a8221a63602008550022aa3a4152ca357e1dde7ab3dd1da7e1925050b56863
MD5 bcb3208719508919dda9aed638952817
BLAKE2b-256 e938a37c4537be517947467630100ccbd5da9843e54e0710c822567ba046a0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9f8beed277488a52ee2b459b23c4135e54d6a819eaba2e120e57311015b58e9
MD5 a6a7df76e6ae2efe1cfb193d42d5454f
BLAKE2b-256 a733185ae02c2f86e164d13d08a53a38b051842ca2ab582eeb8fbfa46c3ae018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 440954ddc6b77257e67170d57b1026aa9545275c33312357472504eef7b4cc0b
MD5 751ff5d5a50770c65660642a0d065147
BLAKE2b-256 ec76d36deef134d03e506aa8dde08febde79e2f53a7adcc53a49776f0c08a8be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 377.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 93094eba50bc2ad4c40ff4997ead1fdcd41536116f2e7d6cfec9596a8ecb3615
MD5 c12c6fc8f9b42cd17e2e9a09a0d4b356
BLAKE2b-256 cf9cc6f4b6a46d4ae908b2feb4aa466e1b17fa34baf0532d432fd46ac3a268a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 358.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 df31641e3f02b77eb3c5fb63c0508bee0fc067cf153da0e002ebbb0db0b6d91a
MD5 4dc4ce1a2fd568de9ebd00eb8af7b3d3
BLAKE2b-256 56c09d0c586cbc5409ebcc738bcf0cd6e9f7c36f6958f3ba645fb22724d796d7

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5cd57ad998e3038aa87c38fe85c99ed728001bf5dde8eca121cadee06ee3f637
MD5 2a9d4e13b5cfb20559c3eb34f58f65e6
BLAKE2b-256 3c508b7ef97a931a4466df8b356f34250fa321bb18ee0117fcfef991ad96a3f9

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6b14c19172eb53b63931d3e62a9749d6519f7c121149493e6eefca055fcdb352
MD5 53f4d4d15ce3dcecaac259a293141103
BLAKE2b-256 719bc01358dcc9619a7cd58b364f7c1c6dcb5e9c67caea69cb0fee91dadfc35f

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8db9b749f589b5af8e4993623dbda6716b2b7a5fcb0fa2277bf3ce4b278c7059
MD5 7b86fb3e4383dde396a48a1f69aab281
BLAKE2b-256 99255d01b4cdb62048f2cdd0a1c2b3f1897f4c67560c1788babd01ee4e35c0a4

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0de63ff0307eac3961b4af74382d30220d4813f36b7aaaf57f063a1243b4214
MD5 81013a166d6855f02a75f45f8c2f4c18
BLAKE2b-256 10fff9d9494aecc30f665fac0f5be23cc43f5524bb58b68ace18756eb6b02028

See more details on using hashes here.

File details

Details for the file aiohttp-3.10.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0df51a3d70a2bfbb9c921619f68d6d02591f24f10e9c76de6f3388c89ed01de6
MD5 95798a65f507205c3dabebdabd34f9b7
BLAKE2b-256 964e1494118cb6af440d74fd9dd119ebfad01548b5afc9c2da9cb22ba292ebf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e9e9171d2fe6bfd9d3838a6fe63b1e91b55e0bf726c16edf265536e4eafed19
MD5 d00bcebc25c6c6a771bdb2a58c813a06
BLAKE2b-256 048ebe89930852d0a6edf298b841d72394cd12ae292e27b85c2fffb7da224ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a95151a5567b3b00368e99e9c5334a919514f60888a6b6d2054fea5e66e527e
MD5 654820dc3ae64325e0fafc5a69c06fb0
BLAKE2b-256 aaf5785363fa084b7d64d8c088658284c8c9e5855f592ec462789ad8bfea0305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7b55d9ede66af7feb6de87ff277e0ccf6d51c7db74cc39337fe3a0e31b5872d
MD5 ec0a1a12a19579058935807350e188ed
BLAKE2b-256 16be1bd7e6f0eb9b24a55cc7d118125819e23111856a66a001640f306e713a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 222821c60b8f6a64c5908cb43d69c0ee978a1188f6a8433d4757d39231b42cdb
MD5 cb570b241fe1d5b4cf36d8ac05785a22
BLAKE2b-256 f5fccbdd5d7463e765297211f3d4e33df686f303f4076e59d7ca4dbb3656770b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a57e73f9523e980f6101dc9a83adcd7ac0006ea8bf7937ca3870391c7bb4f8ff
MD5 438c620596b9b61eacdf4f2940ae5991
BLAKE2b-256 bd7820023c524e99c81cfc0d26682351f6d6287347fabd0e9cab626a349381a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8311d0d690487359fe2247ec5d2cac9946e70d50dced8c01ce9e72341c21151
MD5 cac256847ba8299e770b6563c9d6797e
BLAKE2b-256 73080fe17e5d686ea3c2fa9c603481f8b23faa4ddb5b2f3e4721004c3b04ceb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2fa643ca990323db68911b92f3f7a0ca9ae300ae340d0235de87c523601e58d9
MD5 e3213e4f2e933fa12a77f7e74581f0ea
BLAKE2b-256 ef895aa5a914e398468a91ecee6dcb3781c6ec8ff9a7859f5c0c9dc74c025276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 54b7f4a20d7cc6bfa4438abbde069d417bb7a119f870975f78a2b99890226d55
MD5 505cb50f8d6ca09bc275b2dce24a25d1
BLAKE2b-256 a6aed83e8065ceba138a3ab1f38c3b3af7137f10254ba196ef8248b8ff81136b

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