PyPI

aiohttp logo

GitHub Actions status for master branch codecov.io status for master branch Latest PyPI package version Downloads count Latest Read The Docs Codspeed.io status for aiohttp

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('https://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

External links

Feel free to make a Pull Request for adding your link to these pages!

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).

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


Matrix Room — #aio-libs:matrix.org Matrix Space — #aio-libs-space:matrix.org LFX Health Score

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distributions

Filter files by name, interpreter, ABI, and platform.

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

Copy a direct link to the current filters

File name

Interpreter

ABI

Platform

File details

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

File metadata

  • Download URL: aiohttp-3.14.3.tar.gz
  • Upload date:
  • Size: 8.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3.tar.gz
Algorithm Hash digest
SHA256 9491196535a88924a60afd5b5f434b5b203b6cc616250878dbdb223a8f7844bc
MD5 1befc420af8c5cc860a80a629d66cb00
BLAKE2b-256 58d922ce5786ac0c1653ae8b6c23bded02c1686d11f0dbb45b31ce128e0df985

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3.tar.gz:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 469.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2e1161602f45a54de2ce0905243a95f58cb42dcd378402f3697f5e0b21e9d2e7
MD5 0c27b4cbf13b5c87e9a93531d46b03fd
BLAKE2b-256 a437cfd1ed540a4d318da025590d96b728e63713c09e9377950fc655dadeb856

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 500.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b20032766aedf6261c7a566585a40867d092ac03a0d81592d5370ef9b054f99b
MD5 3baf489b52db3085d9613bfd9e0aaa30
BLAKE2b-256 995d3cd6ef0a2b2851f7ab913b5b079334781bd50ff56a323e4454063377a080

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 474.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b304db572b4368edd8dda8a2274f73156fe15558fca4a917cb8a09fc47af5963
MD5 f2e99b69094611e3227a6e975a61b181
BLAKE2b-256 5e1908d41839658bdd44a0ed2480f3891705ecb487ce28c0dde62c9040c997e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498c6c623134f8e09a3c4e60bcd607a0b4590dd7dbf08dd40851b27cbb520ccb
MD5 7928c418fa14be090ae0a6c71d5ef1a7
BLAKE2b-256 94c6bd959bd1e4771f9fd944e9e436224c48c77b018b73b519b5aad346335bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f0f177d1b195b9e06376cfd7d308d8a1b920909a609d03ac82a8c73bbb16d3b9
MD5 6a56092a0cd52289fc588eedce192998
BLAKE2b-256 ec4c618b1db9b9ba079b8875d2cdf78e7c4a3bf72903bd5850fee7dd9544600a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 bd52f811e65f6fb634b1047159657c98f52b407f8efec907bcfc09da9a4c0a25
MD5 fa1a5a7b41ff671be257e3a909036626
BLAKE2b-256 19fe26f9c5e6458385aa86497836b0dea6fb2f027827d63f37c7856cce9286ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 74ab5b6a9fb13e873e5a90946588baecaf488745e1db1a4a5c433f971f035098
MD5 ac4583050fa88d3b9edf2c33097ed8b7
BLAKE2b-256 a19d0537cda4885ac8f5b7053d164dd06312f4c483a4edcb8ee5b8aaf2a989bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f8fb78a83c9e5f741ca3a68cfb455c1f5bb83b4e7249a3848b3cd78d0a8563b0
MD5 0c5cf65f587bad2794c7900841267eaa
BLAKE2b-256 64af38c33c4dd82fddcb4e56c4653b6f1072a8edbc6b7fa15809f14932c41e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7d3a97c678d34fc5b59da671ee9cd630096ddc643e7b5a30d54a2a6f3574d3f
MD5 19dc70d0b5c6fcba77a44af0ca21266f
BLAKE2b-256 a91947f4968659c5e23606c3790c80fc624e691c153d036148449ee84d31b287

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 a0dc483c00da8b673abbb367eb6f8d8f4bcec30eb58529ea13cb42e7fd2dfa33
MD5 edb3edccee732f6950a8d6f1c48bd90b
BLAKE2b-256 009518bcbf830a21dc3aae24d8f6b6feaf3db1d2090242d00a7868db2ffb0b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2498f0fe69ead802f9675beca44a7c21c62fdaa4ec5145ea1c3ad6edbee29f85
MD5 dec7756b7a85dbd462926770e1c98c3d
BLAKE2b-256 bb6b62cbd6577758699525f5c712d1ddef57d9875fbab0ae8d5f5a202fd598f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3ae5b3a59436d089b5395d910121a390feed4d00578eb95a0fd1a329fe963100
MD5 42da4916676c73f8e236857365677dad
BLAKE2b-256 86e6438b0c79ca6f45eb9fd9817dd4c01a91919a38c0de5ee9e05e2b4dc0ece7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 270d3dace9ca2f10f0da5d8ebe519b7a310fc6112ed916e32df5866df0888553
MD5 982bfe7c411d02534b637085d98004f0
BLAKE2b-256 b1046acdbf17315f7b55f1937e3387acb89a3cddeb4995689553d064af8e92ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8a5fd34f7f7410d1730d5c2ba873cacb2eed3fede366feb268a70ba22581ed8f
MD5 8585b44c02c2883731599ac4ff6d934a
BLAKE2b-256 f6ec9ca76b28a27525b0cc53e20842e0228b022f301ce1f436b7d814b4aaf2df

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9fc7b5bfec6573f3ae844f457fdde5adeb713f8b8e4a81ad64fc207b49383716
MD5 977e6109d55d39fde43896bf87d62771
BLAKE2b-256 fe45f8919fd936e8b79fcd9bda7b6d8e62613462a713f4f17987fd7c34399142

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30402d03a7c0ff52bce290b57e564e9079fd9d0cb545c8aba73f86a103162d2e
MD5 f3594587feac92332938894f512bc2f8
BLAKE2b-256 9ed88ec0e471248c500acdce2be3f46db8fb62b5eb60efef072529cc85ee1d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ebe8e504f058fe91223351cecd2d9d6946c9d241bb0250d898ffbdf584cc72b0
MD5 952290841eace8f5b753cf1a3b3b07c4
BLAKE2b-256 80ca87c32a0a7704583cfc49660bd817889bae5b830bf53b5dcb4e92145ac2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 8800c996b01c2772a783e3e46f3e1abd5823029adca0df54231960de9bfefa5b
MD5 c7e49a02bf245273531a0a226ae019c1
BLAKE2b-256 6aa49c033beb355d39b6147980597ec9645e4729243f686ee4dc73945de72030

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1576145bdceeb92382d899751e12743a3a5b8e460a841e3e50543859e54864dc
MD5 c87e442425620755c591a2ec781502ab
BLAKE2b-256 228cc29d067df825a2df88ca432db848aa2fe8199598359cc06c12b09320cac9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 481.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b3b60de05f3dcb6f6a00f818bb2ec781cee4de0645f59ccaf99b1d1823b6100
MD5 b89078424f4ce312b1d29c0b1adffa92
BLAKE2b-256 f58bc7baa1ba1eda4db6989baefe5de6d99834921b84ebd7918624febcb9f290

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 455.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 38901a84da3ce22249f6e860bf8f90d141bcab7da090cc398f8bb58c0e44b7da
MD5 c5f8b3ae962f99f2993950bf6a530143
BLAKE2b-256 811b6893d4bc57e434fc93a6c9217c637d967a0b651d989f6e3265179375754a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c5ec8fb1bcc31a8466f74aaf26c345d5c386fa4bd08a3f0eb9c7a4a3fe8b5bf
MD5 60620f5c311153154a6ca696c050af86
BLAKE2b-256 97eadbaed0d73e8a69aad653b045dab451c67c2454bb731a37b45a86593e9422

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9d9edccfe496b476db5f398d97b865e9a6752bcf8aec4eef8390ce20fb64bb41
MD5 85f3ffbed73875c7e7408ec9c4632fda
BLAKE2b-256 60ad0ed7586cbef7a884e23a752fa2bb987a122e6a5dd50dab109258d0a95193

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3f42e9b78301f11c8f861746175d8b9c1ccef713fcad9eab396e2f6db8ed4a22
MD5 9736664a947fc29201c135539ceafbef
BLAKE2b-256 a892ad720d472556a995049206867765e9410969684f86ee09423ff9969044c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4e3ac92d90e92773b2362d506068e9a948192bd553e743c5b2429e28527c8661
MD5 5f44d55e34baad4ae98d7fd2169ca445
BLAKE2b-256 851daf798d306f7a74b6a632dbcabcf62a4c91391b7582d2a8c6d7712e2cc54e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd817772b2fcf2b8c0905795318485f9ec16eae60b29feb7f4c77085311637f0
MD5 28e6c2d96e999337af54ca4247112d48
BLAKE2b-256 3805d33c680c1bcf1c7e130f9cbfc1fc02fe8bb0c4af2a94a53dd5fb56131e5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53e5179d8abb5710f8e83ba207c41c8d1261fcffd4616500e15ca2b7a33be10a
MD5 c7ea90de740dd670b41864a35cef5130
BLAKE2b-256 2ae813a9d957a1ee40837f46aa30f0f4c657e673ad86a2e6362a9f9be20d26d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 d77640cc618c1d99fc4f8589c0f24a730adfa54eb1e57ef7bf0c8dfb78da898c
MD5 46646c05b7d0397a8c9ec819cc8129a2
BLAKE2b-256 d116bc4b55e3e5cb175fd69c53c90d60d2f47797cb343da5106e23863dc4dba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18cb43369747b2ae007bd2655fb8e63a099c2ff1d207962943636dac989b3147
MD5 f3273343b5e3ed8db8c9c1d4ba6b0dac
BLAKE2b-256 d5b71da684a04175473fa4cddbf9a2f572e79514c3fd27a74597f43057d4f3da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e2667f0bbe7eb6c74eae5e9691441ad186e5845ca3cff63230fc09c4e7514f5d
MD5 2a3d7286cb5fc8eaea593accabf73f0c
BLAKE2b-256 95b585b099c299c3ffd38ad9b3e43694c8a346934e4a30c88c4fd5a841234f77

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c23ec8ee9d5ab2f5421f9c7fffce208435607af27fd46d4a44e031954352838f
MD5 a19e57af2454e9e397dce5fcd65df367
BLAKE2b-256 2aa3ca0cc6724cca8114b05694abd916060758c79894c3aa5b012cdadc1bc28e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 cef89a58e628c4efcac3275c2d68083f82426dcdc89c1492a6f654f9f7ea6ab9
MD5 764b84c0510545358bcfb492906dbf70
BLAKE2b-256 49bd40c3fee327529284375c6701cbb0fa4600cc2e8432af1378f897e2ef7d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 25bd2708db6bdf6a6630dd37bdcdfcb47c4434d22ac69c64665b802910140b30
MD5 94bba45d81ceca95307db904bef487e7
BLAKE2b-256 47d18aba53f15ccb2238405f5e9d30e2a8ca44f93878c26e7165ade00d374b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db332af25642007330fca8be5c4d194caf2bea7a7fc84415aff3497af5dfee6b
MD5 5f228cb4c3aeadd1ea163b73efee9cff
BLAKE2b-256 85ed0357a015892fd68058bf2d39d3fd1958e459b997a7db30aaa6aaa434ae96

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad4c8b7488d745d2ca4838ebd8ae5ba9b56341d30b1da43640e4ce87f9f49646
MD5 16203d09fa2e79dc8581cecc50867233
BLAKE2b-256 97a37056b86dc0d9ec709ea9777eae3b0161428f943372f8b98c01c11593b682

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e72ee89e28d907a18f46959b4eb0bb06701cc7f8cf4366e00029e2ccfaaf5924
MD5 26a94bfd9566e625fa7a69b944d68c75
BLAKE2b-256 a6264ff0164370deec18fb19254ee4ab10b7a73304ac0c860b13f5f84663759b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 dfa68deb2a443bdaa3ea5297b0699c1464f08aef3812b486d1348eee61b07dc0
MD5 697bcbe484b79595154bec3878a016c7
BLAKE2b-256 3f5a8f624384e5f1efabb5229b94157eb966b021e97bdb188c62860c2ae243c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 1caa7b0d05f3e3a36f87788c59e970a7ee1cefcfcbb924a9f138c4a6551c9cb7
MD5 0397792e33c0efc57739bb1a344a4098
BLAKE2b-256 48d6d51b7d4bf309af3693940d8ffd2b9ed0b682434ef85959b7c9c137f60cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 614c61d478b83953e261d02bb2df750f17227cd33ef8002945bf5aebbde21919
MD5 852a3ace20e4f34c15d12800cb604c0c
BLAKE2b-256 29ba2a0c38df3fc557620b6a5acd98364af050053b6285b4dc7ee74100c63c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 e3be98a7c30b8c25d573dafba7171d66dfb05ee6a9070fc46535464ff97700a6
MD5 35681a34b93df39ded462727091048f0
BLAKE2b-256 ada392cec936f78cc4bf0fa5554ebe593b73459d94e3c62303e1902a4cccb6f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-android_24_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 49f7325beb0f85ef4aef5f48f490269575f83e6e2acad00a1d80b807eb027062
MD5 dbcfbfb7b5319142cbab630552572349
BLAKE2b-256 c820887fdcf832326571b370ffc347b3e70abe101096f3720126aac161b1d872

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 447.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ddcac3c6b382e81f1dd0499199d4136b877beb4cb5ef770bbbfba56c4b8f55d2
MD5 84bbf43d96d8d6728dff29f4bb3736a6
BLAKE2b-256 b20e50d6e6471cd31edce8b282bdec59375a3a69124d8a989a0b1313355cae52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 476.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dff9461ec275f22135650d5ba4b4931a11f3958df7dfbb8db630000d4dee0883
MD5 fdef6d923c08031ec6739719531ebb1d
BLAKE2b-256 9d693d876ac02659f271cf7f6769f14a8e3de5b6e888ed8b5a7e998086a4cec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 451.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f08ec777f35ee70720233b8b9811d3bb5d728137f30ac91b7457709c3261ac0
MD5 1765620309787f91e9de8ea69b884ebe
BLAKE2b-256 29a6442e18b5afeade534d877a2dc3c3e392aff8d49787890b0cf84790410267

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4f72af88ac2474bb5bca640030320e3d38a0163a1d7533500e87be458eef71
MD5 393571d91208744b8251b8cdf6a76659
BLAKE2b-256 0351a3d29fdf2c25d796746af8ad6fe56a45d6256c38b0a8a2ed752e1160b3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b014a6ed7cf912e787149fdc529166d3ceabac23f26efeea3158c9aba2354e7e
MD5 84370ca2b23413bf8de7617a47f73962
BLAKE2b-256 fd3178388a9d6040ece2e11df62ea229a822cf5e52d238374b220ae9975b2623

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e92eb8acc45eb6a9f4935071a77edf5b85cc6f8dfad5cd99e97653c26593cdde
MD5 a35871a3cdffdff1688578e2257e1801
BLAKE2b-256 aa1e147bdc6cc5de5f3ab011be8bf5d6e786633249f22c20bae06f85e45f5387

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7a75aa63cbf9b21cfaf60dc2657e19df2c2867d91707d653fee171ffeedd1371
MD5 59d7716123368e98fc8a1534cf14c9c9
BLAKE2b-256 dcc94e9383150296f97f873b680c4de8fb2cd88608fb9f48c79edcb111611abc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42a67efc36300d052fb4508a53e8b6901b9284b599ae63945c377569c5fcc1e1
MD5 2fd668eca96526737e5428c9fea96aa8
BLAKE2b-256 39b619c8c592baeeb94b75f966547d40c02ac7590902306ec5863d5c027cf506

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df82f3787c940c94986b34222d59c9e38843fba85139f36e85255a82ad5355a9
MD5 7e8933469b1f314cf167a320a00384da
BLAKE2b-256 fe6f76eac12a7f2480e1e304f842efdb07db33256b0d9165b866b6ef0806c202

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dd54d0e8717de95939766febac482ac0474d8ac3b048115f9f2b1d23a16e7db4
MD5 6c7a704b7d0a1e7accc99aace0bb77ea
BLAKE2b-256 cd0fcf16bcf56896981c1a0319f5d5db9337994b5165730c48a8fa07e9b34be6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7d2deec16eeedf55f2c7cf75b521ea3856a5177e123844f8fd0f114ce252cb5
MD5 1edd71b1ef35084fae3f29bb8efce67c
BLAKE2b-256 ca1c7da8d08e74d56f00070822f9638ff3f1c563f8ad87d1efa996c87bfc8644

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fa9467a8113aa69d3d7c55a70ef0b7c636010a40993f3df9d9d0d73b3eb7ef24
MD5 de394e4b350234942ecdb120180c787f
BLAKE2b-256 265e57d42fca1d18cb5acc1cad945d017fabc5d6ae71d8a08ad66be8dc3ee544

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5895ef58c4620afe02fa16044f023dc4dafec08158f9d08874a46a7dbc0341b8
MD5 3e8349d1205490fac0709358bf622dd2
BLAKE2b-256 a166e13a02d0eeb1a9a502402a977abb4e4abff9fe4051c26f80558c57a7c975

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 c39846c3aad97a8530c89d7a3869a8f8e9e3762c6ac0504481e5c80948f7e807
MD5 317bae7160ce57df59fdbbcf789581cb
BLAKE2b-256 1a81d217043a4c17fbce360905e3b2bdd20139ebc9a2de836d035d179c4da006

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55bdcc472aafe2de4a253045cc128007a64f1e0264fb675791e132ea5edaa3bd
MD5 801f66b8791b33eff0ff7fa91fb15d2d
BLAKE2b-256 97216464573e53d69672cc1eada3e5c5cb2d2efa82701e8305a0f2047a576967

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11fb37ef075669eee52ab1928fbf6e1741fada40409fa309ebde9607a962aebf
MD5 750d4a5b6820bffd7975c103c27b8e01
BLAKE2b-256 bc6be7f13410d391c6e55b4c007a8de024355389d7d459e3d64c42b2d33617e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d6218d92e450824e9b4881f44e8c09f1853b490f9a64130801024a4793b1b3b0
MD5 1703ea05685c283e4b53e92b5a06c12b
BLAKE2b-256 91cd41e131f13afd1e7b0172a9d9eda085ef90eb8439f41f0d279db81ed3ae60

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ac74facc01463f138b0da5580329cfcc82818dea5656e83ddcd11268fc12ff80
MD5 f7bd486468fcb43312dd9a65be5fdcdb
BLAKE2b-256 7ea3559639c34a345d2cf7c52dff6838119f2eaf29eb508227b5b83f573af813

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl
Algorithm Hash digest
SHA256 7041d52c3a7fa20c9e8c182b534704abb19502c8bdcbde7ab23bfda6f642394f
MD5 24cc3a0cde5b3155749406dda0d38a72
BLAKE2b-256 b91106ae6ed8f0d414edf4068861e233d8fe23ee699bfd4b3ceb8663db948a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl
Algorithm Hash digest
SHA256 78253b573e6ffab5028924fc98bc281aae05445969982a10864bc360dea2016c
MD5 2ad6fb8614c6605b625a8e4589b76d73
BLAKE2b-256 d4dd57187c8be2a35aea65eaee3bd2c3dcbbcf0204f5106c89637e3610380cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl
Algorithm Hash digest
SHA256 cc7cb243a68167172f48c1fd43cee91ec4b1d40cefd190edd43369d1a6bc9c82
MD5 7149a3380e21baec24f503998edd9eba
BLAKE2b-256 28242854869d29ed8a8b19d74f9ec6629515f7e04d02dd329d9d179201e58e47

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 f3d2669fe7dec7fc359ecdb5984b29b50d85d5d00f8c1cb61de4f4a24ee42627
MD5 5277a7950bec55baa7b76e23ca3ace6a
BLAKE2b-256 2209dec8189d62b45ade009f6792a2264b942a90cb88aeaf181239933cd72c3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-android_21_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 2e9878ae68e4a5f1c0abe4dd497dbc3d51946f5837b56759e2a02e78fa90ef86
MD5 b2f72e6a64fe8a35d54372939af2c2d2
BLAKE2b-256 57be5afd201cc0ab139029aadb75392efe85a293403d9dd3a3226161c21ce00c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp313-cp313-android_21_arm64_v8a.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiohttp-3.14.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: aiohttp-3.14.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 448.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 362a3fd481769cac1a824514bcd86fda51c65e8fe6e051099e008fddde6db17c
MD5 52fd826d8fed6d5ee5b8db76c1a1da69
BLAKE2b-256 3e4428dac80a8941b604f4da10ce21097614ca1bf905ce93dca28d8d7de9c1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp312-cp312-win_arm64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.14.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 476.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33a2d7c28d33797a2e99923dffa63f83d908a19b6bf26cfe80fa790aa5e1a75a
MD5 8706ee3e9358376092524e268fcd58ed
BLAKE2b-256 769bf2f8f108da17ecef2cc3efc424e8b7ad3782b1a8360f7b8eae8ced84f6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: aiohttp-3.14.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 451.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 16100ad3ab8d649fdfbee87602d9d2dcdca9df0b9eda8a1b5fdc0d41f96da559
MD5 814f6fd51adb4ebefc0d50898daaa8ca
BLAKE2b-256 b62b6bb88ddba0fecd9122aa3ebcad25996cf6c083a4a7040dbb3a4f97972af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1558173930a5a8d3069cee5c92fc91c87c4dbcb099debbb3622053717145a19
MD5 53e567c8c93e3d913c1c2f06154aa49e
BLAKE2b-256 e0ebaad34e897e668424d6e995da5dff8a4a09af93363d3392488772957a63aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.14.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/aiohttp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Read the original on pypi.org ↗