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 Codspeed.io status for aiohttp 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.11.18.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

aiohttp-3.11.18-cp313-cp313-win_amd64.whl (437.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

aiohttp-3.11.18-cp313-cp313-win32.whl (411.4 kB view details)

Uploaded CPython 3.13 Windows x86

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.18-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

aiohttp-3.11.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

aiohttp-3.11.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.18-cp313-cp313-macosx_11_0_arm64.whl (454.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

aiohttp-3.11.18-cp313-cp313-macosx_10_13_x86_64.whl (462.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

aiohttp-3.11.18-cp313-cp313-macosx_10_13_universal2.whl (699.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)

aiohttp-3.11.18-cp312-cp312-win_amd64.whl (439.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

aiohttp-3.11.18-cp312-cp312-win32.whl (412.4 kB view details)

Uploaded CPython 3.12 Windows x86

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.18-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

aiohttp-3.11.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

aiohttp-3.11.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.18-cp312-cp312-macosx_11_0_arm64.whl (457.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

aiohttp-3.11.18-cp312-cp312-macosx_10_13_x86_64.whl (466.2 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

aiohttp-3.11.18-cp312-cp312-macosx_10_13_universal2.whl (706.7 kB view details)

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

aiohttp-3.11.18-cp311-cp311-win_amd64.whl (443.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

aiohttp-3.11.18-cp311-cp311-win32.whl (417.6 kB view details)

Uploaded CPython 3.11 Windows x86

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.18-cp311-cp311-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

aiohttp-3.11.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

aiohttp-3.11.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.18-cp311-cp311-macosx_11_0_arm64.whl (457.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

aiohttp-3.11.18-cp311-cp311-macosx_10_9_x86_64.whl (471.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

aiohttp-3.11.18-cp311-cp311-macosx_10_9_universal2.whl (712.1 kB view details)

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

aiohttp-3.11.18-cp310-cp310-win_amd64.whl (442.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiohttp-3.11.18-cp310-cp310-win32.whl (418.1 kB view details)

Uploaded CPython 3.10 Windows x86

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.18-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

aiohttp-3.11.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

aiohttp-3.11.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.18-cp310-cp310-macosx_11_0_arm64.whl (457.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiohttp-3.11.18-cp310-cp310-macosx_10_9_x86_64.whl (471.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiohttp-3.11.18-cp310-cp310-macosx_10_9_universal2.whl (711.7 kB view details)

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

aiohttp-3.11.18-cp39-cp39-win_amd64.whl (443.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiohttp-3.11.18-cp39-cp39-win32.whl (418.4 kB view details)

Uploaded CPython 3.9 Windows x86

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_s390x.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

aiohttp-3.11.18-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

aiohttp-3.11.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiohttp-3.11.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

aiohttp-3.11.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

aiohttp-3.11.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiohttp-3.11.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiohttp-3.11.18-cp39-cp39-macosx_11_0_arm64.whl (458.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiohttp-3.11.18-cp39-cp39-macosx_10_9_x86_64.whl (471.8 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiohttp-3.11.18-cp39-cp39-macosx_10_9_universal2.whl (712.5 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for aiohttp-3.11.18.tar.gz
Algorithm Hash digest
SHA256 ae856e1138612b7e412db63b7708735cff4d38d0399f6a5435d3dac2669f558a
MD5 f75ab428107e8cddfa2f9a132db213d9
BLAKE2b-256 63e7fa1a8c00e2c54b05dc8cb5d1439f627f7c267874e3f7bb047146116020f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18.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.11.18-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bdd619c27e44382cf642223f11cfd4d795161362a5a1fc1fa3940397bc89db01
MD5 8750d31edc4aa07aeeb7a16c6649e8f1
BLAKE2b-256 1e3c143831b32cd23b5263a995b2a1794e10aa42f8a895aae5074c20fda36c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cdd1bbaf1e61f0d94aced116d6e95fe25942f7a5f42382195fd9501089db5d78
MD5 ed110c567cd8510e9e2124063c242a71
BLAKE2b-256 c7b73d7b036d5a4ed5a4c704e0754afe2eef24a824dfab08e6efbffb0f6dd36a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d4df95ad522c53f2b9ebc07f12ccd2cb15550941e11a5bbc5ddca2ca56316d7
MD5 68a3e1a880791aa7910c531d44bf4e23
BLAKE2b-256 f60bb5524b3bb4b01e91bc4323aad0c2fcaebdf2f1b4d2eb22743948ba364958

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ea4cf2488156e0f281f93cc2fd365025efcba3e2d217cbe3df2840f8c73db261
MD5 413037fc343d1d177f934495818b4048
BLAKE2b-256 030a378745e4ff88acb83e2d5c884a4fe993a6e9f04600a4560ce0e9b19936e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e6d3e32b8753c8d45ac550b11a1090dd66d110d4ef805ffe60fa61495360b3b2
MD5 8eb647e796afe1bd8e03c55e844f5095
BLAKE2b-256 9e2f99dee7bd91c62c5ff0aa3c55f4ae7e1bc99c6affef780d7777c60c5b3735

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e2a92101efb9f4c2942252c69c63ddb26d20f46f540c239ccfa5af865197bb8
MD5 2df5f9efaf917fe92b37aacc3480b474
BLAKE2b-256 845b8c5378f10d7a5a46b10cb9161a3aac3eeae6dba54ec0f627fc4ddc4f2e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_i686.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.11.18-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13cd38515568ae230e1ef6919e2e33da5d0f46862943fcda74e7e915096815f3
MD5 2e75b7ab13c5b2ea188217d8a7037dda
BLAKE2b-256 56458e9a27fff0538173d47ba60362823358f7a5f1653c6c30c613469f94150e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c28875e316c7b4c3e745172d882d8a5c835b11018e33432d281211af35794a93
MD5 bd6ada0e2d63eba007520b42ac810bfc
BLAKE2b-256 5e9dc33305ae8370b789423623f0e073d09ac775cd9c831ac0f11338b81c16e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8af2ef3b4b652ff109f98087242e2ab974b2b2b496304063585e3d78de0b000
MD5 5a327e90b7c57af4b04a36ddb270cd68
BLAKE2b-256 532ddeb3749ba293e716b5714dda06e257f123c5b8679072346b1eb28b766a0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.11.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f9e6710ebebfce2ba21cee6d91e7452d1125100f41b906fb5af3da8c78b764c1
MD5 7764df85b19f34c750154b4293e9ebe8
BLAKE2b-256 a638d5a1f28c3904a840642b9a12c286ff41fc66dfa28b87e204b1f242dbd5e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_s390x.manylinux2014_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.11.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 540b8a1f3a424f1af63e0af2d2853a759242a1769f9f1ab053996a392bd70118
MD5 229765c371a9c750c569842eb805f806
BLAKE2b-256 ec79b82a12f67009b377b6c07a26bdd1b81dab7409fc2902d669dbfa79e5ac02

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_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.11.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a35197013ed929c0aed5c9096de1fc5a9d336914d73ab3f9df14741668c0616c
MD5 0ba8a5afed07eeb528883a0481e041f9
BLAKE2b-256 82027f669c3d4d39810db8842c4e572ce4fe3b3a9b82945fdd64affea4c6947e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.11.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 28c3f975e5ae3dbcbe95b7e3dcd30e51da561a0a0f2cfbcdea30fc1308d72137
MD5 368fff837852e11edee315d38963e37d
BLAKE2b-256 b8a804b6e11683a54e104b984bd19a9790eb1ae5f50968b601bb202d0406f0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.11.18-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d9f6c0152f8d71361905aaf9ed979259537981f47ad099c8b3d81e0319814bd
MD5 95cb6b0bcdd97a72f6afa87fc48e38e9
BLAKE2b-256 d785f07718cca55884dad83cc2433746384d267ee970e91f0dcc75c6d5544079

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ced70adf03920d4e67c373fd692123e34d3ac81dfa1c27e45904a628567d804
MD5 d3731fc48a83baf40de8c6810039eb5d
BLAKE2b-256 0d84ecdc68e293110e6f6f6d7b57786a77555a85f70edd2b180fb1fafaff361a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 474215ec618974054cf5dc465497ae9708543cbfc312c65212325d4212525811
MD5 290e5d79a2ff332300ad3c0255de4f12
BLAKE2b-256 0a18be8b5dd6b9cf1b2172301dbed28e8e5e878ee687c21947a6c81d6ceaa15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 364329f319c499128fd5cd2d1c31c44f234c58f9b96cc57f743d16ec4f3238c8
MD5 0cb3034fb17798595c6d0b35c549dc0d
BLAKE2b-256 339ae34e65506e06427b111e19218a99abf627638a9703f4b8bcc3e3021277ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 12a62691eb5aac58d65200c7ae94d73e8a65c331c3a86a2e9670927e94339ee8
MD5 d2cd41058cfabc2b40c281c683065eda
BLAKE2b-256 9797d1248cd6d02b9de6aa514793d0dcb20099f0ec47ae71a933290116c070c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.11.18-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab2ef72f8605046115bc9aa8e9d14fd49086d405855f40b79ed9e5c1f9f4faea
MD5 06160fa33052f396dcd5f823d2590161
BLAKE2b-256 a571f9cd2fed33fa2b7ce4d412fb7876547abb821d5b5520787d159d0748321d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-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.

File details

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

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e220e7562467dc8d589e31c1acd13438d82c03d7f385c9cd41a3f6d1d15807c1
MD5 e3608516c24d7664988fb88675610bf3
BLAKE2b-256 c51da3b57bfdbe285f0d45572d6d8f534fd58761da3e9cbc3098372565005606

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0f421843b0f70740772228b9e8093289924359d306530bcd3926f39acbe1adda
MD5 0475fd7cf6b6689167973be37a257749
BLAKE2b-256 1132c6d1e3748077ce7ee13745fae33e5cb1dac3e3b8f8787bf738a93c94a7d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3cc314245deb311364884e44242e00c18b5896e4fe6d5f942e7ad7e4cb640adb
MD5 3561fb45586c8ca16982078d841d3308
BLAKE2b-256 ebae047473ea50150a41440f3265f53db1738870b5a1e5406ece561ca61a3bf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_i686.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.11.18-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11d5391946605f445ddafda5eab11caf310f90cdda1fd99865564e3164f5cff9
MD5 fab876e843d24cc2a53662e0ec14e1a4
BLAKE2b-256 e0194d2da508b4c587e7472a032290b2981f7caeca82b4354e19ab3df2f51d56

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f33a92a2fde08e8c6b0c61815521324fc1612f397abf96eed86b8e31618fdb4
MD5 617b66bafa3c2daab3eef6675b600812
BLAKE2b-256 57e088f2987885d4b646de2036f7296ebea9268fdbf27476da551c1a7c158bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40fbf91f6a0ac317c0a07eb328a1384941872f6761f2e6f7208b63c4cc0a7ff6
MD5 7e6a37a257dd39c74c2939b14adff94a
BLAKE2b-256 23064203ffa2beb5bedb07f0da0f79b7d9039d1c33f522e0d1a2d5b6218e6f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.11.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b8d2b42073611c860a37f718b3d61ae8b4c2b124b2e776e2c10619d920350ec
MD5 b3df7583bd89a78e4297429b743aa880
BLAKE2b-256 e004bd2870e1e9aef990d14b6df2a695f17807baf5c85a4c187a492bda569571

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_s390x.manylinux2014_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.11.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e8452ad6b2863709f8b3d615955aa0807bc093c34b8e25b3b52097fe421cb7f
MD5 87351193c8799cef63f1d6147cccd9c9
BLAKE2b-256 16de2f9dbe2ac6f38f8495562077131888e0d2897e3798a0ff3adda766b04a34

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_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.11.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3849ead845e8444f7331c284132ab314b4dac43bfae1e3cf350906d4fff4620f
MD5 97c5439c81a4c32728ab7969a5e74b94
BLAKE2b-256 32d0e8d1f034ae5624a0f21e4fb3feff79342ce631f3a4d26bd3e58b31ef033b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.11.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44ff5625413fec55216da5eaa011cf6b0a2ed67a565914a212a51aa3755b0009
MD5 fa5dd6bd007c3ff3165ec30633c6c02d
BLAKE2b-256 30b2e2285dda065d9f29ab4b23d8bcc81eb881db512afb38a3f5247b191be36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.11.18-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d0aebeb2392f19b184e3fdd9e651b0e39cd0f195cdb93328bd124a1d455cd0e
MD5 3930f4a9bafde672a97b2a88dd2a6bd3
BLAKE2b-256 708419edcf0b22933932faa6e0be0d933a27bd173da02dc125b7354dff4d8da4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d1929da615840969929e8878d7951b31afe0bac883d84418f92e5755d7b49508
MD5 00c0ecb27a79414c59dcf5480b66227f
BLAKE2b-256 fed02dbabecc4e078c0474abb40536bbde717fb2e39962f41c5fc7a216b18ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 63d71eceb9cad35d47d71f78edac41fcd01ff10cacaa64e473d1aec13fa02df2
MD5 3b6ce12830112a57b197e64c88516cb8
BLAKE2b-256 b5d25bc436f42bf4745c55f33e1e6a2d69e77075d3e768e3d1a34f96ee5298aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp312-cp312-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.11.18-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e6f3c0a3a1e73e88af384b2e8a0b9f4fb73245afd47589df2afcab6b638fa0e6
MD5 a3bf942dc476d801bddd2ad397262993
BLAKE2b-256 ed97b912dcb654634a813f8518de359364dfc45976f822116e725dc80a688eee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.18-cp311-cp311-win32.whl
  • Upload date:
  • Size: 417.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 122f3e739f6607e5e4c6a2f8562a6f476192a682a52bda8b4c6d4254e1138f4d
MD5 78cd4baeb20af7d6f87f6b0eca9b5053
BLAKE2b-256 6b7875d0353feb77f041460564f12fe58e456436bbc00cbbf5d676dbf0038cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9e6b0e519067caa4fd7fb72e3e8002d16a68e84e62e7291092a5433763dc0dd
MD5 f2b36ef04beded12d42d1ad31c2489f7
BLAKE2b-256 952439271f5990b35ff32179cc95537e92499d3791ae82af7dcf562be785cd15

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9c23fd8d08eb9c2af3faeedc8c56e134acdaf36e2117ee059d7defa655130e5f
MD5 62b21a6d9d882fa4350d7abcda701ccb
BLAKE2b-256 0b50b1dc810a41918d2ea9574e74125eb053063bc5e14aba2d98966f7d734da0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3a621d85e85dccabd700294494d7179ed1590b6d07a35709bb9bd608c7f5dd1d
MD5 934dbec50ea693b3d104d0d0254ae9e2
BLAKE2b-256 5b32970b0a196c4dccb1b0cfa5b4dc3b20f63d76f1c608f41001a84b2fd23c3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f26545b9940c4b46f0a9388fd04ee3ad7064c4017b5a334dd450f616396590e
MD5 3febed45e894f6dcee5a8622fcd03545
BLAKE2b-256 c9f273cbe18dc25d624f79a09448adfc4972f82ed6088759ddcf783cd201956c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_i686.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.11.18-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ea345fda05bae217b6cce2acf3682ce3b13d0d16dd47d0de7080e5e21362421
MD5 a64e0b6d9b02ecefd039e2e447bcfe1d
BLAKE2b-256 91c1da9cee47a0350b78fdc93670ebe7ad74103011d7778ab4c382ca4883098d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e889c9df381a2433802991288a61e5a19ceb4f61bd14f5c9fa165655dcb1fd1
MD5 afa34145c7246484729e24f8b8f47528
BLAKE2b-256 7b8390274bf12c079457966008a58831a99675265b6a34b505243e004b408934

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b8870fe1c9a201b8c0d12c94fe781b918664766728783241a79e0468427e4f
MD5 908504006c57864d4969f80fb08ca67e
BLAKE2b-256 e2ce1a75384e01dd1bf546898b6062b1b5f7a59b6692ef802e4dd6db64fed264

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.11.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bd1cde83e4684324e6ee19adfc25fd649d04078179890be7b29f76b501de8e4
MD5 f47b3a900fac274132b5e4ea0bdd3c03
BLAKE2b-256 b44289b694a293333ef6f771c62da022163bcf44fb03d4824372d88e3dc12530

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_s390x.manylinux2014_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.11.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0700055a6e05c2f4711011a44364020d7a10fbbcd02fbf3e30e8f7e7fddc8717
MD5 7007ad03196ab698ff3d2ed97c25ec8d
BLAKE2b-256 a25a3f8938c4f68ae400152b42742653477fc625d6bfe02e764f3521321c8442

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_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.11.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d518ce32179f7e2096bf4e3e8438cf445f05fedd597f252de9f54c728574756
MD5 43289157623cd0a89330a5e58bbfebe2
BLAKE2b-256 497b55b65af9ef48b9b811c91ff8b5b9de9650c71147f10523e278d297750bc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.11.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25557982dd36b9e32c0a3357f30804e80790ec2c4d20ac6bcc598533e04c6361
MD5 cd2c2e599da8e35c1efb7c3bf91f3692
BLAKE2b-256 a531442483276e6c368ab5169797d9873b5875213cbcf7e74b95ad1c5003098a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.11.18-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c2eaa145bb36b33af1ff2860820ba0589e165be4ab63a49aebfd0981c173b66
MD5 7e46a3a8c9082ac4a019f522a83ea57f
BLAKE2b-256 78dc5f3c0d27c91abf0bb5d103e9c9b0ff059f60cf6031a5f06f456c90731f42

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-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.11.18-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c828b6d23b984255b85b9b04a5b963a74278b7356a7de84fda5e3b76866597b
MD5 115caf3a765b7470175f366207e8ba4f
BLAKE2b-256 22eb6a77f055ca56f7aae2cd2a5607a3c9e7b9554f1497a069dcfcb52bfc9540

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-macosx_10_9_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.11.18-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 427fdc56ccb6901ff8088544bde47084845ea81591deb16f957897f0f0ba1be9
MD5 81e02f092d13364319fe1b2a4de0ab02
BLAKE2b-256 2f10fd9ee4f9e042818c3c2390054c08ccd34556a3cb209d83285616434cf93e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp311-cp311-macosx_10_9_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.11.18-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc93a4121d87d9f12739fc8fab0a95f78444e571ed63e40bfc78cd5abe700ac9
MD5 f6d2fa7cf512ed8f803aac38a45a066a
BLAKE2b-256 39e2796a6179e8abe267dfc84614a50291560a989d28acacbc5dab3bcd4cbec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.18-cp310-cp310-win32.whl
  • Upload date:
  • Size: 418.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e57da93e24303a883146510a434f0faf2f1e7e659f3041abc4e3fb3f6702a9f
MD5 db8426aec03b0e717c44df53bf9435c9
BLAKE2b-256 cad2a05c7dd9e1b6948c1c5d04f1a8bcfd7e131923fa809bb87477d5c76f1517

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad8c745ff9460a16b710e58e06a9dec11ebc0d8f4dd82091cefb579844d69868
MD5 497364ed900cc3689d45a87a043f93c0
BLAKE2b-256 312f54aba0040764dd3d362fb37bd6aae9b3034fcae0b27f51b8a34864e48209

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b491e42183e8fcc9901d8dcd8ae644ff785590f1727f76ca86e731c61bfe6643
MD5 dc38ad1d9df0556958937ecbd2f44aab
BLAKE2b-256 843831f85459c9402d409c1499284fc37a96f69afadce3cfac6a1b5ab048cbf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 106032eaf9e62fd6bc6578c8b9e6dc4f5ed9a5c1c7fb2231010a1b4304393421
MD5 0962f133f8479a40fdfa93d7aa9709ec
BLAKE2b-256 a586ec772c6838dd6bae3229065af671891496ac1834b252f305cee8152584b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a8d8f20c39d3fa84d1c28cdb97f3111387e48209e224408e75f29c6f8e0861d
MD5 22ed0baf738931a4e7887ac00f50af70
BLAKE2b-256 de96f1014f84101f9b9ad2d8acf3cc501426475f7f0cc62308ae5253e2fac9a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_i686.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.11.18-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2c50bad73ed629cc326cc0f75aed8ecfb013f88c5af116f33df556ed47143eb
MD5 9d43574a116fedaf7615c05eeb119171
BLAKE2b-256 add65ff5282e00e4eb59c857844984cbc5628f933e2320792e19f93aff518f52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdb239f47328581e2ec7744ab5911f97afb10752332a6dd3d98e14e429e1a9e7
MD5 25520461c4a2e6e63859e11396ab37a3
BLAKE2b-256 cf10e0bf3a03524faac45a710daa034e6f1878b24a1fef9c968ac8eb786ae657

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0ddc9337a0fb0e727785ad4f41163cc314376e82b31846d3835673786420ef1
MD5 a51e422ff29ceed400f60b8e296a16ab
BLAKE2b-256 e0ab40dacb15c0c58f7f17686ea67bc186e9f207341691bdb777d1d5ff4671d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.11.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 767a97e6900edd11c762be96d82d13a1d7c4fc4b329f054e88b57cdc21fded94
MD5 59818137461dcf8aea3c381301e23e1b
BLAKE2b-256 54a33923c9040cd4927dfee1aa017513701e35adcfc35d10729909688ecaa465

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_s390x.manylinux2014_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.11.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a4076a2b3ba5b004b8cffca6afe18a3b2c5c9ef679b4d1e9859cf76295f8d4f
MD5 13c0b78354deb64c17b4c8fa80e67f23
BLAKE2b-256 46000c120287aa51c744438d99e9aae9f8c55ca5b9911c42706966c91c9d68d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_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.11.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 554c918ec43f8480b47a5ca758e10e793bd7410b83701676a4782672d670da55
MD5 b503ee10d5ee600b1a54d76893255936
BLAKE2b-256 4cca67d816ef075e8ac834b5f1f6b18e8db7d170f7aebaf76f1be462ea10cab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.11.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f414f37b244f2a97e79b98d48c5ff0789a0b4b4609b17d64fa81771ad780e415
MD5 7cf29e61ad858e4e013f8307719ab9c0
BLAKE2b-256 0d98d40c2b7c4a5483f9a16ef0adffce279ced3cc44522e84b6ba9e906be5168

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.11.18-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5691dc38750fcb96a33ceef89642f139aa315c8a193bbd42a0c33476fd4a1609
MD5 467d9947d0561abdaf4a71cc60981e2f
BLAKE2b-256 8047dcc248464c9b101532ee7d254a46f6ed2c1fd3f4f0f794cf1f2358c0d45b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-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.11.18-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9602044ff047043430452bc3a2089743fa85da829e6fc9ee0025351d66c332b6
MD5 b315d67079d79a40f68e304d3f374b86
BLAKE2b-256 5f2f53c26e96efa5fd01ebcfe1fefdfb7811f482bb21f4fa103d85eca4dcf888

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-macosx_10_9_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.11.18-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 96264854fedbea933a9ca4b7e0c745728f01380691687b7365d18d9e977179c4
MD5 d618f9b2939682eb53822186970227fe
BLAKE2b-256 c7c3e5f64af7e97a02f547020e6ff861595766bb5ecb37c7492fac9fe3c14f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp310-cp310-macosx_10_9_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.11.18-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiohttp-3.11.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 443.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5e7007b8d1d09bce37b54111f593d173691c530b80f27c6493b928dabed9e6ef
MD5 64c1a80d720b97442f1b70add065e622
BLAKE2b-256 4fca3f44aabf63be958ee8ee0cb4c7ad24ea58cc73b0a73919bac9a0b4b92410

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiohttp-3.11.18-cp39-cp39-win32.whl
  • Upload date:
  • Size: 418.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b2f317d1678002eee6fe85670039fb34a757972284614638f82b903a03feacdc
MD5 977b568218fd4830c8040f541bac9b2d
BLAKE2b-256 d0221a949e69cb9654e67b45831f675d2bfa5627eb61c4c4707a209ba5863ef4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2fd04ae4971b914e54fe459dd7edbbd3f2ba875d69e057d5e3c8e8cac094935
MD5 631660a85da2b3a8f7a77465e3168626
BLAKE2b-256 4571250147cc232ea93cba34092c80a0dffa889e9ca0020b65c5913721473a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1b90407ced992331dd6d4f1355819ea1c274cc1ee4d5b7046c6761f9ec11829
MD5 86f3fcacf6d9f84d8859be86987fcd09
BLAKE2b-256 d90116ef0248d7ae21340bcef794197774076f9b1326d5c97372eb07a9df4955

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 46533e6792e1410f9801d09fd40cbbff3f3518d1b501d6c3c5b218f427f6ff08
MD5 17bdf33145ff521aa928ea2dbcb91ff4
BLAKE2b-256 444905eb21c47530b06a562f812ebf96028ada312b80f3a348a33447fac47e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5d61df4a05476ff891cff0030329fee4088d40e4dc9b013fac01bc3c745542c2
MD5 117d8248f868e7111f6c175b77d3d163
BLAKE2b-256 dd6a91d0c16776e46cc05c59ffc998f9c8b9559534be45c70f579cd93fd6b231

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_i686.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.11.18-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eab7b040a8a873020113ba814b7db7fa935235e4cbaf8f3da17671baa1024863
MD5 0a4f3a253d51d5d864f32fbb2fadfb17
BLAKE2b-256 9d6a64e39ae4c5d7fd308be394661c136a664df5b801d850376638add277e2a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1596ebf17e42e293cbacc7a24c3e0dc0f8f755b40aff0402cb74c1ff6baec1d3
MD5 4961edc2a4183c0b47f499c3d85e1898
BLAKE2b-256 22236357f8cc4240ff10fa9720a53dbcb42998dc845a76496ac5a726e51af9a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5199be2a2f01ffdfa8c3a6f5981205242986b9e63eb8ae03fd18f736e4840721
MD5 c30be19809b1069bd5bba2f4f06f1e0d
BLAKE2b-256 5d0483179727a2ff485da1121d22817830173934b4f5c62cc16fccdd962a30ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.11.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe7cdd3f7d1df43200e1c80f1aed86bb36033bf65e3c7cf46a2b97a253ef8798
MD5 0866c877ec9e6f21b587d458f2cc5757
BLAKE2b-256 1cb6762fb278cc06fb6a6d1ab698ac9ccc852913684e69ed6c9ce58e201deb5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_s390x.manylinux2014_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.11.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bc0ae0a5e9939e423e065a3e5b00b24b8379f1db46046d7ab71753dfc7dd0e1
MD5 bcb1e5c1beb90961528e508b719920c7
BLAKE2b-256 e0f4206e072bd546786d225c8cd173e35a5a8a0e1c904cbea31ab7d415a40e48

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_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.11.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad2f41203e2808616292db5d7170cccf0c9f9c982d02544443c7eb0296e8b0c7
MD5 8e1791ddeb32bf41d4862da620221733
BLAKE2b-256 e340f894bb78bf5d02663dac6b853965e66f18478db9fa8dbab0111a1ef06d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.11.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ccec9e72660b10f8e283e91aa0295975c7bd85c204011d9f5eb69310555cf30
MD5 c04d1276bcd2b5f7e462936ea7204ae0
BLAKE2b-256 0b3dce16c66106086b25b9c8f2e0ec5b4ba6b9a57463ec80ecfe09905bc5d626

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.11.18-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b426495fb9140e75719b3ae70a5e8dd3a79def0ae3c6c27e012fc59f16544a4a
MD5 b94b4a078686b9a8ce843f61bcb4ecfd
BLAKE2b-256 0e793b3f5b29e1c7313569cf86bc6a08484de700a8af5b7c98daa2e25cfe3f31

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-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.11.18-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3cec21dd68924179258ae14af9f5418c1ebdbba60b98c667815891293902e5e0
MD5 c5c475420bacf5246fa525a5039f9da3
BLAKE2b-256 5418c651486e8f8dd44bcb79b9c2bbfd2efde42e10ddb8bbac9caa7d6e1363f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-macosx_10_9_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.11.18-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for aiohttp-3.11.18-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 469ac32375d9a716da49817cd26f1916ec787fc82b151c1c832f58420e6d3533
MD5 c273eab0674d4a6d5d039efb854113a8
BLAKE2b-256 dafa14e97d31f602866abeeb7af07c47fccd2ad92542250531b7b2975633f817

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiohttp-3.11.18-cp39-cp39-macosx_10_9_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.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page