Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

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

Internally, it reimplements parts of CPython’s transport/SSL stack with Cython and C to reduce overhead on hot I/O paths, especially for protocol libraries that spend significant CPU time in transport and SSL plumbing.

Installation

aiofastnet requires Python 3.9 or greater and is available on PyPI:

$ pip install aiofastnet

Basic Usage

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

import asyncio
import aiofastnet

loop = asyncio.get_running_loop()
# Instead of
# transport, protocol = await loop.create_connection(...)
transport, protocol = await aiofastnet.create_connection(loop, ...)

# Instead of
# server = await loop.create_server(...)
server = await aiofastnet.create_server(loop, ...)

Benchmark

The benchmark below compares echo round-trips over loopback for TCP and SSL. The exact gains depend on workload, message sizes, and how much time your application spends in transport/SSL overhead. Benchmark source: examples/benchmark.py

https://raw.githubusercontent.com/tarasko/aiofastnet/master/examples/benchmark.png

Why to use aiofastnet?

If you maintain a high-level networking library, aiofastnet gives you a way to make the hot path faster without redesigning your library around a new runtime or custom socket layer.

  • Drop-in replacement for loop.create_connection() and loop.create_server(). You keep the standard asyncio transport/protocol model and your existing integration points.

  • Lower transport and SSL overhead. aiofastnet reimplements the expensive parts of CPython’s transport and SSL stack in Cython/C, so more CPU time is spent in your protocol logic instead of framework plumbing.

  • Especially attractive when SSL matters. Python libraries often pay a large premium for SSL-heavy workloads; aiofastnet uses OpenSSL more directly and avoids several extra buffer copies present in standard asyncio and uvloop SSL paths to reduce that cost.

  • Useful for library authors, not only applications. If you build WebSocket, HTTP, RPC, database, proxy, message-broker, or custom binary protocol libraries, your users can get better throughput and lower CPU cost without changing your public API.

  • No ecosystem lock-in. You do not need to migrate to another concurrency framework or ask users to rewrite their code around non-stdlib primitives.

  • Clearer and safer ``write()`` / ``writelines()`` behavior. aiofastnet tries to push data to the socket before returning. If the socket can not accept everything immediately, only bytes and memoryview objects backed by bytes are retained without copying; everything else, including bytearray and memoryview objects backed by other exporters, is copied before being queued. This makes it safe to reuse application write buffers after write() or writelines() returns.

  • Better backpressure semantics for SSL transports. get_write_buffer_size() reports total queued output across the whole stack, and set_write_buffer_limits() applies to the whole stack as well, so flow control reflects what is actually buffered for transmission.

In short: if your library already fits asyncio’s transport/protocol model and performance matters, aiofastnet lets you keep the same architecture while replacing one of the most expensive layers underneath it.

Platform Compatibility

aiofastnet is built and tested on Linux, macOS, and Windows.

On Windows it works with SelectorEventLoop and winloop. With ProactorEventLoop it falls back to standard asyncio behavior, because the proactor loop does not provide add_reader() / add_writer() hooks required by aiofastnet’s transport implementation.

Contributing / Building From Source

