Skip to main content

aiofastnet

Test status codecov Latest PyPI package version Downloads count CodSpeed

aiofastnet is a very efficient C/Cython drop-in reimplementation of asyncio's loop Transport/Protocol layer. You can use it with your current event loop (asyncio loops, uvloop, winloop, etc.) to improve overall networking performance.

There are multiple ways to enable aiofastnet; the simplest is to install it before calling asyncio.run().

import aiofastnet

...
# Call this before asyncio.run(...)
aiofastnet.install_policy()

Are you using aiohttp, asyncpg, websockets, uvicorn, or any other library that relies on asyncio networking? They become faster if you enable aiofastnet. The difference is especially noticeable when SSL is used.

Benchmark

The benchmark below compares echo round-trips over loopback for TCP and SSL. The exact gains depend on workload, message sizes, CPU, OpenSSL version, and how much of your total runtime is spent in transport/SSL plumbing.

Benchmark

Speedup

Source: examples/benchmark.py

In these benchmarks, aiofastnet is up to 2.7x faster than standard asyncio and up to 1.6x faster than uvloop for TLS connections.

aiofastnet is fully compatible with free-threaded Python builds and scales as expected when multiple event loops run in parallel across multiple threads.

SSL Threaded Benchmark

TCP Threaded Benchmark

Source: examples/benchmark_threaded.py

How is this possible?

aiofastnet provides drop-in, highly efficient C/Cython replacements for asyncio's:

asyncio libraries use these loop primitives to establish communication channels. The current implementations in both asyncio and uvloop are not optimal, especially for SSL/TLS connections.

Calling aiofastnet.install_policy() replaces these primitives with aiofastnet's efficient implementations. From that moment on, any library that uses asyncio networking will use aiofastnet.

aiofastnet is not a different event loop. It works on top of stock asyncio loops or uvloop by using low-level primitives such as add_reader and add_writer. It has no background threads and does not use unscalable tricks such as calling synchronous recv/send syscalls from another thread. Essentially, it provides the same kind of internal implementation you would find in asyncio and uvloop, but with much better optimization.

As a cherry on top, aiofastnet supports Kernel TLS on Linux.

Why Use aiofastnet

  • Faster hot path. Transport and SSL internals are reimplemented in Cython/C to reduce overhead on long-lived connections.
  • Drop-in API. Keep using the standard asyncio streams or transport/protocol model and familiar loop-level networking operations.
  • Works with the event loop you already use. aiofastnet works with stock asyncio loops, uvloop, and winloop.
  • Particularly strong for SSL-heavy workloads. aiofastnet uses OpenSSL directly and avoids extra memory copying and unnecessary Python plumbing in the data path.
  • Kernel TLS support on Linux. Enable native sendfile for SSL. aiohttp can send FileResponse more efficiently over secure connections.
  • Safer transport write() / writelines() behavior. If the socket cannot accept everything immediately, only bytes and memoryview objects backed by bytes are retained without copying. Other objects, including bytearray and non-bytes exporters, are copied before being queued. Unlike standard asyncio transports, this avoids sending corrupted data if application code modifies the underlying buffer after write() / writelines() returns.
  • Better SSL backpressure semantics. Buffer sizes and write limits reflect what is actually queued across the stack.
  • Works for library authors. WebSocket, HTTP, RPC, proxy, database, broker, and custom protocol libraries can expose the same API while giving users a faster transport layer.

Quickstart

Install from PyPI:

$ pip install aiofastnet

aiofastnet requires Python 3.9 or greater.

For applications, the easiest way to enable aiofastnet is to use an event loop factory.

import asyncio
import aiofastnet

async def main():
    ...

asyncio.run(main(), loop_factory=aiofastnet.loop_factory())

If you use another event loop implementation, pass its loop factory:

import asyncio
import uvloop
import aiofastnet

asyncio.run(main(), loop_factory=aiofastnet.loop_factory(uvloop.new_event_loop))

For older applications that still configure asyncio through event loop policies, install the aiofastnet policy wrapper before creating loops:

import asyncio
import aiofastnet

aiofastnet.install_policy()
asyncio.run(main())

Event loop policies are deprecated in Python 3.14 and are scheduled for removal in Python 3.16, so prefer loop_factory() for new code.

If the event loop already exists, patch it directly:

import asyncio
import aiofastnet

async def main():
    aiofastnet.patch_loop()
    ...

asyncio.run(main())

