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

Uploaded Source

Built Distributions

aiohttp-3.10.2-cp312-cp312-win_amd64.whl (376.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.2-cp312-cp312-win32.whl (355.8 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.10.2-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.2-cp312-cp312-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (388.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.2-cp312-cp312-macosx_10_9_x86_64.whl (393.0 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.2-cp312-cp312-macosx_10_9_universal2.whl (582.4 kB view details)

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

aiohttp-3.10.2-cp311-cp311-win_amd64.whl (378.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.2-cp311-cp311-win32.whl (358.1 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.10.2-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.2-cp311-cp311-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (387.9 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.2-cp311-cp311-macosx_10_9_x86_64.whl (396.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.2-cp311-cp311-macosx_10_9_universal2.whl (585.3 kB view details)

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

aiohttp-3.10.2-cp310-cp310-win_amd64.whl (378.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.2-cp310-cp310-win32.whl (359.0 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.10.2-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.2-cp310-cp310-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (387.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.2-cp310-cp310-macosx_10_9_x86_64.whl (396.6 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.2-cp310-cp310-macosx_10_9_universal2.whl (585.9 kB view details)

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

aiohttp-3.10.2-cp39-cp39-win_amd64.whl (378.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.2-cp39-cp39-win32.whl (359.6 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.10.2-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.2-cp39-cp39-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.2-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.2-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.2-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.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.10.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (388.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.2-cp39-cp39-macosx_10_9_x86_64.whl (397.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.2-cp39-cp39-macosx_10_9_universal2.whl (587.6 kB view details)

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

aiohttp-3.10.2-cp38-cp38-win_amd64.whl (380.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.2-cp38-cp38-win32.whl (360.5 kB view details)

Uploaded CPython 3.8 Windows x86

aiohttp-3.10.2-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.2-cp38-cp38-musllinux_1_2_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.2-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.2-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.2-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.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (389.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.2-cp38-cp38-macosx_10_9_x86_64.whl (398.7 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.2-cp38-cp38-macosx_10_9_universal2.whl (589.9 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2.tar.gz
Algorithm Hash digest
SHA256 4d1f694b5d6e459352e5e925a42e05bac66655bfde44d81c59992463d2897014
MD5 5a488a7e03ff89fd14b4eca48a4ea636
BLAKE2b-256 451136ba898823ab19e49e6bd791d75b9185eadef45a46fc00d3c669824df8a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 518dc3cb37365255708283d1c1c54485bbacccd84f0a0fb87ed8917ba45eda5b
MD5 85ed3eb158af46b0b4fb9bd7263dce3c
BLAKE2b-256 77e2aaacbc16809ee50f71e1f2856a78f64307d9b799d36878eaf77aa053053d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9bb2834a6f11d65374ce97d366d6311a9155ef92c4f0cee543b2155d06dc921f
MD5 b9b63c2d19e616ac72b42e4440afdba6
BLAKE2b-256 bd0011eaebbcb406eb19dbf64e6683db53b495ee15206b4b9bc58587797b9ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92f7f4a4dc9cdb5980973a74d43cdbb16286dacf8d1896b6c3023b8ba8436f8e
MD5 1572a94edbc4d210da08a2091751c34a
BLAKE2b-256 7be8da4dcf56429f9b29faf615378a4d7550140208cf755eb6f755f24113af59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 377220a5efde6f9497c5b74649b8c261d3cce8a84cb661be2ed8099a2196400a
MD5 9a05cbc996e29239dbfdf93356d721a8
BLAKE2b-256 2179a3f13982c363ba67f2693088717fce94a24a9c0c5d56e42df28a5ce9e3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c8e98e1845805f184d91fda6f9ab93d7c7b0dddf1c07e0255924bfdb151a8d05
MD5 145f446ae0941fdcdd8c23e55e553e7b
BLAKE2b-256 f525770b29e1522a71bc4a50f6268a4abc699529c88e442a593061028750cdff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19073d57d0feb1865d12361e2a1f5a49cb764bf81a4024a3b608ab521568093a
MD5 f48db20d20d6dcbe569ea0eeaac24b27
BLAKE2b-256 1eca200cd6984acf9d4293c7b2588dc59d92c2a1b5055b3b3d55a015e215ead0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8da9449a575133828cc99985536552ea2dcd690e848f9d41b48d8853a149a959
MD5 ab4dc8e9cc076e96125d8e54a8597d1a
BLAKE2b-256 edf3a5203c907dc48345d9124c3e2149a322aeb3960184bf7d65dc58dfd55ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8f515d6859e673940e08de3922b9c4a2249653b0ac181169313bd6e4b1978ac
MD5 264e3abe267ebe660a3e3793ca0740e8
BLAKE2b-256 0b072b68b23ed85f4c73f12025c446127f6f55e5d9ad848bb501d6cf333cfd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9076810a5621236e29b2204e67a68e1fe317c8727ee4c9abbfbb1083b442c38
MD5 668d3565fc5fa83238f3720e171d31dc
BLAKE2b-256 dc0e9686ffc6fc9145cfe9483e7d518b7f1d867d65437dbf0615f28c43fbb20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c474af073e1a6763e1c5522bbb2d85ff8318197e4c6c919b8d7886e16213345
MD5 88a093ac94ee8b48adaa031afee59c57
BLAKE2b-256 07ce4187db914f041492069917fc21c0bffa9264b77003b58e91400369834e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c01fbb87b5426381cd9418b3ddcf4fc107e296fa2d3446c18ce6c76642f340a3
MD5 9dd570da9f7221ec9c74917bb09a5893
BLAKE2b-256 c7a444dfa668b7292868db9840b2c9d171576553a874ff65bd2386c04ba8b694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 655e583afc639bef06f3b2446972c1726007a21003cd0ef57116a123e44601bc
MD5 33bad56b689889ae612a7f5a88ff5ae2
BLAKE2b-256 99a6099a861d52b22a49b22e7106d750bcbade5e12fcda2e69170f6d5fd624c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 341f8ece0276a828d95b70cd265d20e257f5132b46bf77d759d7f4e0443f2906
MD5 13083240031e30a04816d8e7652f38d0
BLAKE2b-256 edf6a605abb080c136291306e2253622eef25b5da140e03d9637f5a91f413a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 465e445ec348d4e4bd349edd8b22db75f025da9d7b6dc1369c48e7935b85581e
MD5 3099daaf535edf1924de4f1e78585d29
BLAKE2b-256 2d41b0aefa65f9ed474ea1c9146109be67b11eca7a45b7f39b3ea059cf7428a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 14eb6b17f6246959fb0b035d4f4ae52caa870c4edfb6170aad14c0de5bfbf478
MD5 fedbd9fc4764a84a25f5f5da70fffb58
BLAKE2b-256 efc34c11c493c69e7cc802e6aa95271b145ff17a427026b7b5cc8af091f1ce9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca2f5abcb0a9a47e56bac173c01e9f6c6e7f27534d91451c5f22e6a35a5a2093
MD5 fdf8f0d93451d70dff5e285c1daaed7e
BLAKE2b-256 c10fb4fa4717a7c9307e246b4d886c47cc79650fadd1c4debb0086fefd85b25c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4ddb43d06ce786221c0dfd3c91b4892c318eaa36b903f7c4278e7e2fa0dd5102
MD5 6e05b4f27dc4b210c755624e2c39650c
BLAKE2b-256 bacc560d80417a8d144d5ed7b5ce92420973b68462e99245d4e2c85f68fdd8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fe8503b1b917508cc68bf44dae28823ac05e9f091021e0c41f806ebbb23f92f
MD5 bd77546985d55c0c10f33a1712f9dc30
BLAKE2b-256 545f956909f87d2ede49e1fc422e811c8243d5b487d423583301a14788292d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 494a6f77560e02bd7d1ab579fdf8192390567fc96a603f21370f6e63690b7f3d
MD5 5ef4afb53c2a430bef91bf7b63d9a11a
BLAKE2b-256 79f29f3901c4c94f9218ab3fe2231294f58cb695a3404554489c102db8376dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 dafb4abb257c0ed56dc36f4e928a7341b34b1379bd87e5a15ce5d883c2c90574
MD5 b0f643a5175bf5a3421ce5e24ff3a19f
BLAKE2b-256 894ff4005be64a97c532c7d5ab2304bbeda22ba9b506cebbb6eb09834796d088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 686c87782481fda5ee6ba572d912a5c26d9f98cc5c243ebd03f95222af3f1b0f
MD5 92df6b2a33e7bc6046e290a0715487a6
BLAKE2b-256 d4fac70c250c0cd8dcf96aecf783e0926db463cdcf946915406727cc3071d780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1a50e59b720060c29e2951fd9f13c01e1ea9492e5a527b92cfe04dd64453c16
MD5 668c411f06d1233551ff5b30524b968a
BLAKE2b-256 c43aa8a8f4e47248952d691d4265ed40f85ebf345c103b95f66022cdef10f58e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7dd9c7db94b4692b827ce51dcee597d61a0e4f4661162424faf65106775b40e7
MD5 3f412136d4b679d87ebe879c70d3d858
BLAKE2b-256 dffe7b4e77cd83d4e865430e9b6f923f070f66da7effe791348b56e78358b21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7de3ddb6f424af54535424082a1b5d1ae8caf8256ebd445be68c31c662354720
MD5 85f055ea1b7913190614ca95622d9144
BLAKE2b-256 8b929df276fcc101e08378f706a4a58e6b6a346756a94198d6ec68329a2b8d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54e36c67e1a9273ecafab18d6693da0fb5ac48fd48417e4548ac24a918c20998
MD5 e12a46b41bec8167a22f022be2b7b339
BLAKE2b-256 9da9e3fa5e5f6723b19f17ea68be21eee518ebfbe30444c7fc08993fc2a25ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01c98041f90927c2cbd72c22a164bb816fa3010a047d264969cf82e1d4bcf8d1
MD5 36c78fec346b7b6106f4dfaa8a7ddc76
BLAKE2b-256 27f81a0d0c17e9aeeaa63b7d45643c4c4f05585268089abe711c475bc5e21db8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e57e21e1167705f8482ca29cc5d02702208d8bf4aff58f766d94bcd6ead838cd
MD5 bc5fc332255c755b84a93396b1ac2add
BLAKE2b-256 b4de571f56bad7449519ede3d0e4a0a05a056ca2db309da0bae0094a91c9a92b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4be88807283bd96ae7b8e401abde4ca0bab597ba73b5e9a2d98f36d451e9aac
MD5 d6619adbb736be96b6edf9d468b66669
BLAKE2b-256 0867c3b44042e80c979bb49280dd567fb59a62b8f99cc0991b255ca1feca215d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec6ad66ed660d46503243cbec7b2b3d8ddfa020f984209b3b8ef7d98ce69c3f2
MD5 1136dd43ca6f74c78abcdc6b993aa8d6
BLAKE2b-256 526c570be295a63a47f7819a820d6f208fa7c7295fa17f5a3f601262a47b2721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 87fab7f948e407444c2f57088286e00e2ed0003ceaf3d8f8cc0f60544ba61d91
MD5 f75d6568f6efecd13c841ee1f2b4cbb5
BLAKE2b-256 07ef5414e99122e15e750b1f62bca15251e277449eb1c3f9ba05965d95529c99

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54ba10eb5a3481c28282eb6afb5f709aedf53cf9c3a31875ffbdc9fc719ffd67
MD5 c71ac795da3b93b9ed1aecb5d0f4ddd1
BLAKE2b-256 b2c7d7a34b074a7c601b515de717b0df44b948dd177480d5607ae447e4dfa98e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f81cd85a0e76ec7b8e2b6636fe02952d35befda4196b8c88f3cec5b4fb512839
MD5 531fd3701798044d7f633e4a3cf403eb
BLAKE2b-256 c2a5bbac491a29aabdd9c4998c4d6f163980525502ee2fc4bf528bd029ed3eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0fde16d284efcacbe15fb0c1013f0967b6c3e379649239d783868230bf1db42
MD5 2d95ff0b05ec66ef2c3b2918aa216989
BLAKE2b-256 4289ed4282addb9af968a49ead85de82a8fe31b8ed5adf4832a2bfcc460e7c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fae962b62944eaebff4f4fddcf1a69de919e7b967136a318533d82d93c3c6bd1
MD5 e90587fdad9db963ea254a7da0b376cf
BLAKE2b-256 37045f00ef79b56170323e693f35f0c4d5714aea3fdbff84206fc7a84618f315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8bd7be6ff6c162a60cb8fce65ee879a684fbb63d5466aba3fa5b9288eb04aefa
MD5 c85d45e4591684b1d32a8813277dd507
BLAKE2b-256 ef20dc0d72c5c4f8d0c2003bdce9b240138bf9a8b72b2002f3e5f5a1d91b4f8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a7ceb2a0d2280f23a02c64cd0afdc922079bb950400c3dd13a1ab2988428aac
MD5 56a88d6482e726e201248ac882a40b12
BLAKE2b-256 787a43d0fdac260aae46984f7f253f7f0e8c0f0e0130ca5cfc8a69132e58bbe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18186a80ec5a701816adbf1d779926e1069392cf18504528d6e52e14b5920525
MD5 a2bda6470bde3afdd9c81c83e822ddfc
BLAKE2b-256 73cd539698dd7d26f80aa2ee76e1dce9a792dba057b9cd873ec929accd9fb7ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00191d38156e09e8c81ef3d75c0d70d4f209b8381e71622165f22ef7da6f101
MD5 44ddab1ee5db7a6b05cc95b2162069bd
BLAKE2b-256 123ee31c68fd01f53657f10854a8595aa6739d70d1062246fd4bc8f0b8a0a0a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d611d1a01c25277bcdea06879afbc11472e33ce842322496b211319aa95441bb
MD5 43a262fd64b808df25bf7d6c98a7afcb
BLAKE2b-256 9e4e85809d2f4c995856bc30dc516f8a83355c9154cee7e8f049b0a1b6419acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99f81f9c1529fd8e03be4a7bd7df32d14b4f856e90ef6e9cbad3415dbfa9166c
MD5 6f9d706a32055d6a0f34072bdac2a82f
BLAKE2b-256 0c23f9b9bb0d7ec1befac8c033e9c794b2bc4b1adf539c23644336f382dc6709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96e010736fc16d21125c7e2dc5c350cd43c528b85085c04bf73a77be328fe944
MD5 e94e7ecb6d1dee0939cea780f34ef902
BLAKE2b-256 1e91f5bee0f9d016deac9deb8ae6338d89fb14b456d4aad79820e1a8bf0467cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74c091a5ded6cb81785de2d7a8ab703731f26de910dbe0f3934eabef4ae417cc
MD5 25daf5ac9cc6113fec0dedea760f4a58
BLAKE2b-256 e548274173516dee14fdc2a20a65f4f18047e747dd6b52a5955cc22efa66954c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eabe6bf4c199687592f5de4ccd383945f485779c7ffb62a9b9f1f8a3f9756df8
MD5 faa1f10bc9469b7c4dd9c8de58cc8a1b
BLAKE2b-256 a30daa4bb80d59e6ebb63715334c83c8cdcb9081503fd75fd798635712b3c723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1aa005f060aff7124cfadaa2493f00a4e28ed41b232add5869e129a2e395935a
MD5 f594dc2dcdbb0e51a1996b31da0a8c97
BLAKE2b-256 6966bc0a181b409485122f9c50be2777f9276a4be670947c0b771e214a42d4ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 95213b3d79c7e387144e9cb7b9d2809092d6ff2c044cb59033aedc612f38fb6d
MD5 21f40de0c10612a284acd5a1ab302138
BLAKE2b-256 7bb22790e4029f228c833a422741319fd512f82543a43d69791e1a4e7c6d367f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 947847f07a8f81d7b39b2d0202fd73e61962ebe17ac2d8566f260679e467da7b
MD5 3a395c18add8f7efdd0b95ef718feef6
BLAKE2b-256 629c5587dbb5250ebecbe3a6258c72910f731058a7058672803c40b28286b119

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e2f43d238eae4f0b04f58d4c0df4615697d4ca3e9f9b1963d49555a94f0f5a04
MD5 2818764717b7905c9223508fa2611f5e
BLAKE2b-256 2615d6c340ad979224dc6ad9ca7881888738e1781ae75c8116f4f6ae8fe579e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1238fc979160bc03a92fff9ad021375ff1c8799c6aacb0d8ea1b357ea40932bb
MD5 0ad2da918363526fab9c2aab831f8bf2
BLAKE2b-256 1fbb96aa4f044fc080c56f92000f39816511b6fe2ec1071be5acba8e781452fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 cd33d9de8cfd006a0d0fe85f49b4183c57e91d18ffb7e9004ce855e81928f704
MD5 8577efaf7207ccf8e57565ae3faeae34
BLAKE2b-256 2d7d97a692de7670adb03d24cccabbf28ae83ad173a10e54e6010d146d41671a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b52a27a5c97275e254704e1049f4b96a81e67d6205f52fa37a4777d55b0e98ef
MD5 13fd5eeae89b9dc31b8b1af7bc27bc60
BLAKE2b-256 eda56b01d5f34e640a53d0a777a2f5a0b9e9e87bdab17c24c7a7fd7d5bbfd87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14dc3fcb0d877911d775d511eb617a486a8c48afca0a887276e63db04d3ee920
MD5 4eda40cb4d12cf0eee7880a7e1e14277
BLAKE2b-256 e42eca2f5954637e37e6ab434db655a35c60ec673f39f37511dda270c51235aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d984db6d855de58e0fde1ef908d48fe9a634cadb3cf715962722b4da1c40619d
MD5 18a102bc04bf7063338e4b14cdd2a9f6
BLAKE2b-256 c1732001b2f8a7392f3889abae8df2d1ae0956c21d2542e4e7c942b1e18f1c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0df930015db36b460aa9badbf35eccbc383f00d52d4b6f3de2ccb57d064a6ade
MD5 b1b7b832983c0e3b06154360f0519984
BLAKE2b-256 854028ec1238a6a72c0dc5882c5c2d3521e1aa7510220b418438cc8b0eac74c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df59f8486507c421c0620a2c3dce81fbf1d54018dc20ff4fecdb2c106d6e6abc
MD5 b235c2a006aa9c20364d6479bd418533
BLAKE2b-256 61820ad6c41db2c57b3a090fdb2a3c7e2f4c18762f1312cfdf580ddf080cdb8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69d73f869cf29e8a373127fc378014e2b17bcfbe8d89134bc6fb06a2f67f3cb3
MD5 7e4fb223a040b2ba56c7555c3b31c6b0
BLAKE2b-256 fdf2037fc4254f0f7db223903cf04f3ba2a2368ecc4496cca873a2dbd4b1526b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2bfdda4971bd79201f59adbad24ec2728875237e1c83bba5221284dbbf57bda
MD5 8a91b6f264cbc2e46b890a63ce5438a6
BLAKE2b-256 e3bbc559899cc8c32db8aa5b5fbf78a26693326f2a40f26d46086f30d6a5d3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 562b1153ab7f766ee6b8b357ec777a302770ad017cf18505d34f1c088fccc448
MD5 022592ed4c38797362379c2c9360ab02
BLAKE2b-256 89abf72aee8a1193f0ee2f51bb27c7e003769801e09b1aec0495f224f05a34fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fd16b5e1a7bdd14668cd6bde60a2a29b49147a535c74f50d8177d11b38433a7
MD5 69e5c52dd173c3e3a0e1375a8a26fbc3
BLAKE2b-256 876a9874a7a782f18818864e9d5849629608117eb43b3a36d03a5baef546114c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91b10208b222ddf655c3a3d5b727879d7163db12b634492df41a9182a76edaae
MD5 4c61e7d3250c7f30b74ac868d2c75b22
BLAKE2b-256 7aa56f7ed32cce8ed886c747e0e3376bfc0d5ede1637b22d557d9449846d8df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9dfc906d656e14004c5bc672399c1cccc10db38df2b62a13fb2b6e165a81c316
MD5 0a6ca66fad314a828787e1469419fc00
BLAKE2b-256 2d1c8f1be7e71eb5196111e7f6fa6a7595e62386b26331dd1054384744f0094e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7cc8f65f5b22304693de05a245b6736b14cb5bc9c8a03da6e2ae9ef15f8b458f
MD5 0af191f0bcca6ed247977eaf3b224ce5
BLAKE2b-256 786e47ac11c7b45477078dcb01b4a8e49b22ff534ff5139c23be47521ce85d34

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53e8898adda402be03ff164b0878abe2d884e3ea03a4701e6ad55399d84b92dc
MD5 68eadd84136fc31baef76b6fbd72f372
BLAKE2b-256 52bedf103a072b95276ac18a2b958beb9078ff8f0c598064339b486a2d96b1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c836bf3c7512100219fe1123743fd8dd9a2b50dd7cfb0c3bb10d041309acab4b
MD5 374f52cf0cc869f3b48de9dff440889a
BLAKE2b-256 5c1a0dae533b5eb8d6d3d6ad1ce482f4410640e98fc46b7454cf57572a9ed4b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ad2274e707be37420d0b6c3d26a8115295fe9d8e6e530fa6a42487a8ca3ad052
MD5 103597e7ea50887c9a0526c33d75f319
BLAKE2b-256 a97ee5ea8f073be4783018e23c7bf9ea4dc21ec31c453f71b52c75b01a6b1c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fc61f39b534c5d5903490478a0dd349df397d2284a939aa3cbaa2fb7a19b8397
MD5 56fc2d181995648d0c4a17ba0c3c9564
BLAKE2b-256 de2ee8667a8a0a91cbd40f5e2820bf0133c416c4792a463625895bdc2b414027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 352f3a4e5f11f3241a49b6a48bc5b935fabc35d1165fa0d87f3ca99c1fcca98b
MD5 c2c21d77c3fc02e4b8a27dbf4b15a7e9
BLAKE2b-256 843f2b7b941672717818a94c4e28798710b214c66353dac19d78ca94ade7a999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49904f38667c44c041a0b44c474b3ae36948d16a0398a8f8cd84e2bb3c42a069
MD5 0701297ace6b4170fcf37765af8b83a6
BLAKE2b-256 801e03bc1b7e2e9df4b9d81d8cd05e1aa3869535002f123b72ad8ce22cf814da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddfd2dca3f11c365d6857a07e7d12985afc59798458a2fdb2ffa4a0332a3fd43
MD5 27c2ca90f594de2fb7bcce445c6544a1
BLAKE2b-256 e011384679eb81e42eb036c39d33bcf195a5873cfcccd016828d81b054a29e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9f49bdb94809ac56e09a310a62f33e5f22973d6fd351aac72a39cd551e98194
MD5 08845fadbed1e10affea84f92a42e041
BLAKE2b-256 683ec8d6ec8d3e30eae2b269d7dce33d8291f1abbac5b7a2eb48a4aa38b334a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30a9d59da1543a6f1478c3436fd49ec59be3868bca561a33778b4391005e499d
MD5 34d12252d6eaca267af6984ee6d4b1a6
BLAKE2b-256 4b937489798a4841dd3712342ad6f86d609fde917267ae03bb41df4c8b660867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3988044d1635c7821dd44f0edfbe47e9875427464e59d548aece447f8c22800a
MD5 f62442f098cd279108c30535e9358175
BLAKE2b-256 526a9b0c9e3a764997f536e8c0c0ae95676e6c376a3c21d54262898144edbdd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 685c1508ec97b2cd3e120bfe309a4ff8e852e8a7460f1ef1de00c2c0ed01e33c
MD5 4233033b15925d4fef90e0cea3d82664
BLAKE2b-256 ecf7755e9cf911b6e0389ef866c8b4f74913e3f8f733826765869beefd28b9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9360e3ffc7b23565600e729e8c639c3c50d5520e05fdf94aa2bd859eef12c407
MD5 53d194fef741d2d3471b2d7324412033
BLAKE2b-256 4338c7aa0017a047286bb4609f8a3e6619d40e293bdfe74506ec7645ac728911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f6f0b252a009e98fe84028a4ec48396a948e7a65b8be06ccfc6ef68cf1f614d
MD5 9c6d7c14e8b129d0db6e30aa9d40719e
BLAKE2b-256 3ca10212db94e11be10c6d617e6be3d338088f19e64b7f52a5b96480352d01f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f98e70bbbf693086efe4b86d381efad8edac040b8ad02821453083d15ec315f
MD5 129280d5177b8d14d35331ee1b1638f3
BLAKE2b-256 0077f009b9002ac22844562844ea1a42c094bf0d5eeab871f61e693de0eecec2

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