Contributions are welcome!

  1. Fork and clone the repository:

    $ git clone git@github.com:tarasko/aiofastnet.git
    $ cd aiofastnet
  2. Create a virtual environment and activate it:

    $ python3 -m venv aiofn-dev
    $ source aiofn-dev/bin/activate
  3. Install development dependencies:

    $ pip install -r requirements-test.txt
  4. Build in place and run tests:

    $ python setup.py build_ext --inplace
    $ pytest -s -v
    
    # Run specific test with debug logs enabled
    $ pytest -s -v -k test_echo[asyncio-ssl-buffered-32-64] --log-cli-level DEBUG
  5. Run the benchmark:

    $ python -m examples.benchmark

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.4.tar.gz (142.6 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.4-cp314-cp314t-win_amd64.whl (327.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.0.4-cp314-cp314t-win32.whl (277.9 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (333.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (328.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (329.9 kB view details)

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

aiofastnet-0.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (324.5 kB view details)

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

aiofastnet-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl (285.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.0.4-cp314-cp314-win_amd64.whl (268.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.0.4-cp314-cp314-win32.whl (231.5 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (323.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (313.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (320.4 kB view details)

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

aiofastnet-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (310.1 kB view details)

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

aiofastnet-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (267.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.0.4-cp313-cp313-win_amd64.whl (262.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.0.4-cp313-cp313-win32.whl (226.6 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (322.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (309.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (319.2 kB view details)

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

aiofastnet-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (305.0 kB view details)

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

aiofastnet-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (265.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (274.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.0.4-cp312-cp312-win_amd64.whl (263.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.0.4-cp312-cp312-win32.whl (227.0 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (324.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (310.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (321.1 kB view details)

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

aiofastnet-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (306.7 kB view details)

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

aiofastnet-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (267.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (276.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.0.4-cp311-cp311-win_amd64.whl (262.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.0.4-cp311-cp311-win32.whl (230.8 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (323.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (313.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (319.7 kB view details)

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

aiofastnet-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (310.1 kB view details)

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

aiofastnet-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (267.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (276.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.0.4-cp310-cp310-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.0.4-cp310-cp310-win32.whl (231.4 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (322.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (313.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (318.9 kB view details)

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

aiofastnet-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (309.5 kB view details)

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

aiofastnet-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (268.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (276.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.0.4-cp39-cp39-win_amd64.whl (261.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.0.4-cp39-cp39-win32.whl (232.4 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (323.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (314.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (320.3 kB view details)

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

aiofastnet-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (310.9 kB view details)

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

aiofastnet-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (270.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (277.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-0.0.4.tar.gz
  • Upload date:
  • Size: 142.6 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.4.tar.gz
Algorithm Hash digest
SHA256 0a2a0e2340bac07317e6b0d4747629715868fc33688eed98e7a614da6f77f977
MD5 7e3a8907d3094a4b76e33427cd054538
BLAKE2b-256 e8d8b3894a5ebb630d1a7c8aca6ce7784d2d0e393fe6dbd06c008dc752bfcad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4.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.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 327.5 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a0cac2ba3b5f208feb6de71ac608e8534a628ca551a020c64e8f7ab9931aa282
MD5 5ebbbae5a9452d9fec79ad4f3ad014f0
BLAKE2b-256 dd231532425ceea457667cb199e153a012a5353c436d9ed8cd18e090c9cbebdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 277.9 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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 36a5886e758e7831e5e602630279536a79363232dcd7bc1367ef342fc96a6da6
MD5 a2a33316cfe9d9806976e48bb5aba8f3
BLAKE2b-256 7a0f1f3ec9576fe8b13f8792bd2903f56419af6a8a43bb6bc2b773a88aee9916

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6848b931ac977ab8df66355552807f9859d3d3d4e78da183ab66893103f5e847
MD5 64ff81e3c2917c332bcc528325e5c9f3
BLAKE2b-256 c19e1551ec174d9432b999a728b84f30511c64305cdab57e16cd15a114afa437

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6725316b2227da3e2d6beecad3d53a353e5ce977f956dc24af3e17060e4cc6fe
MD5 5194889388007c964c7cf35055bd0330
BLAKE2b-256 080f797e194aeebbe7dca22849bfc9ad57e330d85bd3bd8c85193a4b0eb97bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 204aa48485a823a02ebb37f445e0ca8a3bb00fc1361d57b3ce50635d20262fc9
MD5 bbdb3c359ea7efb741c48ed904c50b46
BLAKE2b-256 ce1117a0514fd7dd9cd2349b37d26e6f9768c80ac8967226c64e442537e7e78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca5b3e50c92025c970a194bf84762a9ff1e0361c753f5957f645544a675070ab
MD5 99b38002dae940c13db98cc2430e6fcf
BLAKE2b-256 6ed52d8dd29b5035e366ba6d88e01a6fe8bffcb8504bd68175bd10e0db2df36d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfec521512c377b6f264c69377c11ed39812d958c927149fc9987e1a441c5e8d
MD5 b94454cbcd7ad966ac086787963e6a18
BLAKE2b-256 8a663fd5eeb8534cc206933e65727c1553a3577381da2c4e0d31929bb7d7ff9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c95ddd5383463a9d16791a90e1c0c6f697ce6e3254a48b6f258ff7b52ecda27
MD5 048f4c58c700e4df032a921b85bb804c
BLAKE2b-256 f0f1e2ac247be15f7a643192c24f9d6e1799d6822d6b0a732a816286f058263b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 268.3 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d93890951053b9d1d7066cc975af349c468543fb940047b60dbc5829a55a221
MD5 fd878049aed9c3bbf5009a59a2ed4bda
BLAKE2b-256 6990d5f3d75235064cf6598c6af55307fea3b3c5af2ada1e4663549ca9b1c262

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 231.5 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 354fa433e12f33b3e662d34c3115ef1d96a0c5e6b7098b8dd9569ceafa35b496
MD5 8dfb5ca2a0543baf70b53278f2fcf336
BLAKE2b-256 9448a0f1d6ee2bebeb35d41740b2cabe5dcfb114130505cb462120410bc96cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fbd3c538145ac610760261d316da7e9dd9d83cad66d27bc29d8b98e447d5f4b
MD5 edf98272fbbee52dc5d0a8fe977f41f9
BLAKE2b-256 4b4875c94edbd6647b4d679d1670d49e38d621a22ea4461e95ff276f576ca3bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cd9bef408a5cc76b0a037e59d706218e1e4641f71035420570037a60dc73c8f
MD5 8db5cdf9e9475dc5ca28c7c57eb9e648
BLAKE2b-256 4e9d7368635682e2b700c684877f9dcd11d7d8db9b7eb6354cee818c47c17876

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5f9e1c187411786b002c4da5c2b248d31743dbbeee13b01e2bd3506ea83026b
MD5 4a5ddd4ecde3c4760b1d61f1dd819a17
BLAKE2b-256 b82cb6dc20556ac88f19b6b1e98091de3e4fa1f781b8e6c5ee4af8df8f160652

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f96255b2fb7b6f938fb990ce689bdeb28ade68f3f7dc2a6aa7d6b064e177bdf
MD5 4bcbc043f6b0a6433d63b191a3402630
BLAKE2b-256 b293b6270a8cb12d19baa1f26e705b224481f3ddc7576b815907be2100006089

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fce076f6f99cfffceac6b745767698b680c3fc1e212dcac320eafd238e1679a2
MD5 88af7b4cb5f9b7a7896a3f3f97ab90d8
BLAKE2b-256 c070ee3d3e23b7e721fb6e21f6620e51123f4272f6c16ed6799fdf3bb4749f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0cbdf25905d963a388c8e684c87b9de37734b19a66c713432ad5bc4fdb2ddd9f
MD5 65c9784c798e4c0cd905cd4269973b17
BLAKE2b-256 89705f854e83361c850e241b8ebfd793895147f063b4340b27d7b2ac965fc904

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 262.7 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f3547c482d8f68b97930197da7943322ec1fff1ce16a3c9eefc3ed6606ec451e
MD5 b88885b13f68c91c2b4d158a0a803a96
BLAKE2b-256 bfb79eee2d8ce25ed617ce4feebee07a30fac5586e03c7c09e07367ce6c9f035

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 226.6 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dcc7f184af8159f8ad9e79ad30f753143d2dcadfe75ba0457134d4f677b4e2b1
MD5 69207501bf66f8136b191196baf2c76a
BLAKE2b-256 34b257867596ca9f7103042ceaca82b9048b3bae52e46a26e5cb5508bd5fc4c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dddde49606906a801c3911c76063d653149e94ca8f52cb9fd30dd8ae458e1f62
MD5 709f5cbe23dede56149ba57c6095e5cc
BLAKE2b-256 77de04b50762effa3004a610c720e6f58f62f7ae21c0aba8c80fbbdbd861fb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3ee759c3aad534c081ff64bbc079738a23573eb24adde627f6ff8d08548e0e9
MD5 aea0656e4db9f5d3dbd19869a43d049e
BLAKE2b-256 4af81bcbe4a3b35f617d5ed0b3b9b5a862e1751535bbcd8b6e4811f862d6eaa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35c7c9a5e6c1e7c70ce12685ffcbc2502a8c0b1cca9b5a9aca37cd4d451c4947
MD5 8c63162001d963d0043dfdc5ca3bdc43
BLAKE2b-256 7fc503d23da6d97b21d6281c4c3bca4a3e6705a34f6c7d73f73cedea7ad979bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8e9b6c3701c6927246a58fdca2515bf0760f0d3e95bb82924724a99774a8c6a
MD5 0a179c2d0f25479b6edcd50c627ea085
BLAKE2b-256 e5843971d728840caa7fe6d5f8f06e1c145efa3a12b64672a1c778ea03849252

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fbf2498f583cf4472bd8ee0e23c713af9903d53a395eb02ebf6f90eeb502593
MD5 45173ed94af13d6752c9087d5314140f
BLAKE2b-256 678bc0f3c672e36b82a478893f7c59cd27df11b51d8b9586850654b952c4ec78

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8cda9c2aae6f5374267f9895b4cbaed27aa3d23a9c525fe97f62dffc7afb7b01
MD5 5c5aff5b4c99305bc3b8c643fdfe80c9
BLAKE2b-256 5251ad0b1b1d1c022eb465474d535b073bb21b0618c10d23ab922da00de666c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 263.3 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 15ecfd942f0c918bd868d604a99ea2d7c2efe627394067fe1a19fae205f006c6
MD5 26fbe0a7de0c8c32e2fbc54561d5bfe7
BLAKE2b-256 91d90308b6a8cdcd174876b56536486a5c754a526dff7c217c7f0897fd971a99

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 227.0 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80ef466a87e350c0ae4b16eec0987bde0f1ec77559219702cc6cc33375407a3e
MD5 e9c604477db618d9a8777ce2430aa701
BLAKE2b-256 015bb205e0d5c8da967064a940e995e6e03302a365b0f28360d3195abbee94e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46c46bb1dddb4f9d1bf10d2bb70aa5161ee9d37d83f29e0e9af00cc12f639a43
MD5 8e9228efdb7d5d8923de30a725deb085
BLAKE2b-256 211be52cb1bd65cf97a598b00fe99612e647d0863e776a1c44f0ba5eb705fcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db8cc509b4305c13358b926661aad2a6cff5d74789d4dcbe7bea41e37e8f0ee1
MD5 d92df212cc3046ce9065ecfcf39e301f
BLAKE2b-256 25e8a7b70f945d54f8ad2e292d86ce8ac80a4306c6f2ab0d9b852a106d1ce22e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0352f0884034899580a4144bfe894d9ded3380e3cc28bc1a57b4c89769007b17
MD5 58e5cf678bc6959f25161aa595afedf7
BLAKE2b-256 90d43cae9525d459b662883d8b35fb41c365f22cf312576be84e777342f2f147

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bb23ebcafa3b3677e1ef3c529e03815d6072a5b0f043a465c022466cc043c61
MD5 751ae0b73938f00a2b57ca3ac9efda46
BLAKE2b-256 d49d2dc26838bc4cfb19c6e4c84201f0e62568abe1b27e3f46864878093db3f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36d3a1b18c90d655bb1284755f88b0b250d6b72110e02b96bea02fd216b3ce07
MD5 e75afe6d938514d9db0d249df33882b9
BLAKE2b-256 8fb55754d62cfc606427848c92c229f81407ccc721d1a580757f2e6ae28d07c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 810ebc4da6b247d1d3f182e805681f4eaa5b3b2a5e7579d95fc85cb5e8cad2c5
MD5 49b94f6c04cc117cbfeb14936ab0498e
BLAKE2b-256 f8a8779b9f2045e124c685e5e049edabdf3facb947b3360f66ed0b6ef1ad1f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 262.9 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd17847b3348fb293cb873a472f54c8604b1267f6dd4707b44940025c5bb1fe3
MD5 0c7e4bc5a7c97bc65aac3f2e64e39982
BLAKE2b-256 6faf27d820515ce71f25b20376c2f1688d5d175fea8fc861ae4b6e9fe89791cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 230.8 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7b297791621361276d1bd132bba5ae75e7a365cda9d8d2dfe2633bf0c704b4ec
MD5 e0620852a9e2e160e14e22c1c459ca90
BLAKE2b-256 536a59235dfcb9f782a9b133fb3ea0b7f0b0029fd16ead93ab81ff352a8f9889

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 794738e965114c2ec455e0b0822b40087b6d8b5c8dba44d284c29e37a6aab080
MD5 be83c518c4b7014b4b536a423d67eec5
BLAKE2b-256 3eaa8354683ed23e57c89c5b94105e809d1ba824ff8817170fb250fcc9b5437b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e4c1af134d36aa5ee82fd7a4883b6015227de77c0aabf977f72ea3ac686b286
MD5 cefc63efb1931e17125df9f3136f13fa
BLAKE2b-256 ac50b87481d4fc4dbb6d058e1da9aaaea932b6281c9dc797ae989a87c5b63c62

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70803d3a87fc90406572964bbba3916e941a69df86137ef4e1f02791db4c4fcd
MD5 72aa3e5bc8408c18fb939ee94fea21e1
BLAKE2b-256 c4c7b5311fc6412706302aae06bd6e2110ea9835a3f532ceab942fe0d43f96f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8726479290565065acb38c27ca3c7b442c022025e0ffed73c7c1389d1f1be19
MD5 51d9005618d2d3d140e367a538155731
BLAKE2b-256 20d034aaa7ebca7f228e1586c9a0b2ab14fe72940a4b2b546c340a26a0e62636

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c89ea93acdb9085b4f50d28379aa50b104a7d43b17167cbf7781949f969287ef
MD5 cdd17414490d61e4e5e3f69256e19d58
BLAKE2b-256 d981a2587a81cacd6397da1b91c807d8b749583354280f171da42e349392811f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9e204f2bab09f8a6ecb1450d8eceb90ab8bca2eccf02a6583d2ba9aa7bf3b61
MD5 4b302ed58a405b60b01591e785b3fc10
BLAKE2b-256 143dc306be1feeb9b27d0b1116edcd5f926858aaeaef4d9fc84ca59a691c12b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 260.0 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54663f2258c1f1a0ad6b3cdf585b99a97ee2454974f5ce518b0ef011bc26e7b5
MD5 8d59ceb424e855e13624611cb5eca791
BLAKE2b-256 2277f5875a67b84c8b36c8ff47691ebd70dc78c0cbf0982ee2a0279927711861

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 231.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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b104d3d6da0f634f560c83218ecaba1fc22d8490e4f2d4c8bc254edbdc626734
MD5 9c1ecdc16c53e4b9a4348019e6c19ef8
BLAKE2b-256 0a548d85d5c10731a63b698d72a7e4f648b4814f2a054e1808429d909be45097

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1f1d319b6c4c3a9b3f34f61653f484458b52d4749cd4bb9cbbcb53dacb658a2
MD5 01fdc3556ee1e2aec1c28b18f3bac79a
BLAKE2b-256 2a51723f63c25ab4c5e91b2cedd10b5b6e2ce5e19a727736e8036c05b9dc7192

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e300c072110060231ca15b5803cb488d8081260c7952fb07fde6dab3eae4034
MD5 b8da46e97a10d3f5b4e0fb2987ed9d7f
BLAKE2b-256 6f3d36e37285d4af2a012cfbeb187196b07ded7c0d604c7539849c0feded40a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5d7eb6340f0176a437cacbe08adb7036a1198e98b398efddab04692e84b68b5
MD5 780a79562eca3225232914393bfb1089
BLAKE2b-256 fbd6afb66dbd2a89b46dad44ad14e402e8155e5d4f22aa7e52ed5b2d47594116

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ae8176ffde947f51cd430e296fd3d8b26d78563aa97b94c86ab5695b7571cca
MD5 d81b5fbd7d640e36bbdef0a9839eba0a
BLAKE2b-256 b0c962d00b4e17a605856d076b6c4961f65c12843f50f1466ed19cd6ec67f06a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecb8e02390851eb3a9c3026420ee9cd6f4cd00d257bab3904807f38ea01205b1
MD5 a9424fbfccd398c46b19c741372f4e04
BLAKE2b-256 94eca1490272d406adb7fba54dff850248ec03fd863dbd53a491dde42812fefb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb85a3a6677162750fbea9000349d8f6a7c37d3b0b7e3c1ffe0f49a605e1d5db
MD5 afe9fec13c92714e2d277ae35bc56284
BLAKE2b-256 4831caf39ea4461c3f2840d285a33d503bb82a99c4d531b0188263d64de523f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 261.1 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 45e7604fcd7e87206f8a45edf9b8b9efda54fcf01bd0bc66ccc708da8cc31929
MD5 f01ef21590fcef3bdca0eef212e552cc
BLAKE2b-256 c61c37c9de74445c2a94cd21780232008f703ef6c2a01078b821dd70c071133a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiofastnet-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 232.4 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 312a890739747564588a25abc96814d82774873325006cd62d1f3c58ad024756
MD5 b4b350c454211afe7090176e63648d76
BLAKE2b-256 49d7373094fda0751fb5d23c5786eda97327c95afcef51d3adfc006a81df88a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b464ba021ec900439b29d285d68e4d349ebf575929c862b4d2eaa48d34cf04b1
MD5 0e8af76fbbfb260fcbeafdc80575694d
BLAKE2b-256 e2cd144dd56b1afa2b64e803e5259eed8b4a6d2831a9225f0d068e59d4080eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df5dff5d6bf9faff6d601a68b89b6c7fe807e11d66c960e6458debe8c2187f81
MD5 f4e13466fa12824210dc739a65dfa3c5
BLAKE2b-256 26a5b2e0ed6e486c0de3139bc8fafc153e8fd3fec937ac571f650df7789ed093

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c9f7a93f8d43553d6afefbe991dd12b4c94d63a78f885086e088384a9f09697
MD5 a073a29e08f881f43645afcb2a3687e3
BLAKE2b-256 1bae93e038fb23db38e4545cb0dea70d50b13cc9389643ee61391852da9b72f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab8762daac607dffd0344d5ee9cdd69e966051995bb9d0d1084eb5c8f3c5190e
MD5 ac029c11c994cfc84848a17a2da8dc51
BLAKE2b-256 fd0a55d0d2951a4b6d089592da01d9a5e50a7124e01bd78d267104b1f7b6d9d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43fb78f0a39a164dad740fc427a2157ba319c6f970691d08158ebb25f3ff02f4
MD5 69b347a0c2131f152487a81087870a96
BLAKE2b-256 5acdeb2bfe19ae6043d0427d3645a94890afd07533e47877b1f95923e20e3636

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba991b4c45a98ab8b97906fefb2f1a580506aba3c2ec5778d13e8741d4251556
MD5 c3d25786c29da6a90f5c37eb70ee5080
BLAKE2b-256 4daa56053901e1a79f9db00d0989f41f94acc3d405bc98f89c752f37d34c13fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.4-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