Library authors should call aiofastnet APIs directly instead of patching a loop owned by their users. The API mirrors stdlib asyncio: pass the running loop and use your existing protocol factory.

import asyncio
import aiofastnet

class EchoClientProtocol(asyncio.Protocol):
    def connection_made(self, transport):
        self.transport = transport
        self.transport.write(b"hello")

    def data_received(self, data):
        print("received:", data)
        self.transport.close()

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

    transport, protocol = await aiofastnet.create_connection(
        loop,
        EchoClientProtocol,
        "127.0.0.1",
        9000,
    )

    ...

asyncio.run(main())

For servers, replace loop.create_server(...) with aiofastnet.create_server(loop, ...) in the same way.

aiofastnet also exposes start_tls and sendfile:

transport = await aiofastnet.start_tls(
    loop,
    transport,
    protocol,
    ssl_context,
    server_side=False,
    server_hostname="example.com",
)

await aiofastnet.sendfile(loop, transport, fileobj)

When aiofastnet Is a Good Fit

aiofastnet is most attractive when you already rely on asyncio's transport/protocol APIs directly or indirectly and one or more of these are true:

  • You have long-lived TCP or TLS connections.
  • You run protocol-heavy services where transport overhead is visible in CPU profiles.
  • You maintain a library and want better performance without changing your public API.
  • You care about consistent write() / writelines() buffer behavior.
  • You want SSL flow control to reflect the whole buffered stack, not only part of it.

When Not To Use aiofastnet

aiofastnet is not the right default for every networking project:

  • If your workload is dominated by very short-lived connections, you should expect little or no gain. Currently, aiofastnet focuses on optimizing the data path after connection establishment.

Platform Compatibility

aiofastnet is built and tested on Linux, macOS, and Windows. It works with the standard asyncio event loop, uvloop, and winloop.

On Windows it works with SelectorEventLoop and winloop. With ProactorEventLoop it falls back to asyncio's native connection and server implementation, because the proactor loop does not provide the add_reader() / add_writer() hooks required by aiofastnet's custom transport implementation. For transports created through aiofastnet, a compatibility wrapper preserves the documented write() / writelines() buffer-safety behavior.

For TLS connections, aiofastnet has two SSL engines:

  • Direct OpenSSL engine. Used when Python's _ssl module is dynamically linked against OpenSSL's libssl / libcrypto shared libraries. This is the case for pretty much any Python distribution: actions/setup-python, conda, pyenv, system Python, etc. Calls OpenSSL functions like SSL_read/SSL_write directly. It is the fastest path and allows to use KTLS.
  • Fallback SSL engine. Used when Python's _ssl module is statically linked against OpenSSL. This is the case for Python shipped with uv. The standard ssl module is used instead of direct OpenSSL calls. It does not support KTLS and is slower than the direct engine, but still significantly faster than asyncio's and uvloop's SSL transports.

You can check which engine aiofastnet uses with:

$ python -c "import aiofastnet; print(aiofastnet.OPENSSL_DYN_LIBS)"

If this prints None, aiofastnet is using the fallback SSL engine. TCP and Unix-domain socket transports still use aiofastnet's native implementation.

If maximum TLS performance or KTLS support matters, do not use Python shipped with uv.

$ uv venv --no-managed-python --python python

Asyncio Compatibility

aiofastnet is a drop-in replacement and is expected to behave like the corresponding asyncio API, with one notable exception on the direct SSL path: aiofastnet implements its own SSL object, and transport.get_extra_info("ssl_object") returns it instead of ssl.SSLObject. When the fallback SSL engine is used, get_extra_info("ssl_object") returns the standard ssl.SSLObject.

For the direct SSL engine, the following public methods and attributes of SSLObject are absent:

  • do_handshake()
  • read()
  • write()
  • unwrap()
  • pending()
  • selected_npn_protocol()
  • verify_client_post_handshake()
  • session

Kernel TLS (KTLS) support on Linux

On Linux, aiofastnet can use OpenSSL's KTLS support for TLS connections. KTLS is beneficial if any of the following is true:

  • Static files need to be sent over a TLS connection and sendfile() can be used. In that case the kernel can read data directly instead of forcing the application to copy file contents through userspace.
  • Some high-end NICs support hardware TLS offload, which leads to huge CPU savings.

