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

Uploaded Source

Built Distributions

aiohttp-3.10.0-cp312-cp312-win_amd64.whl (374.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.10.0-cp312-cp312-win32.whl (353.2 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.10.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (385.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.10.0-cp312-cp312-macosx_10_9_x86_64.whl (390.6 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

aiohttp-3.10.0-cp312-cp312-macosx_10_9_universal2.whl (578.9 kB view details)

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

aiohttp-3.10.0-cp311-cp311-win_amd64.whl (375.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.10.0-cp311-cp311-win32.whl (355.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.10.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (385.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl (394.1 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.0-cp311-cp311-macosx_10_9_universal2.whl (582.4 kB view details)

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

aiohttp-3.10.0-cp310-cp310-win_amd64.whl (375.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.10.0-cp310-cp310-win32.whl (356.4 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.10.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (385.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl (394.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.0-cp310-cp310-macosx_10_9_universal2.whl (583.0 kB view details)

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

aiohttp-3.10.0-cp39-cp39-win_amd64.whl (376.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.10.0-cp39-cp39-win32.whl (357.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.10.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (385.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.10.0-cp39-cp39-macosx_10_9_universal2.whl (584.7 kB view details)

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

aiohttp-3.10.0-cp38-cp38-win_amd64.whl (377.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiohttp-3.10.0-cp38-cp38-win32.whl (358.2 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

aiohttp-3.10.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (386.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.0-cp38-cp38-macosx_10_9_x86_64.whl (396.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiohttp-3.10.0-cp38-cp38-macosx_10_9_universal2.whl (587.0 kB view details)

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

File details

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

File metadata

  • Download URL: aiohttp-3.10.0.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.0.tar.gz
Algorithm Hash digest
SHA256 e8dd7da2609303e3574c95b0ec9f1fd49647ef29b94701a2862cceae76382e1d
MD5 c2d17f4042a99068c6506d825f823ccb
BLAKE2b-256 bc97328a9e18e2bc229e5bf1391c9d5f6712104b2b5759c56f51fe03a1b702f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 374.0 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2dc75da06c35a7b47a88ceadbf993a53d77d66423c2a78de8c6f9fb41ec35687
MD5 4f5b6e381c9a2819410010f8864342c3
BLAKE2b-256 8cf08dc6d5662d8f0535c2d9388448155ea8e02b89574b501cb0e32addda9241

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.2 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 33e915971eee6d2056d15470a1214e4e0f72b6aad10225548a7ab4c4f54e2db7
MD5 f72c7c86ce9c41f55c83a9fc37699123
BLAKE2b-256 bb475201240b769028647cc482f1ea20554a919b2f35b74e773953a5e92a912b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73c01201219eb039a828bb58dcc13112eec2fed6eea718356316cd552df26e04
MD5 0ad250cececb12668051ee406b027629
BLAKE2b-256 3746cd78d7c3141818b650eb162c01284532ca91a0e9f4732c9221fe1483c245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f3a1ea61d96146e9b9e5597069466e2e4d9e01e09381c5dd51659f890d5e29e7
MD5 6b612f33b5bdbffd74ecc5b91cf3c8fb
BLAKE2b-256 901cd8aeb894ae7f7962efb5da7d6ed37b3b33adc29ea270ae5ebf35e7beaf69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4f1de31a585344a106db43a9c3af2e15bb82e053618ff759f1fdd31d82da38eb
MD5 eb1ad1f59b4805524c9db1717078fd9c
BLAKE2b-256 8b16fef1d445395141f5d887c6074c42fec68a772624535f5afb1c014b719708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34eaf5cfcc979846d73571b1a4be22cad5e029d55cdbe77cdc7545caa4dcb925
MD5 1ece136d5f558f5623dacc733692ebb6
BLAKE2b-256 4aefb12b6220d212b338d2780bc976845b2852321b5f683bd6691ee10ea855aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77bbf0a2f6fefac6c0db1792c234f577d80299a33ce7125467439097cf869198
MD5 cf82ff75c1ef2121a4bc479dd51cda2c
BLAKE2b-256 0f7f6ed1ddbb04b2a8ee1af4ea5900595441a966ebe9f39620b4f7afc373118f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5549c71c35b5f057a4eebcc538c41299826f7813f28880722b60e41c861a57ec
MD5 9268f826273fd767dca7234ce6f0abeb
BLAKE2b-256 e9250b4b251273ccfc42788f3355125ba7073251dad0885f2825ec601336f9ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03799a95402a7ed62671c4465e1eae51d749d5439dbc49edb6eee52ea165c50b
MD5 57177c5d0e3b004cf2f475a9d3ddd775
BLAKE2b-256 96fecfc587041fb19304559ce8d038f542fc7b60c11bb5566389bf8a2568c5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe2f6d0466f5c59c7258e0745c20d74806a1385fbb7963e5bbe2309a11cc69b
MD5 80b449ea87c60cce4a5d415b3458b47e
BLAKE2b-256 fff768f4699d8db8a49ea57e894c4e2de83c4b47ce4d877ee03a954aeab189a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ca48e9f092a417c6669ee8d3a19d40b3c66dde1a2ae0d57e66c34812819b671
MD5 e793586047d42093ef55ef4ab5f36040
BLAKE2b-256 ae4c3aad0f53a54cbff1980f3abaea5c9a0b6dea8b3ef9ecaad5b29ec3509b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6fa7a42b78d8698491dc4ad388169de54cca551aa9900f750547372de396277
MD5 11b4dee84015ba42eb14ab5a9c871e7d
BLAKE2b-256 98d89ea00946b9df51eef70eb64aca076eda5c556ed724ccae1cb64d8178b014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f381424dbce313bb5a666a215e7a9dcebbc533e9a2c467a1f0c95279d24d1fa7
MD5 19809f7c4adf6d2b177678ea76041a37
BLAKE2b-256 2d0d04100b62c3ef4459a9cf199b16d2247d400d4bd57ffd1a81acc59f02ac93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 872c0dcaccebd5733d535868fe2356aa6939f5827dcea7a8b9355bb2eff6f56e
MD5 bd76cda506cdd2579efe7ea70c65d9e4
BLAKE2b-256 613f29ec54de049b9128ca0db6bb145b515e78f6cff6af75df95092d8124c788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 21dab4a704c68dc7bc2a1219a4027158e8968e2079f1444eda2ba88bc9f2895f
MD5 94ebc699f1bb979396095dd1af485b41
BLAKE2b-256 ae1caea628fb7f019e06e494ba8f2d6cdc3de754be31144ca38a63a8e6f82624

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 375.5 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 25a9924343bf91b0c5082cae32cfc5a1f8787ac0433966319ec07b0ed4570722
MD5 fd9f6335c3993a46bd157e47f73960f1
BLAKE2b-256 11980916f6e0131d18ade3ca549d1c966dc8ff43cb89474f0ddb932ec6d46b12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 355.6 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bec91402df78b897a47b66b9c071f48051cea68d853d8bc1d4404896c6de41ae
MD5 3aac0c8ae3184fb779589e9d36db2085
BLAKE2b-256 8e0f506452b1d17436ffafaf8346c6028cb12e9f60b3d1793d9159899c61cc49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9784246431eaf9d651b3cc06f9c64f9a9f57299f4971c5ea778fa0b81074ef13
MD5 febd36bd210dcd12ae8df5ac330a177c
BLAKE2b-256 929acdd3bafec87c8ef0b06c78e44788be24d5dff52197282bca6289cd570b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3f49edf7c5cd2987634116e1b6a0ee2438fca17f7c4ee480ff41decb76cf6158
MD5 930f01a6703ab6452bb1804688a2206c
BLAKE2b-256 d358b8e1a4f6370c814644455a8e4825a5e25939b6a8dab8260fd4589ad06db1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 43c60d9b332a01ee985f080f639f3e56abcfb95ec1320013c94083c3b6a2e143
MD5 a6b3d933eb3ec0bd9fd2cb9efc5e37e3
BLAKE2b-256 b27d25b7387e2b75539e74671e069b4b643829886063f9eb23647798277c4ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34adb8412e736a5d0df6d1fccdf71599dfb07a63add241a94a189b6364e997f1
MD5 ad0ad8c7d56ac1a1be40fb56e0b85899
BLAKE2b-256 e7527479e567e6832498db35c86966651314e866e33cb8174fa893691b4a56c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 927b4aca6340301e7d8bb05278d0b6585b8633ea852b7022d604a5df920486bf
MD5 b88ac015f64f7aadcce1685a2d9f3f21
BLAKE2b-256 3c26cc0371865f514475b2636196e95ca155baebca714b946c81004f6497a170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a65472256c5232681968deeea3cd5453aa091c44e8db09f22f1a1491d422c2d9
MD5 a6dc7070a72178c2464840d23f14cae7
BLAKE2b-256 3ad5bbd0cb49b04b1cfb1b3f4fa6b6495f24acb8093b54f4d1b9322605b46156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dbfac556219d884d50edc6e1952a93545c2786193f00f5521ec0d9d464040ab
MD5 54e69603fc948c1eef68f5843abc3154
BLAKE2b-256 2b1b0faab66718a66d558d2fa0cdb26e47bf8da0dddeb45ab2d329ac71a8017a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a04f2c8d41821a2507b49b2694c40495a295b013afb0cc7355b337980b47c546
MD5 f1693c4a55e2474e95a24f1a2e9815ff
BLAKE2b-256 0cee6d88eef8cf2c5a22b5dcbbf14a59c43295f8ffe98ee8d979db537cca6efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 effafe5144aa32f0388e8f99b1b2692cf094ea2f6b7ceca384b54338b77b1f50
MD5 7361d7c948ea86a402507816764a4d6a
BLAKE2b-256 b32efacf265d8e6f55fa67b429b7df10c658d478c49d7a7f4284339c6a9a77f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 941366a554e566efdd3f042e17a9e461a36202469e5fd2aee66fe3efe6412aef
MD5 d3657e780ccdc43c97bd1558f294daee
BLAKE2b-256 44ea2cf59858db366c657fb16a390f97fd2f575c7fa51ec96fa890355982624e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7e3545b06aae925f90f06402e05cfb9c62c6409ce57041932163b09c48daad6
MD5 13f9cbe80a678e172ac926c258a159f8
BLAKE2b-256 42509c816d3b32398a913980f671c97b15759d0a242ea4ef73dfb4779f54155d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8c66a1aadafbc0bd7d648cb7fcb3860ec9beb1b436ce3357036a4d9284fcef9a
MD5 a7a266a19e31744ed99e6befcda98ad3
BLAKE2b-256 ecdf494c515aebc9899cf42492a2aff2cda33c5220fa68150d0acf5f64db5845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 13679e11937d3f37600860de1f848e2e062e2b396d3aa79b38c89f9c8ab7e791
MD5 88352ae22591f9a53c8be35e0e869f19
BLAKE2b-256 b73c3d0052afaeb1cbd3d1a65d4535f727ecfb3fb65d552f7ca002dbce4290a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 375.4 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 563705a94ea3af43467167f3a21c665f3b847b2a0ae5544fa9e18df686a660da
MD5 9fa7d394b560699012f99bcc37e37992
BLAKE2b-256 2e6ea43d0686303eb27a8ecb262a9d86f6a36e2e784a4100cf9d68f28df56104

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 356.4 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab1d870403817c9a0486ca56ccbc0ebaf85d992277d48777faa5a95e40e5bcca
MD5 56ea976098b188b31c6847496c7b20f9
BLAKE2b-256 7e1a2f13ae01ca0ae265de3b0fcd0bce989676f1f4caa2248d6ceece3f881c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8820dad615cd2f296ed3fdea8402b12663ac9e5ea2aafc90ef5141eb10b50b8
MD5 6d0dbc7cd88c83bda4fc2f15f26034ae
BLAKE2b-256 fdb345c1b6ad89e1ace7275dc7fdcae71d8ec8e0c57fd04a77fea53e66b15829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 594b4b4f1dfe8378b4a0342576dc87a930c960641159f5ae83843834016dbd59
MD5 07f306be4a53bdba63851f2aee85b9a8
BLAKE2b-256 3ff914111b47ef835985df5df49f2bc2dbca0856e19ce4bc99774d1bde58dd7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff25d988fd6ce433b5c393094a5ca50df568bdccf90a8b340900e24e0d5fb45c
MD5 11419b1298274e72a9e1e07b0cd246d8
BLAKE2b-256 7ed26624a6a926ebf92332a20293eb794a01556ac2079a36a8cdb99d20bdee92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5268b35fee7eb754fb5b3d0f16a84a2e9ed21306f5377f3818596214ad2d7714
MD5 f9ff1cb583961b400630e85cebc7e336
BLAKE2b-256 081e581e8f9c755c2ee44b84b8fd7bfde189bd5ca974cd08e858f5bc9994564b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 947da3aee057010bc750b7b4bb65cbd01b0bdb7c4e1cf278489a1d4a1e9596b3
MD5 40331678467cfdd35ed9608b3f3516e1
BLAKE2b-256 aa7c86cded1b145ef812a467e2c93eff99ede8966640b3d24d4d9add446af991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06ef0135d7ab7fb0284342fbbf8e8ddf73b7fee8ecc55f5c3a3d0a6b765e6d8b
MD5 106cf9e0e71f08c59658e734786e6244
BLAKE2b-256 74801f13fe6b61cdc908857bc995c8aa067982c577ce74bdd2edb6e4171b4739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d6dcd1d21da5ae1416f69aa03e883a51e84b6c803b8618cbab341ac89a85b9e
MD5 40585ec40ae44e317bfc9832dc9eec01
BLAKE2b-256 512921711c6a3152f161b84a18ffbe211bc48e595794cdfaaa3c5b3f8f32d95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdda86ab376f9b3095a1079a16fbe44acb9ddde349634f1c9909d13631ff3bcf
MD5 fe71bf655f40696c6cb743bbe8c67c6c
BLAKE2b-256 5c938ebd42d8dda661fee3241573894b7f64bdddd217bb72eabb0736e9341073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71c76685773444d90ae83874433505ed800e1706c391fdf9e57cc7857611e2f4
MD5 81c1cc3fb2849c18259d730144df7f91
BLAKE2b-256 999d8c03359df23d7a0f2c4f08eba89a3e758cb428ae6df28dfd718a634bd1f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccab9381f38c669bb9254d848f3b41a3284193b3e274a34687822f98412097e9
MD5 fc0981c8589b9c0de1cab06b05c604b1
BLAKE2b-256 7d6afc703b6d7899d1c4a25a22debd035e42efc1191aef0c90b734483bf199fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54076a25f32305e585a3abae1f0ad10646bec539e0e5ebcc62b54ee4982ec29f
MD5 52e5358bc74d79073bcbe6bc97bea290
BLAKE2b-256 0a889bbac4c4ef491689c0afedabc354c96c5603aea3c0c5b14c2f5e4c22ebbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 64a117c16273ca9f18670f33fc7fd9604b9f46ddb453ce948262889a6be72868
MD5 163fb3e370739d304d14cdb5f3f9bad9
BLAKE2b-256 a199cd568f348b7d198b106ae8775d43c01e976035366b7d2451aceead2be650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68ab608118e212f56feef44d4785aa90b713042da301f26338f36497b481cd79
MD5 fe12802924367eb9a4721d7200447443
BLAKE2b-256 8eb1dc3dff6978896350efe5e2eb56b1bbf1359409bf630cf26fcc10fe18a217

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 376.1 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0433795c4a8bafc03deb3e662192250ba5db347c41231b0273380d2f53c9ea0b
MD5 5402fb76754ccbfd3818464577dda921
BLAKE2b-256 6b6dfa9c0f0d553b6bbefd0b23a6d7620e852f2dcd9698a5f848093fe143432e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 357.1 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1ebd8ed91428ffbe8b33a5bd6f50174e11882d5b8e2fe28670406ab5ee045ede
MD5 12bd268aae68998d0553a0951185a5ad
BLAKE2b-256 a67d4b09235e2c8576ca8d2baeff65a6d022d15d81627f7849f7ced10070351f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91e0b76502205484a4d1d6f25f461fa60fe81a7987b90e57f7b941b0753c3ec8
MD5 72f2b1d3eda8486fb6435ea811b11ccf
BLAKE2b-256 194189973514cbc743446a8a2c643a08cced0bdd8fa872b7ed7d15a56abd085b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 33acb0d9bf12cdc80ceec6f5fda83ea7990ce0321c54234d629529ca2c54e33d
MD5 0abad1134ee1199872fd8686f2b6d76b
BLAKE2b-256 2eb2aa20495275e3ba5a1b36ae1ff7d242cc31455394947af2c0540fbc42a700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 12c43dace645023583f3dd2337dfc3aa92c99fb943b64dcf2bc15c7aa0fb4a95
MD5 f58c3a5eef75f124871d247bb3d05d1b
BLAKE2b-256 d0cf965dfa81ed5da956106066e121d5cee228f2894f10c2b8e279711be8bde7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d85a173b4dbbaaad1900e197181ea0fafa617ca6656663f629a8a372fdc7d06
MD5 0af05c5382c6d8db7a197d5cd13639be
BLAKE2b-256 16c67ff3e5431136d8513a8e00a4b243fd86fd39e6c6bf887ee59f005b453674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b0c0148d2a69b82ffe650c2ce235b431d49a90bde7dd2629bcb40314957acf6
MD5 8c2ce89eec755e599bf27f901c836143
BLAKE2b-256 001157b84123793c6f8bb7a385d37dbd6b396c9e9acafe425e0d78da063142c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcb6e65f6ea7caa0188e36bebe9e72b259d3d525634758c91209afb5a6cbcba7
MD5 c0a3ecea8ec22816a1ddc6d956970a82
BLAKE2b-256 4ce6061ab7e0084b7443f9bd7092853b5d0f97029157a58fcc8749cdad8aef0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a03a4407bdb9ae815f0d5a19df482b17df530cf7bf9c78771aa1c713c37ff1f
MD5 5f4b41a51104a0211918a4baa4707a84
BLAKE2b-256 e02d8663d4e6abcc5abad80219bf7614394c9e20f4b6fb827fbdac852ad1001d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d583755ddb9c97a2da1322f17fc7d26792f4e035f472d675e2761c766f94c2ff
MD5 ca8be832542717cabfee3253d8c5590d
BLAKE2b-256 8363582decc3fff98d0e95f236d9a7e00db23a2ce0bb0a705f5185baf510a8f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b099fbb823efed3c1d736f343ac60d66531b13680ee9b2669e368280f41c2b8
MD5 7c9c3331b5b5f4debec9d3a775d2c62b
BLAKE2b-256 f63f4c329ad3c03b135e1ce3c94c265459f1e320c47f1b1783ae140f3bed782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b6612c6ed3147a4a2d6463454b94b877566b38215665be4c729cd8b7bdce15b4
MD5 fe2aee0f34e0e59580d942d856c46a95
BLAKE2b-256 09b4f1d496884391470f9ec5e084cd5c7417feb2c16c170a50485d92e1daf94a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cedc48d36652dd3ac40e5c7c139d528202393e341a5e3475acedb5e8d5c4c75
MD5 f61ea183b2bb0a853cba2c389e4dee73
BLAKE2b-256 1ff850f79a945d23aa0b57d4abe5212d608e5d8a448d20cfc9e67dc11c855fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c83977f7b6f4f4a96fab500f5a76d355f19f42675224a3002d375b3fb309174
MD5 702edf96f9514e23f16a00df195a6943
BLAKE2b-256 7912221883a0c350cdf67d4f7c72dec27cdb3f2a6b0ef3aa7fad7cf3a09cf704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1dc95c5e2a5e60095f1bb51822e3b504e6a7430c9b44bff2120c29bb876c5202
MD5 495c8a7caafd1c6275ddc313b8b487d7
BLAKE2b-256 454298f63da0a7ba5793af57be2837c76fdf0e9a2ede220f3beb0f2c8457c4ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 377.7 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 aad87626f31a85fd4af02ba7fd6cc424b39d4bff5c8677e612882649da572e47
MD5 9f6716147e3f97dc9d48da5964f2ee0a
BLAKE2b-256 1c6bd30fdc175eaf4951333cf64f0188a1019be803c7c6642a73f912a411e9e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: aiohttp-3.10.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 358.2 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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ebedc51ee6d39f9ea5e26e255fd56a7f4e79a56e77d960f9bae75ef4f95ed57f
MD5 e01e15f2ab37f05834e556f85a4fa65c
BLAKE2b-256 dbe63ea9c297e0fcd561661c440020f3262a944fbcc765ac78bc48c4d6f2c8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc4376ff537f7d2c1e98f97f6d548e99e5d96078b0333c1d3177c11467b972de
MD5 472de53548fe57a6910c2ee0ed21c8f6
BLAKE2b-256 a87db7f4688c3c6477c33e3c502da49d64139bbf0f868667992b5616e1907e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f98f036eab11d2f90cdd01b9d1410de9d7eb520d070debeb2edadf158b758431
MD5 3820e1533fa0486cbce45ad589c97dd0
BLAKE2b-256 0af3706d3e5841a1ebd639c398e86ebe91f596fd242655ea7f89d96ccc639cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f1cef548ee4e84264b78879de0c754bbe223193c6313beb242ce862f82eab184
MD5 a0703e876698df79aa8ea501642c13ab
BLAKE2b-256 51c7d7008b909cb1b3a21433ed7c2ab36d0f3a92c3a290f6234f1fb78570387e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39e7ec718e7a1971a5d98357e3e8c0529477d45c711d32cd91999dc8d8404e1e
MD5 fad29be3970206730b242e46d739b06b
BLAKE2b-256 6685a9c23fc83f147dc46b54f088112c730a7d06847bd23e07d1b0a4b9d1856f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c99eef30a7e98144bcf44d615bc0f445b3a3730495fcc16124cb61117e1f81e
MD5 239708d539e55a22d1f27e3a69f9f63a
BLAKE2b-256 7e90ff90df770174b31317063808b03187cef3c80ee2ea05c95b44a424aafcdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31616121369bc823791056c632f544c6c8f8d1ceecffd8bf3f72ef621eaabf49
MD5 462459cfdc6cbdfca6db0ca747226f09
BLAKE2b-256 3ed55f16fd3131df5f8467ceee21b4c1693fbbddd27334e10aa7591bfe3746c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f64d503c661864866c09806ac360b95457f872d639ca61719115a9f389b2ec90
MD5 c7c6e9a11f24725be555049636794247
BLAKE2b-256 94ae947cec4bc6c2316674f857685464f72bd5a7be850109292ff559fdaf9365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd36d0f0afc2bd84f007cedd2d9a449c3cf04af471853a25eb71f28bc2e1a119
MD5 7e33680c7630a4053c3593de5df3ecf4
BLAKE2b-256 a01d79f3ca4ad91d59601909518df5387b8ded0fb2e8a0a403df30bf29d5ba44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72de8ffba4a27e3c6e83e58a379fc4fe5548f69f9b541fde895afb9be8c31658
MD5 7c899cbfce6b30ed9704458607bfae07
BLAKE2b-256 11650bebfecb381638c0a4a9cf116f1cb03d4281ba73c43db2bf783f5337599f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f76c12abb88b7ee64b3f9ae72f0644af49ff139067b5add142836dab405d60d4
MD5 61e6350ed7376fa327822383301143b9
BLAKE2b-256 c7c66d4952913367aeadd514184cd1918beaa4f88563b342610681c10055e7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10f0d7894ddc6ff8f369e3fdc082ef1f940dc1f5b9003cd40945d24845477220
MD5 2107d297f2020207867ce29515de638d
BLAKE2b-256 3b04587c2c9772fd7c94af0bb6a2aed36fb2e2c02702d639fef2c2296ce8093b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9b8b31c057a0b7bb822a159c490af05cb11b8069097f3236746a78315998afa
MD5 ea987cc01914297a1247574009e91b76
BLAKE2b-256 6db3ad06787c03cd11cd448cc2d68393320ef3b219234f82a3d0c7d93f04a366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f1bc4d68b83966012813598fe39b35b4e6019b69d29385cf7ec1cb08e1ff829b
MD5 0a9fc39282216ac8a592a8aacd8e0089
BLAKE2b-256 fa710d90d5d2bb9dbb5ae7751b780812d7d7efd97e0e7fdf0e7a6a600cc47cb6

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