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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.10.0rc0-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.0rc0-cp310-cp310-win_amd64.whl (375.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.10.0rc0-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.0rc0-cp39-cp39-win_amd64.whl (376.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.10.0rc0-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.0rc0-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.0rc0-cp38-cp38-win_amd64.whl (377.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

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

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiohttp-3.10.0rc0-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.0rc0-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.0rc0.tar.gz.

File metadata

  • Download URL: aiohttp-3.10.0rc0.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.0rc0.tar.gz
Algorithm Hash digest
SHA256 b5867e6a38d4976e92d168eed0e63dfb0ff162e2c118da92c0478face29b615c
MD5 bf76dcf842c1605affc547afc490210d
BLAKE2b-256 49fef4766a71de46034d2827f762e77c9f4a5df2c3b2994de82d8a571244191a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0708597823802078bdcfa3ec6833b892e4da6c22b920a91eae581c8e6f6fb5e6
MD5 12fef7a84596794ae3bc1b7de024e4ab
BLAKE2b-256 108046a577efdbcdfe53c14cf14053450ae73f711172da301503f45944665b69

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.0rc0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 353.3 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.0rc0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2ae38ea8ab86ffbbc2dd1186fc665cd741171ad787ab85f285653b694bfd98d4
MD5 5873cf2c35b001516fc56eeeda8bc3e8
BLAKE2b-256 d45b2f76929dfb41cd45d9e6189f9c01249ef1e48acec5621d3b9def29c92159

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94847002c799c0e56d8b88adcc1f9101476c200ee3129c173e97375d9045d7b6
MD5 8a4c4c56890750bc7360b61424782481
BLAKE2b-256 f296958108b8d9ed0a24a483d5455e628dc0b23116d8be46e017b6bb77adcd1b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 28a497e3ef9cc5cc6a358807495dba274f415d94f696f5a6ebd7dc82bf1ed01e
MD5 8bdc6589d150852e1d8f8d962794b994
BLAKE2b-256 8053d111391ec542313e0e90ae9f5e2d3281fba45cd3afd0da8c7237dc4d5063

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b4b9501534e723238d8bfdf3a02240019714543dac79913723dc98ef180b9bee
MD5 a2a9194afbd3c91afaec9dfb8c4cbd26
BLAKE2b-256 c7ec4faa57a1c5b72509aa98aa1681981475833ed9778194a1f9dd830db84bbc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b64695715206e68d252e487f2f8c8813a3ac5b44a0ce3ec263f81efce5a7a1c0
MD5 bce38cf2d3fcf66ebdba564a7f2dc7a9
BLAKE2b-256 04bb7a6a6a28876187642123453403d90ecff24dc231028525d8f30908528e6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b0c8353a63b7025b84723eaff8fc6c57b1f25433211f5b754c0ddd295b1afe3
MD5 daddbff18c924700f9ce223e735a446d
BLAKE2b-256 c7075d62899e0e6a012fb5f6d7332c3c3924703aabf94713d2003c64e33b87a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ea1f72e1257d9396b026dfe4b51e300053b02ae6e73f429f3b123ac50fbe3f7
MD5 30c638ca9ddb94b33018919d84c81f78
BLAKE2b-256 7b7f23ab3ebb99c96a012ee7f663b78953d234b29a874a68759475afb8809889

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91df5a9bda7cf280320779d44bad9b83a41bb6a7e01125279428a8a64b2d6251
MD5 9c3614680b2b4cced86847e88dc961f6
BLAKE2b-256 101e194553ee3cc1a7e9d2898f43b9711d6584cb55d29bcdf046c42e95f9ff35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c6fbffa72f1635be69a527aa6208152b7138087d11cac4bd1ca8286a0a47fe1
MD5 aca388befb3d54100db5b9aee31bf388
BLAKE2b-256 5d89c041ef5d0eff25ea25ee805f5d54b3840ecdad5dff6b2fc6b0eda14d4a55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eccc100e95614d0566cdce16f0dae113c62eb7f530f53234e789781eb9ec2f98
MD5 3980a862d6a28edacc5e2dae7c456eda
BLAKE2b-256 d665afe9c312e819cf2a1764f0b0cca944b7485ccea81d6d04ebd82729f1c384

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97cc06022fae711b753f9fc7b13d948a6732c2b463ec497ef5fc4663c5948f09
MD5 02c8a281f1a4f36d9188129795888b7b
BLAKE2b-256 62585869f95d87c2601bc0ee329420219bc382133e9554484c4a16571745dc6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8faf689e9821f2f3955c59b9da380d0e5b538f6cffaf7e24824aa8cbe5355e52
MD5 a6a660668b5d4f172beaa03d47ca15ed
BLAKE2b-256 a591aedbbce8bd62bebb926943af58329d64e70889b432a94d467ee7a0b88558

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 127afa147bb49b7c6f914384db90b4fb014d8e2f04b36b35138cad6d8bc4b71d
MD5 ca72bf1d4967d31eddde3aeaa85d3963
BLAKE2b-256 7ea153b9a1aa84ab032d8272eff67ce5dcd8a31ea0b33a3e9a82a44de5d24022

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1c956fca18f17cbee3d2a0cac5ee135461394c25a5d991fbd925dd85e289586e
MD5 34fd5a00d8a8d2d138a0903004b4495b
BLAKE2b-256 ffea3eb9338ea156b9f83894181ca4758e10151ac0d79c64ceb094e81316d556

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6be0ad57b38bca8316eed3d6e7b76a4c2c190954dc3d69aadef5cb5ada144bf4
MD5 6d9379d4b6f39c6a185531fedc7c5a4a
BLAKE2b-256 9e9e2e8b77ce676d68514a7a381c7a8fe012c4f0e857c544a8a8187b245bd42b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.0rc0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 355.7 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.0rc0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ab0e87eafd7dea0c0148b4e4471264d31593db87b581e9c0f6db5710a54340af
MD5 5ef9aac5e7a11e8befc7a1c8c1e24b2a
BLAKE2b-256 54102e68a59faa1e880072c60525665b537591db8254bc2cf61f7ede8248bc5b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cad4d620d87c47553d9a08071eeb052b99f266851e497399143738b233def60a
MD5 c32625628952c65b21d25b2380ceae08
BLAKE2b-256 677fadd5b20378eb7d1fac19fdd35a1cd473362a082006b16c6d0f671babc2d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d365eefa571262ca818bb01f83a8e6f70bb4e68d59b5352cfed2c17288924faa
MD5 c449d41a7a05b5961895dcb463e9ec2c
BLAKE2b-256 a672af44614a757c3c9b669a65447186a9777fc118b33a09428bbff9a7ea77af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7c493d42fb9b1cbea35b1a9c6b07466710bf5ffa9ea312bf412731555bac33cd
MD5 eea534f4e6cd319ca0edeafcc5ff47df
BLAKE2b-256 e3c13515aa52c77c5f5e35ec718bde5416e86f470a4c7507c02eb282fae24710

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e09175fe8219c361cd9c23b7bf4643108ede8f4ccb1b69df13d6ab934f683693
MD5 9367a3cda8ecb309b0c874996bc3e1dd
BLAKE2b-256 358d164c0948dd4b3ebafb0dd552e1dd4211a564e8b9d533a158bf8074ff2325

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 879f80db795b8d61c71c9bd0381e498f17ebd5c344011b1b5977d3ca12b5df81
MD5 44b0bfd69e7305c32e7f32994fd286f0
BLAKE2b-256 2c62f5b71bff11bb18770b72b2e509ae5b36915b0eef20b27e3404d45067693a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68950c5f259a23a84967e7a3bd655da7bdaef31eddc2ee3a70e1e759fc81a4fe
MD5 f0728cfa47db6381ec6d27f524ac02a0
BLAKE2b-256 1a16b0ecf1bec9564990c147edd92cb6f1757614bce7d6187537dc10d14bcd6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da5df04e8e6416ffac157f4f4d5c0e36f38572f5033b80b2e9b06cf0fdf075a1
MD5 ad53abe001dbe0e2ff937f60ebf7cde9
BLAKE2b-256 0b45b68c982deb73eda67bff8f868a2948cc8d5ce50752d6d1e2d6a954446c44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 073be84ed8a7e1a0ef537b040b30f2a26a774dad9353a5f8d6599246c65a39f6
MD5 4b2668fa53c48ebbca88c8c6063ffbe7
BLAKE2b-256 d562852f368b3512a4f793383d0b39aa55662f130aa172e4d13f9aa815ee0409

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 183b8c9d8ba307ff6264fd7ae7756edb39e4eb54bfb5bf4ef3a36318293cdb41
MD5 0962fbc84f5df53908d529d6b0eaa703
BLAKE2b-256 e71ecd4556481ebd540fe7dfa6c41c45bf9695851dd4d05396c6030b81377654

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1d4eeef9eb6bf3d60de946b32ba0b256b258ab4a4f7af1032e302b3f186a56d2
MD5 e566d75ed866483eb819282379aa13e4
BLAKE2b-256 d9ef6da5458de87f09ce769124c8eb788198e4cdc16be60256d65f1f35a4b299

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96fc4b0019b48c3e523ab5beb02fb09b5a59e5b8460b60d897b5a339d7fba5e0
MD5 ca478f405f4a2aa198333bdd7595729f
BLAKE2b-256 fa57486ec58f3c275a1daea2a393ab6011ee5d50fdd6502fff38584e6ead4071

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 68262afbeedb8f2a326fec15c6ad73b568fe042a83ce47ea54831d3434b45d01
MD5 528d950358475655379932a066b3c742
BLAKE2b-256 c912d9520de11376fe6deaffc0e0ef0fe2cc0f1b1838146a5c42602ca450c1b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fa52ba0dcdd039edd3c06bc841cd8367960d89c79db68230afb249ceef567224
MD5 ec43c70cf145f5364df8c9318d6efa81
BLAKE2b-256 f7c4069d446a243ededeac42df8e60afc5ee72e3a879d4e05b9d395a326ba7a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83da739d16a4ccd2496b73e62de39f93e3e70d3df8a5ab60cc22f0f9182d311e
MD5 499822198655efe5407bb11a39cda7ab
BLAKE2b-256 6becca82116add8e4c4401dfc115504c04ca514afc12775cad84733ea4f282d7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.0rc0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 356.5 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.0rc0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b2511af80800a2f2ca0f786934eef14e1b7c31be89f68d02abd5db471fe6baaa
MD5 86a9364f556461a2142b9b2415ee0a01
BLAKE2b-256 e7c462ae33f9257eee65d07149396a8ad5543cc694a975f4831510f4e45937db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4801eed1f737715dacea78876dc95b12fe39ef212de71a970c02f8e51c8e81d
MD5 df538e57bfb3321bf0d08924d4387a4c
BLAKE2b-256 8b5ae1b26cd32f5ca984be1af4b8b8f4ebef3dcb07de75a9c7ecb24f9cc08f97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d86a6843ea263f60cadb5440466fe9b2920daab5e73627465506eb8c00434aeb
MD5 5b61bf548ef3cc967d40ab81331098aa
BLAKE2b-256 3ea97ae0425fd0f7b278de37fc767eaa39797bd74c057198874e333062d4b7a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c5fb802210224448ac368ce9e9a1e3855f50b0d0603f54e435312cfe5e289bcd
MD5 b5761ee10465ae8e2b97c85558fd402f
BLAKE2b-256 2ee0fa72f6098d0b37968b1adf16b2adf86b54fee5abb5196897621165aadef0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51d5da1f28cf08782d040cc0ffe7e8d207ba246bae537d9432cd0256b2db5557
MD5 75928b1c05e8b8334d2423f57f34c64a
BLAKE2b-256 ef0d76826dece14cb59f1ab8cca53335646ac83d22ea8c9a84acbc5b3737f3fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0af7931d40f8c9fff9d74c3fbf0f9e9d304df8169ad750e06a4caec36c1f2e82
MD5 1dbf96b8ea6439f8d61bb60ba7eb9c0d
BLAKE2b-256 59593958889763eb0ea791dee003aeab7cdb04841088b1ebc1f1a951895cb008

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c561252834e24d09d7b9c7056f4fa4b814b841046784b21d81d227608c89e7b
MD5 84e259948b652000f451cae07fa6ba73
BLAKE2b-256 888e4b27f2f16f993c3ba6106c1487b0ede3f832648dbe688b9d0bd2a7d241f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7297e8f3afd5e5de9a76959a6ec264e4002fdcdfcd118e929d8230db61acd4a2
MD5 331830d41c2c896d8c9a3a5af9fc6481
BLAKE2b-256 d35fcc9637a3f1bcf7d6ac48b48c78eedcfa4837e64e56a074d69693148c9c60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f95204a213ccff729be2f84fc1c1c6261ae46f9c84064be320ff6ea99aaccebd
MD5 40b78ecf3cc1722817085259ecf5200c
BLAKE2b-256 2918f6d989cdaeadd48cbf059aa31a97ccff9b372dafaa1ebd20f60c8cea1d24

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63cfed5db49d85910c39c349ca9339137b4369c1176f491057fec49898841e2a
MD5 a92c2071cf1cf060a33c8543aeee789d
BLAKE2b-256 5fc21cc91988647f95c27323fc5fea9ef2f1f3e5fcf6a3e2fefe961c0fa90299

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6642a48f083c6e47f0849d4ab63c7e332cd7359d6b452955fc8d1a486c20130b
MD5 5caeb3e469d5e76b36d24b50130e6a63
BLAKE2b-256 401fe674dd18e6774bb5424fa8c9d710e09cf540265d6cee466aafcee62e9f9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e32f7271becdf813cc1cac9563e7468a67fd7a1b4bd22b77004931e05a76fff
MD5 ce7b824f1b1166238035b11b978eeaf6
BLAKE2b-256 76604e04435b3e0bd8cd6075dec0033967ad3e984065ac232a6e903919a50321

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d3ca9fa09f5de4f09ab73575876e85b040802fc81c25447d295bbd84c607d3e1
MD5 6edc9ec86806e862c01055271e11a0c1
BLAKE2b-256 747e25ea1e4ae45f474084d4f7957c5f1a66bd32d57314c6673c6cc9d20565db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 79be25d67e68b6e7c8dda96b306b87596371d8ca9a5c292a34815197daae6164
MD5 8d287532a3ed283b86505ef403836c3f
BLAKE2b-256 14847abd490f771242a64f91b3bb14a89ad38926ba28a1e93ce684041d3c2020

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e4f46cc86a9cf640bf345e2913423802c5634625c8d56694e922c26515e7ae2
MD5 729e1bcdee4465469311e7058d24f44e
BLAKE2b-256 f17e76d10fd53b6a124063b87cd89116729c88fabd4f17576bb47f98847616cd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.0rc0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 357.2 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.0rc0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 00048941c2fd78ec8a154b2b432446529c0624a777a43520ec9ff715a3da5e7e
MD5 ebe69de3739ee4db203a000d407db793
BLAKE2b-256 f390231390467f958dcc6c4f1cd743d9e1bde346193d1d064c943b56ab0475c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d93a7366674673008203b275ccd391a9226e0f89e417bac280d8df89e727aa5
MD5 27a3fcb463f3805868dedd7d34a8d1ba
BLAKE2b-256 e184bf0294181169c6163a0fb1ac5656080c1c6e5c9556e55f7460b98d58340f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0c0ec656e2c8d065d6fe4d21e83e8d10ee94cb8664fe57d6104c70160a6d9b6
MD5 235e81c1480c38af23c31bfe67cc021c
BLAKE2b-256 17bda2039eb29c81cf985fddd88ec5cb221be746e8215a6c7e87547aabd1f461

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ec19a917a9c9132893aafbc218ec477786a93ead84c788e2b8844c8c3c416ecb
MD5 f0af4c0b8e03baa28dafc5993a67c0ab
BLAKE2b-256 a331d9e2f552d26b2ed716d901d6802de51c459f0f2a7682db1b9f3317b8c3bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0586bbfde6b21ca8c89a79feb30091de228cc834bfafde71d7594bc5fa47ee2
MD5 f5182fb28d70e842bccb3e630f73292c
BLAKE2b-256 58b18ec17e44c95af1cd998a7806724877fcf237eb7292d467b44fd50cbf5f34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98e590c9c0230e0f736f832caf3874a1598a19f7dd550fad900a70fa548cbaba
MD5 154227d8fa8cb2c75f9f582c037cf7a9
BLAKE2b-256 a558a5a0b720aa2a8375fe572e0df7ba3a4c7ebd9d6f608cd3491042304a0ba2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb8d7f43d040aca8c15ec0cfdef52139b8d83c67ba01025e940d78cb161ba19a
MD5 fc260ad08416c6016818b8a450fbc145
BLAKE2b-256 8b2f20c20134023b78cc864392fab66870332585c245fab3a4de7b8ced5375fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9acafbc97990818f8441cd2e9ad2bd0632c425cb046727d7be8b405b861af7d
MD5 baa9384ca2c7fa91205cfb136244906e
BLAKE2b-256 cc4504ec2dd9e83414f77c33e8066a04f381639576bb03c96878037a8e03891b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0123f78f08742bd8ced3b63e9392338877a9b991ee2e74f8419e77458c782daa
MD5 75073c29a11e168b13877a9a4bfae0a3
BLAKE2b-256 70dda68421584a43e6dcc4656006c250d4ecab1fbbdb26dbcc788a1deca67439

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4212ac5cbeaaaed5221a2038823dd911e36c17f646c6d2e8058d315d87eeb454
MD5 7902b95baff19831ddbf53847cfc2236
BLAKE2b-256 b9abe9c92bd7a7456d2877b6d18aca0975a220851a8b2beeef3e53415c62896f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 908230c262cd033082722df5a2df543f218d60ab6ab6cae8bdb2307a595c916a
MD5 34ce10d0ef5e7e3d1774356e2008c18e
BLAKE2b-256 9d0371c55763f7eae31e1ade49055db6a2491960990e7acaa7a25f709763629c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae75c22e189bb21ad856b25f6aa7b8b6847000df1e45856d7f8ed6a5527eb94d
MD5 6acea184ba4e5f4fb098370d0a9e1004
BLAKE2b-256 e54008a3f6fb59342a564f4e8a55c9d1f6ab423000111c3289b30e4959c4ebbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0ce3b811462febfaa1904dd7e060e9e7183bc634e4ee46ce42544fdeb885c189
MD5 2090382619063ef61afbdc688a290b50
BLAKE2b-256 099be88c742d79381975c691e7ae2b88df84403b4c1d8b1822de814dbd35bd15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b5fbe59cd6e7259082726e04b0f0539bd94b88cef05d88ab017ffd86206ae57e
MD5 2a55b41109403bc26d2437fd847982f1
BLAKE2b-256 1171890388a3bb49bc267349418dfca3e8458f890f1b7f75e31b4ac153182d59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3cf8b56c68f028aaa16c5d7837ade06d1eb069a03d800ba6f76196fe9b0f5063
MD5 dd0ace49fac5ba648abc1d4342a47e47
BLAKE2b-256 af22161f422a09c91db6b87c5bd0438b10ebfc7f957ec7759b9aab3c7aa31057

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: aiohttp-3.10.0rc0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 358.3 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.0rc0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5cf2b2e8aa6236cc8834a74a419a5d256817b71b3ad5b8d3f1c75ceae88b0113
MD5 8764bfcc8c411f195d2ac473dbd2edf0
BLAKE2b-256 e7abf7847e0c33e181aac82686e69a1947804ab1a219c9a07802a9251956d9e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56ac47c44aa088674fa303103ef5e5feb8f1d0f6c16eaa0e5f1ebb0023f1e280
MD5 2486b52edac8f1191790391cc812be28
BLAKE2b-256 0caac35d6a1188fb942562b74a0b105368a3c99493ec9b82d7524f1c410b9e62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fca706c3cb95fe8a98af87c184f842e51159c1ae8f60aa0d0475aa5b84e73c6e
MD5 fbc680494314fe1503c5428453b2f5e9
BLAKE2b-256 15544a08264eec8c4a136159ba884ae326fe4e48999ca28b2ef5cb55957f3725

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 020e11708490c8ac76e9f0864558b414d59eb16af61de031857640629f052855
MD5 0251770caf2d86698e5d77ecaae5c87d
BLAKE2b-256 ec838de53fb2474eac09721e1102c474f6ffca79d4418c7ce0746fa8133e40b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e220822fb1883a4e9b0cd6eeb8c32a05206646b26c4bc42dcb4b5005fde5cbbc
MD5 83095cf80e5b548ed7b6f9d0d50b4a93
BLAKE2b-256 1d5bdf3beff56f949f975509145ccb2053870f8c0edc0c3ce3e00eeeaef96f77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 192cada7aed90f039b3814a3017906ce3eede2d8663af70e874ed69f81a6ab33
MD5 54fb47f8ae0c32599e59f882ca312ceb
BLAKE2b-256 66cddace98617410564ef2f513dea6e077af5ee79d281877cac2c82bfa8529ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce9c8ad11b52c66870e5033726be7b72e3a571edb9b236dd8529089e0243c2b0
MD5 381816fecb839d949aadf4279b08b365
BLAKE2b-256 97838ac64a6cbfa50d02f0306b6823d4e55ce52c094f31b8f93213673b9b2030

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9961ffe8ea150aa50e1182f548ae90c9ef91ce40ac7c4b86737bd097cf3547c
MD5 e698a145d8458d186cc7a1f9fc3c7b1b
BLAKE2b-256 e9b0064ff58b0f7d1c262d01437aacc2e77838ea7206eca377d92ab1d069f449

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9930cf5179676c4b01d6c169876b6321764d01f58c64567d09f4d7fbf7d70ab
MD5 74c9b30b2b7cdae1fda6c1c8b869df03
BLAKE2b-256 e55f688b2d7f24466f007ed11dd66157c04af50f1e54087338e5972e4bd3e102

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ba07189a02e519e59844ab4c9c18f064dfef9e30bf8b46a0b7010cc3c6af018
MD5 c5af12ed53e9cec02ef3707629de5060
BLAKE2b-256 17799490d27af5412726448be4f5235835594e10e88169a352ccecb8a47279ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2aff0b370703fa3d4e5353250b089d5fffefe7aa94f439b6d680245132917b22
MD5 ac0b3ed88716e238ab1ac18815bdce51
BLAKE2b-256 5326b3109c40da2b91e22030ea17b2ce152172eabb70ea347eb63d63c6375369

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bb551428b24a295616b9bfab072ff17d91894c693f3db36a1702d15ffb2431a
MD5 dc1aa43075279c5e4a1f5876466e7fe2
BLAKE2b-256 2cc552c788765e2c96ff668252560dc4f0002e39c2819241246276f3429e6fae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e256a01294a0e2e8929304b641926f340d74497d7ef72d086f52dfb69e1cd96d
MD5 09980f86f109f37dc2c11f65a657c1ca
BLAKE2b-256 4b9920ad63e77d67c1c93f165ba7d68388c1bfde41676f189d0a5dec6c17fcec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for aiohttp-3.10.0rc0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ee1ee1859159d5a0281115ccaf6bfd5f370159f99f4e9e51828be1ce91a05df0
MD5 c1faaea277b76309902b576441b86e33
BLAKE2b-256 7fb00d5904207431c7523264c7d6ae4398467e1f6462c7af700834cc29b76c19

See more details on using hashes here.

Provenance

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