If you only send regular data (not static files) and do not have a high-end NIC with TLS offload, enabling KTLS may actually cause a slight performance degradation. In terms of CPU cost, it does not matter whether encryption/decryption happens in the kernel or in userspace, but the kernel tls module has to do extra bookkeeping. Also, aiofastnet can batch data and reduce the number of syscalls when KTLS is not used.

KTLS requires support from all of these layers:

  • The tls kernel module is loaded.
  • The direct SSL engine. KTLS does not work with uv Python.
  • OpenSSL built with KTLS support on a machine with suitable kernel headers.
  • An ssl.SSLContext with ssl.OP_ENABLE_KTLS enabled.
  • A TLS version and cipher suite supported by the kernel TLS implementation.

To load the kernel module:

$ sudo modprobe tls

To check if the direct SSL engine is used, aiofastnet should be able to find dynamic OpenSSL libraries:

$ python -c "import aiofastnet; print(aiofastnet.OPENSSL_DYN_LIBS)"

To enable KTLS on Python SSL contexts (available in Python 3.12+):

import ssl

server_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
server_context.options |= ssl.OP_ENABLE_KTLS

client_context = ssl.create_default_context()
client_context.options |= ssl.OP_ENABLE_KTLS

The OpenSSL library used by Python must itself have KTLS support. Sometimes Python distributions ship their own OpenSSL libraries, and those libraries may have been built on older systems where KTLS was not available. That can be true even when the host running your program has a newer kernel.

If your Python distribution bundles an older or non-KTLS OpenSSL, one practical option is to locate the bundled libssl and libcrypto files and replace them with symbolic links to a newer system OpenSSL build that supports KTLS. This is often useful with Conda Python, which commonly ships its own OpenSSL libraries inside the environment.

KTLS support by kernel version is outlined here.

Check out aiohttp_ktls_fileresponse.py and aiohttp_ws_speedup.py for examples showing how you can speed up aiohttp (or any other asyncio application).

Some other useful links:

Free-Threaded Python

aiofastnet is compatible with free-threaded Python builds such as python3.14t. The extension modules are built to work without forcing the legacy GIL back on, so separate event loops may run in separate threads.

The repository includes several free-threading examples:

Transport objects remain thread-affine. Methods such as write(), writelines(), close(), pause_reading(), and similar transport operations must be called from the same thread that established the connection. Calling transport methods directly from a different thread raises RuntimeError.

This matches the general asyncio model: loops and loop-owned objects are not meant to be used concurrently from arbitrary threads. aiofastnet does not add internal transport locking for cross-thread access.

To use aiofastnet correctly with multithreading:

  • Create a separate event loop in each worker thread.
  • Create connections and servers inside the loop thread that will own them.
  • Keep all direct transport interaction on that same thread.
  • If another thread needs to send data or close a transport, schedule that work onto the owning loop with loop.call_soon_threadsafe(...) instead of touching the transport directly.

In other words, free-threaded Python lets multiple loops make progress in parallel, but each individual connection is still owned by exactly one loop and one thread.

Building From Source

  1. Clone the repository:

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

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

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

    $ python setup.py build_ext --dev --inplace
    $ pytest -s -v
    
  5. Run the benchmark:

    $ python -m examples.benchmark
    
  6. Run tests:

    $ pytest -s -v
    $ pytest -s -v -k test_echo[uvloop-tcp-buffered-6291456] --asyncio-debug --log-cli-level DEBUG
    
  7. Build coverage report:

Building for coverage testing requires enabling line tracing in cython, which significantly slows down extension modules. It is disabled by default. You would need to rebuild specifically with coverage support.

python setup.py build_ext --inplace --dev --with-coverage
pytest -s -v --cov=aiofastnet --cov-report=html

Contributing

