Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet provides highly optimized asyncio loop create_connection and create_server implementations. It is a drop-in replacement for the standard asyncio functions.

Internally, it reimplements parts of CPython’s transport/SSL stack with Cython and C to reduce overhead on hot I/O paths.

Basic Usage

Use it similarly to stdlib asyncio APIs by passing the running loop:

import asyncio
from aiofastnet import create_connection, create_server

class Echo(asyncio.Protocol):
    def connection_made(self, transport):
        self.transport = transport

    def data_received(self, data):
        self.transport.write(data)

async def main():
    loop = asyncio.get_running_loop()

    server = await create_server(loop, Echo, host="127.0.0.1", port=9000)
    transport, protocol = await create_connection(
        loop, Echo, host="127.0.0.1", port=9000
    )

    transport.close()
    server.close()
    await server.wait_closed()

asyncio.run(main())

Status

This project is focused on performance-sensitive asyncio networking and is implemented specifically for CPython.

Project details


Download files

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

Source Distribution

aiofastnet-0.0.2.tar.gz (42.7 kB view details)

Uploaded Source

Built Distributions

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

aiofastnet-0.0.2-cp314-cp314t-win_amd64.whl (277.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.0.2-cp314-cp314t-win32.whl (234.1 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (277.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (272.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (274.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (268.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl (240.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl (247.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.0.2-cp314-cp314-win_amd64.whl (226.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.0.2-cp314-cp314-win32.whl (194.6 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (273.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (264.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (270.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (260.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp314-cp314-macosx_11_0_arm64.whl (225.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl (233.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.0.2-cp313-cp313-win_amd64.whl (221.9 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.0.2-cp313-cp313-win32.whl (190.9 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (272.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (259.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (256.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (223.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl (231.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.0.2-cp312-cp312-win_amd64.whl (221.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.0.2-cp312-cp312-win32.whl (191.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (272.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (260.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (270.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (257.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (224.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl (232.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.0.2-cp311-cp311-win_amd64.whl (221.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.0.2-cp311-cp311-win32.whl (193.7 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (270.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (262.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (268.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (259.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (225.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (233.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.0.2-cp310-cp310-win_amd64.whl (218.8 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.0.2-cp310-cp310-win32.whl (194.4 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (271.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (263.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (268.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (260.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (225.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (232.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.0.2-cp39-cp39-win_amd64.whl (219.5 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.0.2-cp39-cp39-win32.whl (195.1 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (272.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (264.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

aiofastnet-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (261.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

aiofastnet-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (227.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (233.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file aiofastnet-0.0.2.tar.gz.

File metadata

  • Download URL: aiofastnet-0.0.2.tar.gz
  • Upload date:
  • Size: 42.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2.tar.gz
Algorithm Hash digest
SHA256 153665593aa80e59f9c9bbaee42d81f2bcbda9b22c8c1e687755e1e41bf1648f
MD5 1d69a6c970e7f463c0220cf3b28bbe81
BLAKE2b-256 2be043a294a9c04489f78e7d6aa3107f9281e5f37538ad878f32d1308b04ab59

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2.tar.gz:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 46b7368a425bc29f2e164a8f9e8efa60eb085cc29185e1cee2171dc9e65a2c3d
MD5 7eb6fc4b741d37ac473b3e6a178f8829
BLAKE2b-256 8a5248c6154540cee60c38c16715256dfce4e8300d2ca9724b4663a2b1614cfa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 234.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cc5fda3175fde0bd3c265e08b9c0136b442db4c334754b1f4604f4fcf588778b
MD5 79eaff242c1d41cfee7c74507b801d07
BLAKE2b-256 3b558672dace8b6c97b1529dbf6deb389d6fe5b21551e5edffd288c893eaebba

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 031ec9119f3290864b38711340dc46340036d51e5f5d93e11c5dd7725a0e13a9
MD5 b7ebe593b4212c9740e3f6c90f8e2e49
BLAKE2b-256 b198d8849e53c2f71ea1288a799d5f7931a4e2338ff988b9f5fb4d31b17b7065

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da0037aa2b6134696d84955d666683095254dc31c96731b13eaa94954aed624d
MD5 95312f5e3c7d5dce5a3d2e9d0703d348
BLAKE2b-256 200d557b74578e9d97986efe8078718e26211c9f0e328307f28c8e2234c902ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dbd68da2edd1d5625a08b754b1e033b81179a2993f8174e5797d3758fa45cb3
MD5 1e717280a04605d33c0b79ac5fa674b3
BLAKE2b-256 49e93fa3ab8d3dacb56a85128ef7fe7e9d543af121eed028c6405c202a3811d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d48708bf26cb521e7a743dc442a101df1ccbd4affc5e6e2df9ffeaa2136862d
MD5 d25497dc1dd184a4e66f0f98e3edfe48
BLAKE2b-256 6460d516ab7bcf04399ed1713c2f063a9327794ae4dd199ea03408dc24faa200

See more details on using hashes here.

Provenance

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

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73f25cca9927b725f3601e9f18ee1d8f39ea797ebb3d05eb9fd63d8fcd49a1c1
MD5 2352691f128bd59a054be63f53d716d8
BLAKE2b-256 3da64d115d2157f515e8c190eb2fb91bd54e0f189a94237e2c8e9b096c5d4ebe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bc9a268144cd90c2ed8adf630a20c0e091a1c749a565b50f922938a0bed6c1cd
MD5 21158ac46cb1c499b656ca5bc54a57c6
BLAKE2b-256 50ccd70b4c63f8a1b3eceae4ec06dca3ee4d3a48c51a424845962e3dddf551b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 226.8 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d163f154631d5012981cb1256d21e34fed5ae9e01f366594c55fe04da8e580fd
MD5 aeb572797897df5d671dbd1a29809e7b
BLAKE2b-256 b3082db6d9f00be4374e47a274c4d0dbcbdc5d21e18c1ef58daf64cbb8e9402c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 194.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9685da4b1e02ea023922ea8e40f6bf8ef6d5619d56a8c1aacc0387fc5fca2754
MD5 483526a1fe19f2c7c9a543e209b9e552
BLAKE2b-256 532f4f439c353a02b99747b1d2bbfca21d5b5c5619766a9d1ab87bd137660336

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3b63f0e10296bb28ee97f001e9acf8735d2fe1a8c3ffcd1c607f93167ef6b343
MD5 b2c851a5e8e5ce4f6f4382898a4e0bbe
BLAKE2b-256 9ceecf9bb38408e624ac713be9e061bc912ef545aeeed029a3c1f3d2e4451320

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9570e0e5ca6b2b3aca603f3d6be1f03e980d5046daf50d8bd1cb9fea6a60a79d
MD5 b265c5c85fe63dbd3e3b3c45cb93d973
BLAKE2b-256 8bd9aa70ecd64c5f00668d60ec10cc593eea1190d166ef030b7669a95cacac36

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76dc4aedc8d62346f2e1ef6306a4f5950170de4d8cca518302496451d6ea3c8c
MD5 7718f4e730fc6e59f222cee8df73e0c9
BLAKE2b-256 822392510657f29c502065103b62e51588da96c9e5698273f824932c84fba902

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0bac5ca5e1b77ef65deb196a6db0af5ab5d23c870369693f7f61ed4951c7a9c
MD5 e91a9d9f377515e14575fa38c297d85c
BLAKE2b-256 4d695835d9bff005d76fe4482260f7596484b838868d3db6e25ce664286b50c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09c6039b7e37ae0a4c32ce68d1ff0ff23799a99adc1d3e93b474dd5a5a0f0228
MD5 abb9050e84c7f122654edb4e49781e8d
BLAKE2b-256 0591390ee1bed3c082e235719420ddc195dd86a720f7371fa2207c873cb82a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b124498c7d43f0c3ef36f8799905d95e2b3cb1a1ce059558a8299b0d16883c1b
MD5 8b35b959fd4581a59dd64a3adb4c62ef
BLAKE2b-256 ce63091c86003bb19c00edc6a1e92ac521620f6aa73ef78b4ec08d14945408e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 221.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 039a4ab424fd140741ca2c166b849668d9a3917e21c32598636f87b3e73b57fa
MD5 33aa7d5b16f06d99a76099627bad6b5e
BLAKE2b-256 3cf3036d5596168c121f6528bd1f99fe1400242e9112419cc7b55c7474576283

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 16b2b77039d9b51ab509765d43281a1abf460d1c0be4e571ecfeb577aa64ef58
MD5 d7d7701b6d297f167a1fd2364a6b0f70
BLAKE2b-256 be004d69c40a403f98dce10e586889b0b561a031659b2d16619bace99b9a745f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97ff4ac9ef1d6e4b3b0eb6c6df3c3fd65442d65c58de1cd111cd5b2bd9969239
MD5 09b559326b549aca8bb4836d24795701
BLAKE2b-256 f08237a8d461d8649497e859710d639d849468aebe44a6cbd1059f6aeb66c3a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff787a673cdca0bb0a12812c797a23ba7bbe534eaeb44a2797c4895dc3ca47bc
MD5 a3df183e703755e4f42b31c38d233297
BLAKE2b-256 259c08865845b22310f0c09af21c97c2accb92b81448f6129ade647b269382e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08578854aca65282d6ffb431d91ed36732a49befc016877cebe31b3a10e2910e
MD5 66e7dbdc9badbb66747ed51b5e3f7119
BLAKE2b-256 f32b12c27b5ae09069efe16768b43690040f7bcbebb687b54b23bfa704df631e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d73e9e20665b147f89475f5d5396533ee516c0decb5a699f57bf108d1c83861
MD5 70404232eb073929301fed3161f5f532
BLAKE2b-256 4921422cca27292f28c9a204ea8baeaded4183d1d0a1643cf1cd37ae5d2cbca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9adc3ccb6f240007a30fc90fa9c2931786169d00ea4bd355945d3ad84bb2588
MD5 c4986ebeba68b4cfb837a7709f9b581f
BLAKE2b-256 0b9202a68d736a33f67c67a25f6c33056e475e5449f53284fa255b19ec7d8369

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f391217ad2a73ab6f038445afdc804b902e5bf0caac082578151edcc98c738b1
MD5 5de4f875fa27d1eacd85756f1d0f6e03
BLAKE2b-256 7be0dc90f6753c860c81a3af5f200871549e3137aaa664611fdae883cfcb2fe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 221.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d2470dbbef9eb57caeb2013dc849c373086f9a82a05650e8dd51c0315884a195
MD5 29885e7f7b82085c04b161ff2f56c90c
BLAKE2b-256 96d302510719baf9ace5317fa53af183cc6608377c9b49cf4da1efcab6b7c48d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 191.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0db92141bd6757f235125ce500593dad096b1d22553b3dc9257dbfbb145c4590
MD5 26b7f3b22c04636d6988e4baa2376b51
BLAKE2b-256 b5791be5eb7f9ac543dbf5ca704ddd87dfca82cc86f194d60bf2ff14cb39b2aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ecdc720d71bed0e780c0e0aa5f335e60b3bc9fdbf1ae30e01c0723333bc60fa
MD5 2ef6135770bd4d0676334a9105f102c1
BLAKE2b-256 d7bfdc3d900cb5b796082a549958bfbf246e586f39ddcd43bf79530e179da9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9e1dfcf26fbfa9c1557f01fb4137ff084981776109449651849a93b26e374de
MD5 8f219f80e6f06b9ccef1e4ae4e5a374b
BLAKE2b-256 668570ab1761342cacf3c51971c065c1eea6ff500760eeef034a1936d65dba05

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6503e2104c19910e6b2afcd078c7df94c6fe608dbf7f37d6f8b46b2415b18d2c
MD5 7384204e88043e79eee57c7a266a302c
BLAKE2b-256 ab912143e7500d2c623b69f228b8bc3fc3285536f33fa7e94f12725e1770cfc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 02d391ceca81cbd29c984bd21b12d6fc6ce659e7cc1fd3815dc9ff9c74a53a0c
MD5 844c94596ec720da6f475e412ff54ee7
BLAKE2b-256 7612d86d0d0fa8162890c1e3e596fdc130db1790e637db71597e4fc5afed67bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efa304ba496267a165b2d9abe924968dc63c5a1ad11060727fc72ff7ce0ad483
MD5 babc18940bb31abb888c3975c224553e
BLAKE2b-256 97cfbba6e7749a93da232cb8040ef31cf7e57e7ad85248ce4728ef648276d9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a89d32709b7f9cbf58edfc45f88266c602bf879e7b68ca8c3354df24eaeb0653
MD5 7c89e13c1aecea4d269e6b96b02b71a0
BLAKE2b-256 5efb29852f6d2348a1ec3100c1381ff3233b3636ec371f9ac76bfacd7af773a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 221.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6d3aee35ef2ef83f4580abbb9d01c6f798a2f6304d2f98291e2c4c52aa371290
MD5 b9280bd724a5689a7ddfc2bff8056088
BLAKE2b-256 74a34338506b9cced592f5f22739f5c19a34b79e6d7aa9ed113082a634834f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 193.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 caacc8fa7afb7c0fa58ab3046271248748435b2cda6d2bd0a215497652ebda0f
MD5 d25c7812756f0785918493bf3f6647af
BLAKE2b-256 7fc824b26e5a035f80891a5e800dcfa6437ba6d5b1c00d19f697c5af077a9234

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b692c51db3fc0c685dffc018cfbc30ef51173fda05c20b126dcb0fc2d27ee836
MD5 ffd4646cb911b0bbac06626b232c8b4e
BLAKE2b-256 86d34ac0e581381b03e0d5d4906f73e178788409faedf17457283792a80db6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f430a3b3ae9cd85b6729d4526ab229afa3b536ea984b00eed7ac7b2ee3f00081
MD5 69548d63d517d68e3fef451637904cb7
BLAKE2b-256 3a72de0c419efa929c5fa7aea251b3abd1ca7956b572befe8fe569ca6cf6a838

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d0cdd977c85313d6a8b69697418e6bac5d5eae7b982423b7513521663e21bb6e
MD5 33ba5c207254f04af0b4090e6547f347
BLAKE2b-256 0444a67b1b2b702b5b3e356fd42a11a560e5657ec7cf91db37e1dac21605b540

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c192f2ed9b317a912ef65b352c654ac2ccfa0dac04202c811e94026186129d58
MD5 025f8fe38cb02fcace96c61e79958877
BLAKE2b-256 07579f99ee7c1bfe96d585793971eed2a79f6728eaf2085662cc957327a62160

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41002ac38cfb5bc3e104831e3de5f4b91429c2b24ef7bd272d39c8af11b86562
MD5 b8b2191da854f477646cc9b4a1f3db21
BLAKE2b-256 937a8be989dc41d882a811175bc57b9667534580c8580cd3f03be133db3280da

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 01d68c5d8ddb09bfdef3917c5e5150e2fac09d88df1b6bc9a033252c1507d94e
MD5 06c1012882022a937a5d242658762278
BLAKE2b-256 3ad36c77bb96c462b218ca387bbec6703b3b0d466a9991a66ad55165898721be

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 218.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 238cbdd5776e7782074f6b6e5334bf6cf9f87e0caf1a27f26f1a782bb1c1e61d
MD5 bdb0967acc056469ae58803959fffb5a
BLAKE2b-256 78ddc7aa8f9c7ec65dbbee91fd2b6a98ed7c0c9f164dd8f020b0fa8cad64f362

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2dec026cd962ece9c4f595bd131afd9ba57495028207c182b450fdda0ebdbc94
MD5 f7a34431a6baa874b1d313b6d1f3c72c
BLAKE2b-256 02ed3aa22e5a99047f8e983d8c2d580efac0e3b61bd44dce5b00f733107fb9a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9b41598febab3eb607a88de755b9d7782c2dbf6d2a281b1d73cdcce4d24303e
MD5 e3905143ffa884aba2b9c1b1eb36eac2
BLAKE2b-256 2cb3894b2725813018bd62d7294828212ea27d68636773f53447a80615676b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61068b6d33fe6e69d9d3481b75ec2a178980c96349627c1ee965aae58e533e42
MD5 1dec61567745749e156fbb42a4f2f4a0
BLAKE2b-256 94fa05a154543c02dad787de333d0c5901294f8e81f44c521bcd601fb8902953

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a62c0ed3d9ab79afba875190639ed0d4e2719cada89e591e3ae644a63adc43b
MD5 6245b13e46f4b689e427b6c11bcbac76
BLAKE2b-256 aa4eaf4448a407fbd3e52e745aac1080aee7f48b7ff6dd0e27b10892607cf7ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 70023aceb5d00218126da94d459f677b2a20cd1e15843222aa3a37242192f277
MD5 283c25057605da03278489bb4a2a7cab
BLAKE2b-256 5bc4e3c1159ce8858daa04efbbcf2e01be880b3309109b9b8e23c377449860d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f73b44b1ecc1e3d713b1f0b1473e7648a9bd6dbf3d01902cb7a4ee98d8325aa7
MD5 6b50ce7fd5e984dcfab492a1192fd5c4
BLAKE2b-256 f0eb4d5bd2f137ddc9956a2457a096929b478425f798bccd664e0948240ee077

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e288ff9588f4fd86a2af93800ac382f909291aa44fe229cde21bdd41c03c1a41
MD5 1e08eef34c9bf47f56667b2835493de4
BLAKE2b-256 aea1df2de675360e9eb1a9d8db44b9bda7b150f63651014e2f1b1d2b7984c5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 219.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 571bf4d25e13fdcf677a0016ad30981dc5584a6800bb4b8bf6918b73c1af02f5
MD5 d09ab4bacb7423a4390e5a0548872ddc
BLAKE2b-256 a07aa62c91a9a3f4ccefa94d2816549a4a23a704364f2ba64ff556610f9be32c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 195.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 01b2a5054a77f9d04f8957dc8b1fe68ae0fc1b1f5afa3a724afa5559d6720db8
MD5 8b3af5e00af8d70daef61b092fa7dfe7
BLAKE2b-256 4d20ceec7069e822242bd2abb136e0044b006b962a1743d3515400fc48a1282d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb1c51302ef369ba60f4e8da2b9a1a2e31083d83896d0f02af04a1e7e2d056d6
MD5 dd418ef78b107742f4a915fe3c242ff0
BLAKE2b-256 9197023a323a9a790fe6ab92746149bed441dba792c88a67a0cee89c70cd2b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20760e3328b94eefe766a63bbb72e44402c77c97a5117a234885948a992adff5
MD5 97e635c32324ff85f728d31ae2d54b11
BLAKE2b-256 aa27f4197ec2cacd3ad4318ea7c63496d9e45d336fd885ee7b2c5385e6b6a917

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1318a62da88d66a5ffc4749211ada63461bcc39730f138ec498da8c2a92eb1e
MD5 0eecdd567fd847adc05eecc890f586b1
BLAKE2b-256 9bc32c8a3ccba276e21999f80fbcc82ff97aede78d83be26f44d748b6f284a80

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e85fc1fce452fc709348ccdfba07179b51c7afd5dec5316b7dd0e32711aa48f7
MD5 26fa33d45de74a8b60af819ef7c68f20
BLAKE2b-256 cf6eb9032fd056140744fc35b0aae9c1a1727db43cc3f2ce22f84174e0cefd63

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07a706950abd70ed22efdb5f0cafef60e8ef364331580b2056a5fdada67327cc
MD5 a232beaabae622eb461b1efd58517e3f
BLAKE2b-256 ada0bfb8ac7de926129bfc3964916aa24d5b49870e0c4022e0d5f97e5b3e03db

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

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

File details

Details for the file aiofastnet-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 922b70251bb64ebc32ac0a93b22024a74d016156d545c18985dbae2214e6b6d4
MD5 81f0c01531b3de5d7769979f3404fd62
BLAKE2b-256 22f184fb9741c344bdd62e94b368052c37560570d513993511a416eeaab946fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

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 Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page