Skip to main content

Fast transport/protocol networking for asyncio

Project description

Introduction

https://img.shields.io/github/actions/workflow/status/tarasko/aiofastnet/run-tests.yml?branch=master Latest PyPI package version

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?

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

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

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

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

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.

When Not To Use aiofastnet

aiofastnet is not always the right choice:

  • If your workload is dominated by very short-lived connections. aiofastnet focuses on optimizing the data path after a connection is established; it does not primarily optimize connection setup cost. In workloads where connections are created and torn down quickly, you should expect little or no performance gain compared to standard asyncio.

  • If targeting Windows ProactorEventLoop is itself a requirement. On ProactorEventLoop, aiofastnet falls back to asyncio’s native connection and server implementation underneath, so you do not get aiofastnet’s custom transport implementation on that loop.

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 asyncio’s native connection and server implementation underneath, because the proactor loop does not provide add_reader() / add_writer() hooks required by aiofastnet’s transport implementation. For transports created through aiofastnet, a compatibility wrapper preserves the documented write() / writelines() buffer-safety behavior.

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.8.tar.gz (151.5 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.8-cp314-cp314t-win_amd64.whl (396.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.0.8-cp314-cp314t-win32.whl (337.9 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.0.8-cp314-cp314t-musllinux_1_2_x86_64.whl (410.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp314-cp314t-musllinux_1_2_aarch64.whl (401.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (406.0 kB view details)

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

aiofastnet-0.0.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (397.5 kB view details)

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

aiofastnet-0.0.8-cp314-cp314t-macosx_11_0_arm64.whl (350.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.0.8-cp314-cp314t-macosx_10_15_x86_64.whl (358.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.0.8-cp314-cp314-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.0.8-cp314-cp314-win32.whl (282.9 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.0.8-cp314-cp314-musllinux_1_2_x86_64.whl (394.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp314-cp314-musllinux_1_2_aarch64.whl (380.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (389.9 kB view details)

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

aiofastnet-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (375.6 kB view details)

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

aiofastnet-0.0.8-cp314-cp314-macosx_11_0_arm64.whl (327.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl (336.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.0.8-cp313-cp313-win_amd64.whl (321.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.0.8-cp313-cp313-win32.whl (277.3 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl (392.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl (375.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (388.3 kB view details)

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

aiofastnet-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (370.1 kB view details)

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

aiofastnet-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (325.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl (334.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.0.8-cp312-cp312-win_amd64.whl (321.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.0.8-cp312-cp312-win32.whl (277.6 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl (395.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl (378.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (391.4 kB view details)

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

aiofastnet-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (373.8 kB view details)

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

aiofastnet-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (327.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl (336.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.0.8-cp311-cp311-win_amd64.whl (320.5 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.0.8-cp311-cp311-win32.whl (282.0 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (381.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (389.1 kB view details)

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

aiofastnet-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (376.9 kB view details)

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

aiofastnet-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (327.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl (337.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.0.8-cp310-cp310-win_amd64.whl (317.1 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.0.8-cp310-cp310-win32.whl (282.7 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl (392.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (380.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (388.2 kB view details)

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

aiofastnet-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (374.7 kB view details)

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

aiofastnet-0.0.8-cp310-cp310-macosx_11_0_arm64.whl (328.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl (337.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.0.8-cp39-cp39-win_amd64.whl (318.8 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.0.8-cp39-cp39-win32.whl (284.0 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.0.8-cp39-cp39-musllinux_1_2_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.0.8-cp39-cp39-musllinux_1_2_aarch64.whl (382.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (389.9 kB view details)

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

aiofastnet-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (377.2 kB view details)

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

aiofastnet-0.0.8-cp39-cp39-macosx_11_0_arm64.whl (330.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl (339.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-0.0.8.tar.gz
  • Upload date:
  • Size: 151.5 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.8.tar.gz
Algorithm Hash digest
SHA256 12c766890ef8494d37aaeaf6c31727f57c507f936317899100cde5baf2d1242a
MD5 a7046edfc30e22f60a1b41fe0da4e82e
BLAKE2b-256 67401cef186c8e757f0b87c52a19a2a268782abaffdbe9d43373adc682a7d840

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 396.0 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.8-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 f19c66d1a586782198787da9e105a37f7985f6932bfb4285be937701df7a7194
MD5 94c13da1a19737199d4a3a194f05f7e0
BLAKE2b-256 5932a52b6b75f9d2281bb907538d435611e83b3bb9457f10e4841325a7c1bff7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 337.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.8-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a41087e3ce2b5c3d6d53fa7e7850e802580e26928bdc1cf00fc94e41a2625b30
MD5 f43e6519660dce32e64101ecff2e454c
BLAKE2b-256 58cdc2b02d12332d518724f10224e59b912641706fa91b2683ab94dad77f5738

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 490f9b3d9523a824dd46b7ca577770471295d6b36225de6d5b464a289911abaa
MD5 64a98ca7b2e8a09cbab392d59517aa05
BLAKE2b-256 a58db23af9233273116bf16f850ee94e4746f8a2226862c82bbbadb88e3180c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0b03cf988d794e32782508a525fe4ec1f32838fbc2cf4fc764e4e904a3c8815
MD5 f09afe8fa55460341228304c1f1630da
BLAKE2b-256 0a38d36c598c968398153c0a84ecfb095553558305c2964bced76cb884953e8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 01f5b340526515bea392c2fa2b10887a11e35903f1789762614f9988ec015788
MD5 d18d1f2af114d3e503d3653c042c922c
BLAKE2b-256 bb36f589b17b8bf9841de17fee657d0f2f1660aa9ab8055b3da2e3a8b6b3f113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b293ba7b3ceda73de773fd6e26857ab1454d56691637950e52d7571a603f4a4
MD5 0a2ca138a35da63c46e938fcc9dea5d5
BLAKE2b-256 a471a3c26debf384cf2d19001d12f73da800a6c926df282c1c4a19137dde5e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d121bcffbb8615982d0ec85a7f969a36b3d1f87e4184e7e82277001ff4636a5e
MD5 eaa1ca2967a3b09f2af18912e1775a08
BLAKE2b-256 5ac3fe62447f6023de79f1b85920797750112285898c44f236c9f56b0a4d531f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3474c988acb27f946ace38712b7db39fc12d7f35761aee340db21c3efec908ce
MD5 02648425c7aab93d970f22141c5eba00
BLAKE2b-256 f2614f7e0091d453adaebbb1aa9f8763e709612034b2b5a5f768579cff11a75f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 326.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.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 16605b122a56d29148e139a6a03e949fdc7c538fdc6d08cbb2bbe21ce28aad1b
MD5 ac4d3e72b16dba26ab7a8ea43eb41ce1
BLAKE2b-256 7479bd2b6a58015bb64b16a622c74da088990416939f3a15cf066ba74d30db30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 282.9 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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6fd01132c9262e74d6c23174d858fcf91601a08252bab8c24828a49b4945dc62
MD5 682383bbec45ba938ecdabd912e13212
BLAKE2b-256 7f758168de291534891d8ea9d79f54ac38de02c2f9a8b17eaac88596ec295abf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73978766480df2654bb5f6b4d4edc6af0c48dd40f56128451c916acc56bee5c1
MD5 4297d7d1045df1aa68eed7ada771ae06
BLAKE2b-256 63197553af1bef4684d2102653301b9196fafc37deb5d0cd694911130ad16567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed17ebcb56ef8c53b0467f65843e4f06554f546113845f6eb6da829d0e6fae1e
MD5 ebc55c003c09100251bc69e9eb018e45
BLAKE2b-256 4a9e51008d1723d389338a0d50eaec0b069b4c958f683322293c00e19e9dc8c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db3464944eb29f308734d73e8db6a69801d862304b175117863ca7f19feff8ab
MD5 1ff57ffed6bd33a2d8586d6c233719a6
BLAKE2b-256 9dd9af6d8701bb44e253ff46b3e8fbae275253673a8c823f162775efc5440b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fce265c0eac31aed65dadf145ac5a988dbe92a30d6655d7111544f23cf03cc4b
MD5 c04545fd43c3ece34a2bc7e92114fad3
BLAKE2b-256 3a9f38b5c0ea1f73534440fb9d9a56c3bed0d896489039830a007eb5f04e737b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78c84b154f17ca77871be5554d919d16e7aec3b888610052b4266ab77ad64052
MD5 ea586c512a416078748c3fbd1f84b93c
BLAKE2b-256 ca5a412f2393945494d05697757f2013ee4211aea3188a6ac6a5d608a9f239b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6af0f96479e5ea8d3f10f014effa4eb06e95197a3400bf881f66d75a09fe6b6d
MD5 35b5b59074e396b6da5ee88792c3771b
BLAKE2b-256 84081ed8064da37eb275641a9e9e33d438034001f5a933634ca34a67a201e4e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 321.0 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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7e0a5271776896d9b1896bc36c47beecb10541ab066f4f5945b447b8c370e471
MD5 6ab1ad67c5fb0656fcec812f0ec97e5a
BLAKE2b-256 fbc9a774e0245e89dd32f0ad6cf12d2f90f886e9a151263f0f310730c4e5004e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 277.3 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9f999b43eda29a388cf22e3b5f149efb0b14cbaa4114b83d39af021b3ece2cda
MD5 5ab75abb50532b7616e92a9046d2266c
BLAKE2b-256 bbcc2298b979708ae20a93c2384618c53be9bf1ecedc7d6c4e3ce6a751552e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dcdc697ea7b82941d1505fd62659afe704618ddd08f62feb1f191e72ab7d2f7
MD5 3f3d7ebd78e0299d6c25aed1d91c5953
BLAKE2b-256 1906428ee20cb40aaf293fb47143c576ca3992d39b09ba8f53d0f412771e27ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6367879b4120231d85211db3434587f71b78f40f9c547e97dd9a52b688261563
MD5 1d5785e657b704bcd945bc23d411d7ec
BLAKE2b-256 789177712cb9aba35a2d552a461931506e4e1db64d74164ab83c47f7f2fd7cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0281f9d75eaae42d049dc1c2972edc7a5d8b9f1e6b86e51f2945fcaca7dafb85
MD5 18ed192b0857b7286a08fd48f1ca6d75
BLAKE2b-256 8c91d8c6138a507777e5b051b6c6244d9010cfa1909c00ccf50b3b70e87fe6c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f4e947de4a774c5c1112c3ac5b73551db2a6ba42cfd5d45196e6fc2d9f54639
MD5 6768484766c643823a6638f22d4fe3ee
BLAKE2b-256 a4d7fbe17e2d096b5ec28ad81184f8cf606ce99510abafb0c7acfe8c64dcd7f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f820eb4acc68646167296536090ef08b525a06339eac8b00395715792b2887ca
MD5 a35003913edf6f296cc714c98e58bd6d
BLAKE2b-256 6991c533f24795df4e87da28f9e19d303f45f44fdf0edb0cf4460f7bd5ae5206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc661a21f3e3f38428c598c5582e2d12ce5d7361e7a2e5d0833def8b17e70436
MD5 d7cd97faa388a4f02a4f383ed34aba86
BLAKE2b-256 484d6db3942c7ffa8e320cb01e5a6c717d93adc0d73b891eee9b7e166150d6ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 321.8 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da57331daf357a97f499e31a70f8394fa55265e1346c66f20b4deee6ff04279a
MD5 c2a0e0900356389729e769a5dda52f86
BLAKE2b-256 0d3e1cee9f3b78ba831d36ee9846e33b9bb849d98059022d3090f6e61c12205e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 277.6 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8aaae777d45f182d5911bb08fcd39640cac98bc8b958fd4b9f3b5a054d4a52d1
MD5 94c3ccad1175b3c4cd8f1ab7c22965df
BLAKE2b-256 5007425a5394526c803c31f7d37782bd7bcaa15f689be78171a5d5d6d80e03d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8e1219477f7d7c95007a9f79826f8e628626c7815d68bbff9f7436a17f17705
MD5 75525b93ed4af5e53cae1acac1f984a0
BLAKE2b-256 3a1379b77cbd3029fe8b5028e18814b0ab63a767c5a440e947e2c863472399bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3db6448570efe7266c061d24528de1a96008b2e049da05d9d4237f8685fc7303
MD5 4d2cce9fdd50d3ce434fbdb6ec7ef2fb
BLAKE2b-256 0d9831fe4a988b62d86eac12fe58d7b4dd637514a184a077a76bdc1ce5aebe29

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 158ba67a9ac8c5ec63a2671f1363ec55babfcad34f5f42fd3bdc88383fcecd28
MD5 b2cb46e4eb0d5f2071adcc93583e49c0
BLAKE2b-256 e9a02f4a79b57d20a3cf92beb371246e6b78627eb633dcdf65f7444bd2a21800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbf1b61ada474bc677db6822fd71929c3148eeaf508b6daf365f8f3b7f7ff1f9
MD5 86c7412971d69b256e684e4535574cde
BLAKE2b-256 f5328d90ef368039fd4a968798b0bca4c1b423807b8a2ee485d29c38a851cfff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd9eadea9b1f017f44377021eaaf9e69b93ac6647584713dec37707a62e32ab1
MD5 455ba40d299fd4015943efc62cee2a37
BLAKE2b-256 3d882d661d8447ee5e2d4b83d483545700cb41452ee6adbed7959bb9daf371f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 26bfa94cde44ebdedbf4a108f6e9e43c516b10aa8954a3eefd2631275b264d6f
MD5 b8e432b2549c50d2cf5d0eb42b49570f
BLAKE2b-256 29693c993362b84289b652495e2b39b7f00c9d4b7aed7a31a16c53e0a6c81e07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 320.5 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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48836e761b99f4aca0db3b62f9fa567c7376c689a7f3fb9fed90c3020f73f745
MD5 9cc4419d120c69aaf1a8732db796eb5a
BLAKE2b-256 377ca0f9f6b81323a8c47c76be1a6bbf71a8257285f5722aca13cf7f0632b4a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 282.0 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 da78890ea92e1549d64c07cbf3e13ec8e9b5b64ed4ce43178668f4ade5a34bf5
MD5 26021706c8fc2903bbf7c01d6ad7bda9
BLAKE2b-256 b61fd504a2ea460d267b70b0ee1e5079391502d60b81a15b06112c69ea5d0f74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1062bd9f066bdb0ad8f46399f04197cc5f60b53d5db7ee53fa42fd3d809940c4
MD5 a1d92ac34e34ecfd50ef627157c498dc
BLAKE2b-256 0e646499ad613aaff988e2b3499ada0a390d9dc9e61a6a84efd3eb19d7996087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 616519c1b473b657053e44f97b06659930b25d54832532dbfe023c8e6b49335b
MD5 6ae0e5cef0a6319ff3d1df87461b94c8
BLAKE2b-256 8802b356222e252d12aa8df7278336023a964ff450089a0ad46cda87fbd2ef5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44090797cf0521fd11402cf4669641f386b688ce713432ce4d5af2d8fa239e83
MD5 58c66f267a81ee1234f6d93d35461aa2
BLAKE2b-256 64b2326f8c92df377f1cc350a065b5683b8f262400993a9b448cf7f9cbbf6edc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c44cbb8a91981352a0e76cdcad16aeeedbfd0dd75ba75cd65ddaafc006afef8b
MD5 c4cc2f3ebcef93bbd1299e04380f9cbe
BLAKE2b-256 7b1b555da2021d7f3adb0557f3af59a48d38b68dc9372b78e2b1243cdae1e2c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 876803ecd8e67139b09d454540084eb9395b3cc62d699f994d403bbbc31877ed
MD5 216abf3cd3b0cebc9ebaa2754f8398eb
BLAKE2b-256 cab58f3938f784bf9874740d022386d083a5cb2a77df18f0e079224dd6ad125c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7a67f83a6c0508848408e07fa42d3e48f8223df196d2ec05117522adb603cba
MD5 28efc82b1e33a408965adcbd4b53f7db
BLAKE2b-256 5e4aed450eb6578f153cd7782f77159579c4de0f13eeb26de5d7809e929ee65f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 317.1 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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1b0aec988394aeb69aebacd455238500f3dd72bebb82193e9b9b522c9cde621f
MD5 3db7f235205e31077f48610d9c2a1723
BLAKE2b-256 57d53ef35acba4df8000f397bbadbac5aacd9af97bc91f3eab6b397140e7e82f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 282.7 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a8a1f92329588227181655db525eed33fd77c8657170b82c8833be136a442705
MD5 b7b3e5ef39bd1d6a9053780bd3e68c8b
BLAKE2b-256 2f1a10591a04e77acf99ff2f1853c9256eef27d6cc7bd956e1d63a3ef71ff684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30fc1f8a7275368bccbe65597a9e027321d5ee3d2485e9616e2d82ae4f99e24b
MD5 533edd49e9a441f9f9b2987c305ca5e2
BLAKE2b-256 a1d05f9c8efaedc7b5749c52c456b25765d5f3212993c2347341c342c95fb324

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67fe927f86aecbdd415882c7c5082c065cd8fa9071c61d0ae61de45a5e978b31
MD5 70b81647c33bae1bf41d5c26281beb03
BLAKE2b-256 3f85bab52537ff92549661a2a01a824981f0f68d68d7eff6c66b842422b871f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1d5b7550bb4ad15d191b433a898059b27599526651d0f9f582f84540d1ff7551
MD5 c566336a59d1eb424e4dc8830350b99d
BLAKE2b-256 0c94363554f16cd2070e7d8f37af38ea2dda8285bc5cccf60c6a413fcb59a8ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94f042fdec4ecbfac2057a14bacf4e3187a5e4715283f0a23e1bf16ba6ee7c29
MD5 ec325f560caaf52c2b028d508d2591c1
BLAKE2b-256 7e6e2c29c0b41f3a571ca48e31bc68490f19e9148a2f936d2ed9292c81d78e6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1316591cc1d236857809342a9167005d23d2354e234f89496546b4d7a64eed2
MD5 028a4dbd6a948503465c26f67c7f5025
BLAKE2b-256 e62f78ea85ca5aaf21a4e58454cb097e6245634f702850438314d7fcb6874480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0e36ed2f7bd8533b539e8dbf07bc6f7d17ab3c72ccc55572941440f6a6841cd7
MD5 d12e0d6d2156bdc20034d3a8f9204eb2
BLAKE2b-256 fe8759581eefad0573eebd2ebe350950b598559b7c400e237424cee344f32fbc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 318.8 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.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f1dae2236df32e18b308277af2ed63d495a1be58e69e93a254d9e604036c7e9f
MD5 b2a77438b82ec0c11e95b9df97270602
BLAKE2b-256 9afb3fd29043246c6ac082ae7319526297be0555262eaa1cc4059ee65b9664d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 284.0 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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a042d006216d2b341ddda7219d22b433bafac3607cd6fee2cc540ba58c38ace2
MD5 748beff41efa3b941201eed593cec946
BLAKE2b-256 dba5b97c4b0e2b39475be77be252633ecb15863f9d6431c3245881a915425f55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76e68a1c52dd1fae27fad54ee95455f3c6593decf6fcef0b077bafce62c1f76b
MD5 d59e389189dd283bb430490041bc345f
BLAKE2b-256 9857d2cc2e06b2fe8c878704b00af01912d4820089119f07d22a1b20b1f024fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e177943a06e1212663cd9e7f08db47fc8569ca58ebecc160c4199a1772adb62
MD5 9ecc905e6e1a367ea6af5b7c168d1ae5
BLAKE2b-256 c823bf769144cf1a7460222cb4058717a98c6f8c8b9de8b9ec6b933e5476020d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.8-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.8-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.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8916ab64a2e9152a234191895b0b6ef43a24c374021cd19839b093879f3107dc
MD5 8093ee913e142d9f1bf7848b97eb1871
BLAKE2b-256 b4d49e585ff203b323dab8d88d06052c0d7f3b2d10e38155216a298681e990da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d209bb97ed2b72f21e0b9b3f25cde1a9f7e5fb051d85dd0113494bf6fc52c4eb
MD5 fb7ba7a3f2335e2c8459429455fe67df
BLAKE2b-256 21c9e960245bfd4845a6ae88c3a89e669505137f8ab6282ae3b6e12b5b2b5381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8562d8aee7fc2d62f677e76c4bb0f21b3ab723371270c97121448655c4bb2757
MD5 a48e568ab9aafd1751a964ff6a5685cd
BLAKE2b-256 7adba817afb27ab7aa5ecdcf5c37082305af035bc98772b84bde0847c8779eae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65cc4b41f781a6de3bbeaa2c5361613879a897e825be5fe263dcfd23f601570b
MD5 eb964cfb294ecde35db2ab21d7c92886
BLAKE2b-256 8bcda4c0483912a8501ce7bce48aa66c1a5db5b2e663b232d9df04848f17a13e

See more details on using hashes here.

Provenance

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