Contributions are welcome!

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.21.0.tar.gz (693.1 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.21.0-cp314-cp314t-win_arm64.whl (442.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.21.0-cp314-cp314t-win_amd64.whl (508.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.21.0-cp314-cp314t-win32.whl (451.3 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl (597.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl (588.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (590.6 kB view details)

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

aiofastnet-0.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (580.1 kB view details)

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

aiofastnet-0.21.0-cp314-cp314t-macosx_11_0_arm64.whl (519.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.21.0-cp314-cp314t-macosx_10_15_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.21.0-cp314-cp314-win_arm64.whl (412.0 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.21.0-cp314-cp314-win_amd64.whl (464.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.21.0-cp314-cp314-win32.whl (409.4 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl (579.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl (558.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (571.8 kB view details)

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

aiofastnet-0.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (551.5 kB view details)

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

aiofastnet-0.21.0-cp314-cp314-macosx_11_0_arm64.whl (485.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.21.0-cp314-cp314-macosx_10_15_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.21.0-cp313-cp313-win_arm64.whl (397.9 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.21.0-cp313-cp313-win_amd64.whl (457.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.21.0-cp313-cp313-win32.whl (402.2 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl (551.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (569.0 kB view details)

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

aiofastnet-0.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (543.7 kB view details)

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

aiofastnet-0.21.0-cp313-cp313-macosx_11_0_arm64.whl (482.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.21.0-cp312-cp312-win_arm64.whl (399.5 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.21.0-cp312-cp312-win_amd64.whl (460.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.21.0-cp312-cp312-win32.whl (403.5 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl (553.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (574.3 kB view details)

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

aiofastnet-0.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (547.2 kB view details)

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

aiofastnet-0.21.0-cp312-cp312-macosx_11_0_arm64.whl (487.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl (501.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.21.0-cp311-cp311-win_arm64.whl (409.2 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.21.0-cp311-cp311-win_amd64.whl (465.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.21.0-cp311-cp311-win32.whl (410.1 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl (578.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl (559.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (572.0 kB view details)

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

aiofastnet-0.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (552.1 kB view details)

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

aiofastnet-0.21.0-cp311-cp311-macosx_11_0_arm64.whl (489.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.21.0-cp310-cp310-win_arm64.whl (408.4 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.21.0-cp310-cp310-win_amd64.whl (460.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.21.0-cp310-cp310-win32.whl (410.3 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl (578.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl (559.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (571.9 kB view details)

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

aiofastnet-0.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (552.0 kB view details)

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

aiofastnet-0.21.0-cp310-cp310-macosx_11_0_arm64.whl (490.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl (499.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.21.0-cp39-cp39-win_arm64.whl (410.3 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.21.0-cp39-cp39-win_amd64.whl (462.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.21.0-cp39-cp39-win32.whl (412.1 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl (580.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl (561.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.21.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (574.1 kB view details)

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

aiofastnet-0.21.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (553.9 kB view details)

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

aiofastnet-0.21.0-cp39-cp39-macosx_11_0_arm64.whl (493.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl (502.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0.tar.gz
Algorithm Hash digest
SHA256 07f1682883aa1b99c33665ba758a100095f8a4bb96055b9202d2b3510eea5c1d
MD5 8c8a364ee2d48bcb463ec61868f33df4
BLAKE2b-256 1187b1f071aa9c787861a76afeb44fdf885c6cf63bd35af2da08bb58636c5c86

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0.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.21.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 839c4ae61ec8d98faef3f5df4e9ba3cbb85fbb6c2c62e1deba725825a50c7f99
MD5 501e8629e6d1ce5b1d2abd8797d01a85
BLAKE2b-256 0e0ef0960a42c61f2d200f8f3caf203fd9a433d559fd2bbc3cd4149189f26aa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 79334fd57fbda45fc3a9be8b6568e8e4aff8136a2c9e6ed14d82cb7a026be891
MD5 35a7339399272d74c282e5896604d59d
BLAKE2b-256 379162a2ea408fa00879ba6d21ba037ec08a71d4fc3524da5e9dead67ca5a2b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 df66bb56217d0a800b0dbb2e3a5e9126a56d39474ac6d06c8a7161cd5f232260
MD5 d5f688f6e5714b59528b9e3189f3e001
BLAKE2b-256 354d12e27770dfd20f4453c04a49f4fb1ff9309bbf2921cdb39f3eb5398bdfcb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1c9bd16ca3cdb39f30c3fdbeb351c6f287c232fb8ae9c2a5e40afdd107fb843
MD5 89c9746bd8e8d17e10ba176b5595c785
BLAKE2b-256 aae3988d4ff3de4ea13323949650907a54f8568c4fd6c8c435e1866283d29582

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62e32660073e48c3be5192b61cffa31a5b60edf59080517ba2b36c724e9c76d1
MD5 537342d2479ad86832c80822d736a820
BLAKE2b-256 6ad293ca0c8b697b93aa7ddf157c129cc718a8205cd95418860b92cbb508acc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7bd0b2d763336ffd0a9146f0f227805de13057821843934e12e5b6fcf9cb0c60
MD5 48ae0c1669a02f81c097e89844eab631
BLAKE2b-256 4d937f4e46a4e970517fc4384901deb2b92698eed96fde189e38ff96b2bbbe32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d89c6615bc85253fc3ecb76f39e379b86958a54a542b1b50c2a4ac7af1b4abe9
MD5 4d0c4ead3b8022acdf7c5a36f7d2124e
BLAKE2b-256 6496c291a2bcfc39cc84cbec6360cf6daced8b3a22f61c62cc213f0b6fb78822

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eb783a80bde7be09b0f97fb4729b3eae350ab698017e8b590e78162ba564d41
MD5 1741e5aadf2a1b24e4d25d8cf3091adc
BLAKE2b-256 8c139dea4c804bf443c427d8607c352d13fc57dc87d2f3509d00c501447ca5cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 32985b97b12f0f38d4c5010f1690e5e65e1813cd1f221fe5d5f3a1bf417451b1
MD5 c8a7a3b75329f949e9789d278993bb0d
BLAKE2b-256 840b36d15194a33fd3f37ad20e258bdc16eae6eebb0b5be2a6eccb5138e1d715

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9425567d8783587f844e571a656d3027f6e05efae04f7cd7b8e724d46c5fa3ee
MD5 99beaa3fdf495d3f89c2953e2465e746
BLAKE2b-256 a0eb857f1493a50c6ca393b7be52078c54710291eac25bc4e4817000f1f13ed4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e936c8b74bbcf672ecc7d85c89f3045602bee767cc35ac61f82503f216662e97
MD5 4e8e84f087a59177b35101473ca97cf0
BLAKE2b-256 79f0a4e0ac106f929e9eedfda3b41f558bd3d100b959eb9046ca750c33aa4e98

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e23b67edf80022191b477acea90033cf7bc5a65d0d4538c24fe275e437b42f4d
MD5 2dcabe871e18bae4e0d39a31c98ca250
BLAKE2b-256 39bf066a380a611b149cb16928080ab258482c518589d548e0241dbc81d68bda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0362de6a459b418a44b2028ec2e0d88cf0ca54aa0c544380b04e68e1813b7983
MD5 6956f2dfc416e719741c4bcc5ac2f0d0
BLAKE2b-256 ef8c12fbcc25f607e6f00459d905de490a232c3daed21b27b319feb75b59e17c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34bcf1b034f2abb8fadbc27f31cc9238d847d7d54aacefa7f162d9b0fddeb95d
MD5 4eeeea58cf413c9c54e542b2fb108168
BLAKE2b-256 7ca7a8b50086d2864f6e4934b2aac0d0829d9045c5ac229e02ead8ed32aab12b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb96033bc759007aadd64962cd96988f085c6c2093902f19d29569e7ee8e66fb
MD5 b1dd92638ced1a6dfede2549e0e03423
BLAKE2b-256 cb22a2b532a3234a8c0e07eb00b15c91c081c156648a2eec19325c7482873ef1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c095fe8649b27af27b5091f2aacf474f1329f9c8d65c7011d43cc65d41d3b683
MD5 0594ca42db6c50fc09e4f8696c45557e
BLAKE2b-256 7a048388a2b39a4b01be72f92ea14d1d20609c74c157dd7063602a9144e3c9df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c50a1a07ae54b7fcd50bbf24aff32cb2e903d87c654e14d8d06fe480954fd83
MD5 9c50340c3def514cc134052e36f21db0
BLAKE2b-256 e382cb44a1a7ba62c337f982922997dd4bb29dc41d6b44917a9667657b31faab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d359e076069f42e3cf3c3c4c4e0a27f7105a6afae33c4725c3e75a5b89f6ee28
MD5 a53f724e8e665a5fb04ab1e1ab868d3e
BLAKE2b-256 076a8b4fec8940abe2aee54271d3264564484af30f174697c66eeacbf8aa50f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4a3cc2c36da3559f1c7ce7fec472f4fec017ede95d4c883c40d8f41b2795a5c3
MD5 03deacc761ef2043b22f04dc18a1a5db
BLAKE2b-256 39a94bfc7fffd70a49271afb84d8a654d89c79cf7c7d34a25cbe59ec8dfbfe8d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8198517e549ddfc763acca32e29970f6cc7b54d23e2322161026bbd29f5500f8
MD5 f0456d6697069b7fcd98d7e006915ac1
BLAKE2b-256 06538b528bae918f6241bd6a79dfe77992a386b06214181efb6a9971ffcdf663

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3eb4a8c68413fd58de205fef2e1e7fefcec2f6eff5cf05074e0cd5e805b44122
MD5 03020de141c55b6537cf6616ba031777
BLAKE2b-256 924e70d1355ca9c508c1a227b13341f8c8020d2af2406dbf93109077c7b6683c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2e10447695b0076264e4201b4b9521d3372765dd48aa9e93f8125300d1aaa2c
MD5 d33bd1e4a0abdcf387852d873aa95831
BLAKE2b-256 a0ed9f5cacd456b1498b22de8860f7ad2d979a3003f448755436e5129c2bba57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e56b8dda16a4c7325b708f59eb80abe8178d0711e2c2867f1a7dbad5914fab5
MD5 161d0d9d91333d23465c77e48c5ab5a5
BLAKE2b-256 b4b70b24bf6ac1f0f89fb0263d7a7f9665a438d78199f5570df39217aa270ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb4d41272bed2cfc559c8912a6bcf60299844323adfb4f6f380ffdda32f8bcbb
MD5 3dde92920806263fb065432448489bf3
BLAKE2b-256 406f669d69a637e3cf48b53c2b4f7e2ff2321992416c77b7fb6915c44ebc6e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 428b13361d34ff1fae11798f7b908015cb8978810d9327436c6bc249d2cb7a51
MD5 6d69db53837c7e793b86d38d70363a38
BLAKE2b-256 b955ce2839c53714200b19bb176bf59364bc7499ec53cbdd887892ce40976a4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91f22fb4edfd3c07d0aa32a07a48782855d20fbef9992285fd44b9409eca3227
MD5 f82d579783cbf9581754b5031218a41f
BLAKE2b-256 9154e697d7571de68af0f3b5a643ee0291bfa9a42e8fd8a5afea4bc5f7aef244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e97bacece7a3fcff89336e78a5ee4e26612662e8c3afdc7189720ad2903efd2a
MD5 73f5e9cbcbb4da47d7f5e5259b04981c
BLAKE2b-256 f456bee3f233be4a557dbf0b81c17ebffa83363cb3843bb9451f85486eac169a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ee37c82d6d8c4b46ac5a1fbaaa044bfff297dc8742a239d1df196244ee9f2f2f
MD5 8d8248478888ba419f6b465a9967a429
BLAKE2b-256 8a457ab18ec04ab30ca7856a879c6b65c36ec7c9e9b0bdd05f411a8be36a46ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8842d97275d43f3db7e8a428bd3a13002d2c81e8980cdb1b57c59c750af88cba
MD5 6771f03bcd6f9ee08379b1a21539cec6
BLAKE2b-256 ae82a46c507cf942e69c2d1b05f17d1f024da33e2ab1ab60bdfca5bedded812e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 38fe5a09039317dc4d79136c78f3f006245207218a2cfc697c884cbd9f054bf3
MD5 fd841705236832c656c7d017ef101816
BLAKE2b-256 f88e1603ed553882b62bb1a91343598c0059f136c3d0fed63194b1998c302691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e87d914502487588603e2767d34504e37326e22895bebfaef0d0becd9f40f5de
MD5 302d49028607c892847f81ce32195399
BLAKE2b-256 824073d66b8dd2d6f8a194bfc93d80d12daf97b5c321602b5bc100c1a35fd471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3173fa1498d2988a909537a0ab12499cb2d6f1478ae91ce72dd8f210c2706fa
MD5 5ea2165c350ae7bbb8c598090ce0171b
BLAKE2b-256 02ea091272b046501626c0fc2ff806154613ebb4a4dc7923efa827bdbb232fb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41b471826f2df57d785be73612370896f334e292e9ba3857189f6adf1cc1c242
MD5 da93fab65f7e59062c0ec14b891d482d
BLAKE2b-256 e8a7eb2f385ec9cca46012e8c36f91d1d794ccf8fd732e1a81e242c7e63c7091

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b929fd083a9c8d14c42c6c60377f4f3b33281d6d04ff318a93ec87e567aa1142
MD5 55c567ef164cfef5fde9f9621c0c562d
BLAKE2b-256 dc9a7123a3d407a5fac546001f0466edc921304573b9b78c9705551461ff65df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7808d195820dad773fd6bed4a49afadbb299206e1cb5f302c6e062b10661b4f
MD5 bb66836b9e2c444df09d28b6ab58bfeb
BLAKE2b-256 29fd448c514dd14726f33c70447b9f5a4b896015c700ddc879de73059e55329c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f520aa78555020e72fba4826ba4588b571aa5df81fa4ca664521240d13f1ceaa
MD5 33dacf705f494e73d1309ac49dfc815a
BLAKE2b-256 927adc81df6472ab4e8fa3e369b8b83c0390149d0fdd4e56415a5ede5f9f2b5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.21.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 409.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2cbba9c7959156ba2eba946411dbfe634ced8299e3e8b73d085f9f5d33b37434
MD5 435aa52a12d38e90f3addb154caff641
BLAKE2b-256 9ea200b74fd9dedab3faae3d09a3274077843521a0ca4caec840e27e330502a1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e276d2b2452b1d29ef2c6faf13994c2a2cb18a4db12e0bbb1e13590ef2431e37
MD5 fdcd66dab7fd37a10a5c36d92baf05bb
BLAKE2b-256 9311fedc30a077332b007076c43481f9f18701595c5410c30a067f301b03c334

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2adb3be0a1b521c2d101d953aca0936e79dd0a3771cdb0ec6b282cf8c08742bb
MD5 ad1f1a030ce477ae4826023a30c8de56
BLAKE2b-256 198552517b2c923175a27fe5dd05e37816acaa7fb6e87892d09cd7fa2d4a977c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a082a9fabeb85f9fb00618bdfa9c557ab5d3e6e7ee6d5ed31ba1d7d583473b5f
MD5 81181ef45f1616c9d60c8cb037ad8fb1
BLAKE2b-256 ba1795c67c079ac0c0e30591335192420030f94f94c639ae7d46df1c0f915f39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8a9305f010658948c6b3b086d20ae576f4e63560ae4802bada27056ed8f3b0c
MD5 d44ee2a0656250a531e9537f94f75685
BLAKE2b-256 56bd743f5e9992378df4c2f5d993ad3081809cd48ead858390acaa4feef2dbf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3207768e912b7f565d81e6ceb86d12eb9e9e3b27698989e852edc1fc917df8d4
MD5 6404d438f866e2ab6f0425d3f26aadc0
BLAKE2b-256 212afc73560ffcc805752c53ab295f241edfd3c9c137a39c9b4a66122b88ae76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ff92004265b2198398888db4b89531a29b942b2fce1e3107b3e74cc40427f48
MD5 92a8ee4014792e90b3ed3d1ad3a53a4d
BLAKE2b-256 1ca0f3d10a71506e97c074f96548b96a9ecd84200592fca200aa941b1fe90967

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8097c59e08083a19b155a3d118e907732d352447bb9bc87f149fb38ebabd8f0e
MD5 f71576499294f586661cd82d33df5efe
BLAKE2b-256 835ccdf41d6190364ed4041d410eb358dc27ccb0fb39962ededfdb562e9b9bbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb91ad64d3ed51dde27f1f3adb37836b03a5699876e97467a9b5bd34686d67eb
MD5 1e87ca7b002931407fcaffc18af15da3
BLAKE2b-256 d44245bcd8cc8b9bdab557d0f540b73eb3cecbe8068b60b32f8b60c754b4c352

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.21.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 408.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 74b3f84c876037f82c57d57ae4afb437a250c779759f0457a6ddcde6fa786554
MD5 0f94af6a5de96cf7881c11f7a7504747
BLAKE2b-256 bd96f5170c8e5353a91d93763e7bb5c4813a668cbf3e4c9232837d9064d93995

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d2cd16c517f286b600b981cf83edf2679fdc42cc9bb8a0e7b9042a96e62b2de
MD5 6d737a48f471836453d3e6eda02424da
BLAKE2b-256 697c468046bf8db27487fd602cb1b9ad8e48a5a0cc52513b72672962642030d0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 271b52544de10903b90a26c623b53a0e98fc3a73caaae222a63c079e09296a29
MD5 b6e9bad5c6d548da0d643a5ca3410602
BLAKE2b-256 483b37154bc7f4712285ec9e8f41a5c343608ffa0724c0823b3e1321d0a0c7ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e4ad1d54f755d26085efbd68f7d0514172aeab0258a45667cdfa129a41450f8
MD5 85c5aaf7b6dfb96362a473b9876d0006
BLAKE2b-256 e097f232501921f691095f6bc9bf1df0f89cb371e2e93b7e0524a733b1ff070d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7d9048bcc5fe48bba4d1e4dba14f48506f0f6a339f406e9b2b78274e0be4cbfa
MD5 91cc4cba335cb831c8312d9c86b66321
BLAKE2b-256 10e7c2723520f67000ee55a4582356b7b9f95a4e571a48c5f381679173b57a3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45da268f3636c503d4711011aedd55453d01992a68d62d0c9b7ec63d0e2888a1
MD5 3aebdab4d3e7e88f9309cbf51188ecd1
BLAKE2b-256 fec6bdffc100ae523cda2833fa625ea6641e5300798dbb18eadc407749bbf1e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 69293e0c983d1869a1a754f700ab1894761eb53f5222e55a7ad7e2846ea70b23
MD5 c104bbd5fad539faa50e0a6cb0c31352
BLAKE2b-256 e0554750ba6099f0601f73a7d746bf17852715f22e20b78a3b4522279cb36c3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58581fcc18cd0c0e7489772b2008d9645dfe756aaa962cf5129ef857b6c4ddc2
MD5 a6cae51e8ba6ad45a85e0b7267ba3551
BLAKE2b-256 7172dd35e6853d46aafa1c5d4ad26c8687b739e23ac8e3f1d6db0f02f509e5af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a85f70b1bfdc45bb1b570061fdf42a57291ab8666d6664d4cacee8f3a31d440d
MD5 f86ba1f9588d54bffc1e921b1435dafe
BLAKE2b-256 8395d121c2bf3b9819d466db70b2d56614009b12ba6c5704431cdd8a785bc37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.21.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 410.3 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 9dda5b8f99ebb0ce2ac93382aa3e79a0ac11515d74e9a05d28ac46d39f1efb8a
MD5 80cb27cbb5e534088d63c8114fc79e6f
BLAKE2b-256 34e5e9f75efce150ded0e24dfac820d7a365b49024b9cb466233c5fa5fb738ed

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 48222e3ef2e5a1dc099f98059d789665f22c4308539acb38e4d1fe56f465de03
MD5 339a69eb167cbf2722255561e18cf7c1
BLAKE2b-256 79ead8cfb2913aa45044d6d34bbe92a9aa94d1d82ea0a095049484becbe4a9b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f2655c0c8267898c4db51eee3e5f72f4b1d04e7859f2cb6c212902d3847afed
MD5 5479e0b28db2f3d6e357a43e9b7a7913
BLAKE2b-256 ba165bf28b4a2551b2c70b219f0a76843f8eca361c747d87601785b99a2935d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f377e3238795519a996160c1502b12674ab36a2d7989d9c65310429a11891421
MD5 7d37f8a4b01d4e1fac9d5aeabdfe6cc2
BLAKE2b-256 c713dfe1b0735f5300b64ef1713123245e923cbdf1e3f1379c8b07779384853a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bdf7305b404dd43c16d5773fa670e3628a1eca9404d19bfe097f54b5e6b5b01
MD5 6700394446e1063886064d1e5cf36a26
BLAKE2b-256 621fc84a1c00b1d9bf2f1c5941394d6e4b9757887ebf0533d961d906663eb04a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.21.0-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.21.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0cd2434677f581b0ddbac165bc6c1bfb7d14e71bb17ded25bbf73f5450517d7
MD5 afc14ce1685424a82178f4d03cbcc743
BLAKE2b-256 ad982ccc37c598ddf9147dcd974a397d5237f9244d856170e260802cc2ac7fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 026ffea814cce8a616ad843c23fdc82fbbb33152a7e519fb6a6a0b30907b0a20
MD5 2a424be34cbeb221dceaf6e034a594b7
BLAKE2b-256 8f62d7e5fbaba5d26d5db23b7c59bccdafdd2c43f1b338387e5577bd75a4cda9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c598ac6510458e77374f2f7c1e7823b40c7159927e7dd1bc8fad093231a1ebee
MD5 9c767b7dbb6728440d091fa5ad56838d
BLAKE2b-256 e4f580750db71bfa29d1a4ef0ddc399a025abcffdcfede860c3bcb773462b022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbc868f19d60bafc89fb9caf97f76db647f09ae0f0e4b70dafafa0bb5c89e6e9
MD5 6758d75739091e5654f0767b4e1f28f2
BLAKE2b-256 36147a3466bf6d526447e6338f0f86c8af07e3f28e0540c87a86b6f9ead47a8b

See more details on using hashes here.

Provenance

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