Skip to main content

aiofastnet

Test status codecov Latest PyPI package version Downloads count CodSpeed

aiofastnet gives your asyncio networking application an instant performance boost, lower latency and higher throughput by just adding two lines:

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.

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.

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.

Threaded benchmark

Source: examples/benchmark_threaded.py

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.19.0.tar.gz (407.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.19.0-cp314-cp314t-win_arm64.whl (436.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.19.0-cp314-cp314t-win_amd64.whl (502.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.19.0-cp314-cp314t-win32.whl (445.4 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl (590.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl (582.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (582.7 kB view details)

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

aiofastnet-0.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (573.0 kB view details)

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

aiofastnet-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl (512.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.19.0-cp314-cp314t-macosx_10_15_x86_64.whl (528.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.19.0-cp314-cp314-win_arm64.whl (406.8 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.19.0-cp314-cp314-win_amd64.whl (457.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.19.0-cp314-cp314-win32.whl (404.6 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl (572.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp314-cp314-musllinux_1_2_aarch64.whl (551.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (565.5 kB view details)

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

aiofastnet-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (543.8 kB view details)

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

aiofastnet-0.19.0-cp314-cp314-macosx_11_0_arm64.whl (479.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.19.0-cp313-cp313-win_arm64.whl (392.8 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.19.0-cp313-cp313-win_amd64.whl (450.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.19.0-cp313-cp313-win32.whl (397.4 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (570.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp313-cp313-musllinux_1_2_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (563.4 kB view details)

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

aiofastnet-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (535.8 kB view details)

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

aiofastnet-0.19.0-cp313-cp313-macosx_11_0_arm64.whl (476.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl (490.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.19.0-cp312-cp312-win_arm64.whl (394.7 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.19.0-cp312-cp312-win_amd64.whl (453.5 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.19.0-cp312-cp312-win32.whl (399.0 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (574.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl (547.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (568.3 kB view details)

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

aiofastnet-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (540.3 kB view details)

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

aiofastnet-0.19.0-cp312-cp312-macosx_11_0_arm64.whl (479.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.19.0-cp311-cp311-win_arm64.whl (404.2 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.19.0-cp311-cp311-win_amd64.whl (458.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.19.0-cp311-cp311-win32.whl (405.6 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (569.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl (550.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (563.6 kB view details)

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

aiofastnet-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (544.3 kB view details)

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

aiofastnet-0.19.0-cp311-cp311-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl (490.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.19.0-cp310-cp310-win_arm64.whl (403.7 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.19.0-cp310-cp310-win_amd64.whl (454.2 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.19.0-cp310-cp310-win32.whl (405.6 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl (568.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl (550.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (562.8 kB view details)

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

aiofastnet-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (543.5 kB view details)

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

aiofastnet-0.19.0-cp310-cp310-macosx_11_0_arm64.whl (483.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl (491.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.19.0-cp39-cp39-win_arm64.whl (405.4 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.19.0-cp39-cp39-win_amd64.whl (456.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.19.0-cp39-cp39-win32.whl (407.4 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl (571.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl (552.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (565.3 kB view details)

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

aiofastnet-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (545.4 kB view details)

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

aiofastnet-0.19.0-cp39-cp39-macosx_11_0_arm64.whl (484.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl (495.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0.tar.gz
Algorithm Hash digest
SHA256 adc8888141407f03fa590aafff61da6e49b069a7634a8a13040029bc59234547
MD5 d0862dae94eb9953a61f961c26584030
BLAKE2b-256 257aefb643d18f0c9831a23fbef4c845ead5c9731262246298a0ca43ccb85daf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8d3857845bf000eb5f3b59fc72fbbf94893c34e5dd6da991320228637e6fd87d
MD5 6ef73f552ad0693c03f1b3a7e7b1b79b
BLAKE2b-256 b732d0976b24a72ce6a203c550d0ffbb7dcb6950164bce114a25de87102345b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 354be9cafb6a33916c8d47e9ca43acb9babe53e938cf77a5f3da79b3db7a4221
MD5 3b2a9d340683c9b2789996524bf82e79
BLAKE2b-256 c1d75bcc6695b0843aef7677983633c1b5f00dfedbe8a3f062525d7bfa882a14

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 735472e2b183a10173ddd9f69a18a7ee9b888c5bb697e15ed2c24af73cd775e4
MD5 fc4a07cacf0e670bb83c0ace223943dc
BLAKE2b-256 c74f9ddc1bc17bb8212c08ecef80a13eb1d9ff98a4a00dc33648dad50c9b3f83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b21cd86d3defa0bbcc7c4e2cb7567dcdf5a48978ad6c976e84dde58947cce96
MD5 2bb24d6fa9d615c8ae47643bd8c3e367
BLAKE2b-256 eab28e0099375967f964b15df5fc930b1599016187ff91f873deb353030dfed2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddea964729a5bb9e5d26f359bbdc677828e419a59dd3e55076d2edc70d645508
MD5 bf4e2b1299f7917b279f87d86339a3a0
BLAKE2b-256 c436587ed1e31ca75b6921276b215acc0df9fa73a9a6262da3c65cd0f4537dbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 707b2936326c9d51cfc40c3e99fa7a11f637be7027382e8c5c1b1ebb5e4e0c9a
MD5 4b0e129be87f30d0b5cb47c1b0b9dc06
BLAKE2b-256 1daf95e7d2bd5fbe4d3a87f3939d81013e5c493410d00f3bfa65582032fdad0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f309353a4eb10a541bb8395e06143d117d49a2ad00efcf2a7c929f1709d47e36
MD5 7a5dfa219ba347eed6a4f8b273e93692
BLAKE2b-256 22ad060beb1dc760e479cb7e94efd9296442a2f321b10a6cf919aacad5c7a112

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 254cda6189af79dde5efda40b39dd170426f4756412ef901500d3e3c33ca61b4
MD5 565e9d738070fd1f3c18f3dbeed1896b
BLAKE2b-256 a8066a0f8177a8468a30ea5eca25c522efab13f73fdf6fc906881bb67a067936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 27e282049d0897a32a39283ab42ea540e3c5b6510d08489f34d34ccea7261e25
MD5 e5c30d0f8795905b112582f7f3d75497
BLAKE2b-256 0ffea60434c9c818986192f932f336e7c3a036808832caadce4ecef16a0b8fb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4a1b9cb49fc42de5de8645dfaa76aacc6f31a4c4aeea46d3d10be52f2d015790
MD5 b9e67e3cf960d383230842b509cba754
BLAKE2b-256 7cb01b3c573791552e108fb539aea61a5ba9d9b026dd7f5d4a87cc2794df20b4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c6fa56af910a033b463e2a3b183185ef01f66ccbd35449b2cbf3571258109ec6
MD5 d54dc42b23aac256b36e5f2138e3c23e
BLAKE2b-256 ed1292e465d8aeaf5032a3a7b3d6179c1036fc32b83c4d6f42902d21f301adbb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7325268bfc48485931fe71629f0f30c3601d1f73bd59a39e0b9c8a76c38554bb
MD5 a85abe8aa1e2256c7413a171396fffe1
BLAKE2b-256 8e327b8b67e111c6ffcfd1f3b198d98b3c763892544007e75599fb5ae0cf48bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d87fe52b623b5a47cf9190f451fa842487cf447f2e4389a8612082d329c45f23
MD5 08229a3c4212bdc02cf5ee96bf6c8f8e
BLAKE2b-256 ac483f4ef7c0867b1a2a2b6dd746b076ea9e82339ca78bb38debb93a985293c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5af2fc7a437bb6296a14658a6c9fc5a73bd77d32bf66420a1fce4c2ea0904182
MD5 e2ccbe440537688d8a26cf3ca7ec342c
BLAKE2b-256 b4e1c320196b9bdae0bf41c396e2cc2d80f8f217d1ef49194106352864f157b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4154547d56637f595ea695d66fd97e225daca5f42b3091596d1979e61daf8532
MD5 1ff501064721a05f957576d5559876b9
BLAKE2b-256 db7285bcddc38ff6f7ad47e5eddecf6c590999c3c169cb4752d0f081841cd7b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 394c7517062673464ee8a6a853930d7541a95efe06ea1f16b1b8366c4c763565
MD5 861af4518cd87a23ea42a2fc97b56d28
BLAKE2b-256 a2a4b9f2e76438dd65a2b7538c7f1650cfc0f629a2a0cd8b49ce305a036bd283

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7272b9ceaa16fcfb79c9d7516efd7188d331188f97278f7e572e49d0afbae8c
MD5 9bedbe510ae138d953616b180b813573
BLAKE2b-256 d79d3e44aee777671d9b1be9689c2515a79a440d81fc5ec0f5d00322bed2a4c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7bbc362e6abcda914d56043dc4dc2004ad79d233962d14f4c346a2c5ecd2984d
MD5 7162a148ee4e30438b03decea501181e
BLAKE2b-256 95919d53808217e4b858b7f759626acf0c6303de3d6eec0f6d26418ef2df3260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 062b469ae2c7fa024ed46b59e561d367716b23385ffd3e2c2fb79213ec389703
MD5 dce2a2a976775f98c71c455ec3b074c7
BLAKE2b-256 a1d29022b8a5cb5c75abc16cecf2c67f022aebe0038f67774a701be538d20035

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ed34c30159864bc151dba9031220f507cadad662f26bbfbdd4683ad0f877dad
MD5 a16222c02d25c1b54f338da6796ac436
BLAKE2b-256 5f08150878a9eacf9ecde0ffd0380fa6dcf9d17c7aad5e72e55a03bff0a3aaba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ddab774334c8a7f91921b56c3bb3dff3e90a3f2098becb0ed8234e5ed672796e
MD5 1437648e693854e13a2417fd81a9cfc4
BLAKE2b-256 7f2e6ac2c48d9b530498b8d47dd65fafb9cf7d1b527732c148af98c44d306352

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 400a4be67dc691151849e15c35839ece6329f4ea9324498d84e69e8be6aa930a
MD5 f6768bea75de437fe41da60e535a805e
BLAKE2b-256 f9c8324bc91b51375c5a5f510c9dcb9730532be4467e553faf5185662636c5aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc5f7f596da3aef17e7dce3fe90319b9244fd44636c36617e94cafac8603bbe1
MD5 e89d9257004b6e775adbc683357f2bba
BLAKE2b-256 69e4840801e373a8e40515d629245b7ae0dcefcb6045ed22120ef70f218b8024

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 581db61032ee229935baa4a2aa952bb83be0c9b67a5d282e831a4696ac505165
MD5 09ad7b9d8403b1c6e75c90d8466b3590
BLAKE2b-256 117eccfa556ebbf51e6b4b92ab4132ac31851a8e7d4148948a48e58a58fb5574

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47a79afc0d6b467ac3fed041f029fa431df72e32f08e3a6a79219681c7671c98
MD5 3d58c3d23c5d47ec1f693b888be15aa8
BLAKE2b-256 39b99c77ffd5f6f7ec8e5a70334076d1f372c5b2cca72d40cb46c87e25bb286f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 730eac02623e7d15efcf2a5ec47a5703ce4640c60bb3e28fdc9aba245351df42
MD5 aa52554f5f4c9aa153175c133567da04
BLAKE2b-256 925021d9a4ce66c0d3b3b8d9ce9c8aeee74d8956ec0a9ff03414197121817a4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 00a6da4ea3ff5af50ecb737c62e6c079fdb3afe07fb2c2f0869013eba3d90d5e
MD5 acf74da7d5e2c5929903b412cb491ee8
BLAKE2b-256 407afde831672b0ebab0b57db93394212b36b444f3fc29697f52f15305bd1a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 23766c6b942b9d50aeb9b581259f43a6e628d724a81a850d8cd453ae8186eed6
MD5 1335218494f67fe9eb4558231f30efac
BLAKE2b-256 9c26b4e0166972f1c4b263e4be2cc08211b8ce79b41e34c8564887c536534758

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8caf4b2dacdd413c303047d54ba14ce9576681b067c7c0c2a77cb9d9f319e10d
MD5 7c98d1f050364f7546e4bddde3d9f8fe
BLAKE2b-256 219a16a5bace2400f332c670e4b7a5e0fa50d044dcbbe289876a8adef235ee14

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9cad1f13dae7f05db61b119c6bb9988f75b9532ebf76634076c7ea39e8f45b47
MD5 3394b4bf10313d22620469d46391ebe6
BLAKE2b-256 c34a1f4cd6a31af635f81b8a9ea689bf009e1139c9de602082c4df7899b87198

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 03e341321f7560620e072c3d7427171674ec3693d25dd7ca0d3b2dd5ac0a98eb
MD5 ad0a4b1142ef3ea4bd7ca195160ad254
BLAKE2b-256 3969fd5784a0f4c8fa0730ee25a70cfefe21d6ce37f1808346dcca163e4c2e26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db910c34f89a9ad86dcdd0a3f66573ed79979f18408e98c5138b3eb3931a8ce5
MD5 53ef129b3df2701044bc304b77386a74
BLAKE2b-256 63659edf5a8166d2fc67b3ecf4efd0aa93566b7329cffe0d663020da1b5bccbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bab66587f1496ceb269f1669aff6e8fcf82a91527b0b306a160440f23ffb757b
MD5 9dabb4d7fa1a7b73c7f9d0ad23f763dd
BLAKE2b-256 f6ac5d83e244b28705b7db17ad770fe61f59196e2b2fc2cdb0a37ed271c2ecc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dc3340adb5c6027d0b9caa4cdcbcb6d265f9bf44be8432f4f78f83981a2840c
MD5 c80fecee1ab4b807ef78bae6a08f8d9f
BLAKE2b-256 d2c5bc819728b72cdae9ae0a191f248300ddf4f978cd5e06a37cc0a9e0978028

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 239d66224817d6b8a0168b0e0cd8570fa9c34bc9f0f5b32914d4c8159e30e8c7
MD5 65b2c5106188bdf10731bac75244c364
BLAKE2b-256 c4c1cdd5a09dbe8a7fcd60bb128f50cc1b429a043e5ff0194640c6e595da4e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 11f1ce613363de80fd1a3acc19ff3d8d6e13628973964e7c53a90718bc3484fc
MD5 59cb65a2bcf7a736f5bb498fd7ac06cd
BLAKE2b-256 673f603783c47dab92b76c1511c384806ea607401ee8395b106087602a1aa31e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1dd53e99610555d16436d090aa3327de8b9ad67e78abee93b588b851df033f94
MD5 a0df159af76e3326c717b02c2cd42867
BLAKE2b-256 31a2c2dd28937039235a7120ca6be84a5ecc959b441ab91f5249ce122b3f5412

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b785985342c584898337cdee08599df82791defacd4efd16e3e7599d4b73dc93
MD5 ace78597d1beb1c4b787d4e2f2cab08e
BLAKE2b-256 964b7ea688ef0db2cd0769c038d3d78b464da0cf89da4ac9914e5fdd3d87cb45

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 41479411588e331de0a12dff9523d74ea7d938ce06abd95e42958d57e566d543
MD5 0c26e34345220600bce60c5f053be8dc
BLAKE2b-256 07ab270ac51fd44ad0735150eb37f31aafe510312cf7f9e78d67556a6f215b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2b41d8f51ab69b6cc6d40cfe397c6f70d66d418aa7d6e3d24f305d90a5dcf99
MD5 8949b3a89c51cff44b8e7a397e954584
BLAKE2b-256 80a975ff064d18f7a1475946482c0b2db72f47cd8a199bc602c2f8b61b710801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 244d8c4367a6009b47de9a18b13cf177b7553101d2b67d8703bc57265e9005a8
MD5 4c274c6b07901d21930fd0b747c3b0dc
BLAKE2b-256 542d15d454943ae5489fb61e68fbfc4e7bc653cafb734034c47d8291bf9710f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07941ab955ad6880d0ee00cc86b00096fe3da6bfbddd6b34649dcd0b77f59849
MD5 433139a03c8a10c5b8bea56480ae09b1
BLAKE2b-256 cf4fdd2912dd584bd36215782e6030de80e7f9b060e77e7d248b17b2be8f7703

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b69745071af187e097fda616d26f1ca4c1fdb5250ae7ad9e372ed89cb3596cd4
MD5 5a49ba41bad5eb3dc519ce81200d9c9d
BLAKE2b-256 00c418683381f019d203e49ed1b3d22f756bd654a8cd61c5a7e8e78c5f60f5cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eb8b7e9b89be78bad4565ef693321697ddd391578c3fe5cf3345955e2d08700
MD5 8d8837cc0621584d84879d8e846190d1
BLAKE2b-256 93a1728684223b4dabe2c1ccd7298e4f0cbb5e35356e26070145596d06272a23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fd5e2d9d8f4b4bda2a1851c8815c4224e59204f48f68113f7a87451eb00e4fd
MD5 e355dc6a8231b290af24131ab1b96627
BLAKE2b-256 1c9aa7beed5f2a4715aa50ea39409b31931de62c2e304e041fcfebcc90f8db87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 938508b9703cde7051ee4a16630fd88cd7e8a8abeb4f493287fb94348447ac56
MD5 2c9c241b61ed64c017a016fda95b2d7f
BLAKE2b-256 fce355ec28104ab415544db93dddc3974298c328e5b8c759840efeec9bd5229d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f6937ac1a7c66da3a754a33d38c96b4439906019c71f24f9ef6fafc4239b40bd
MD5 e2d3e75207ff2065b82a8b85c1ff6c5c
BLAKE2b-256 6bcbfcf2ed3eaea6174d4a8b8473c872c66ef4a42fc85ed009a94f33d894eb42

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 852e8d904915f701caa32c787ad6156de5a1e305bca23f526991466d3708a983
MD5 ef523a246628b18b1ae8c95aad8e1d1e
BLAKE2b-256 497e482888706cd9e76e7bd33048ce993fff9c441ee19a2bd3a3f1f760b5b007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d96e64df08bf7cf3387567aa4e40773785ae33c76865fb74023d8dd295df3d4
MD5 6e2b1b59599a247bcff619d66ac72306
BLAKE2b-256 a3bd228bdb653a44e8bf1a17f4fcbcb3bb8c83db9e9156bc794b6cae0fdc2abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 849dcda3ccab53e969101d72a13f21e7f4dc81fba109554386c194205c212ce0
MD5 bc290206b6a5ef053e6426f853ba8fd7
BLAKE2b-256 d20fe744002b583550f6704cf2fc725f86e5dba9cfa5f12b4e373e30b3a8bc55

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 210646f560e57200f69a0bd7ffd67a8568b53ebd513734b26168d4f3653677b7
MD5 41ad44f49b19663e8884370ccb898c98
BLAKE2b-256 e8ea4035685c807175899e5824a44f6867e9dbee2cf4dacb8c2e2dd6471ff043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20da14aaa8c162778a14f8ac21b6167599f0910ab8d66c99d625b177bae59e86
MD5 255ff4c58b36f17d9d470fe9f1abb9f7
BLAKE2b-256 e97e2152ac4af9fb35fa95ed8990b3fcb6723b1d03b17cdbe3859bc0d73a2a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f3332147dce618a76dbbed30c19e35b8b36cbe3ec01b10dc87ba150448cc363
MD5 ffa86f8011d1f27f00aa42533053aaba
BLAKE2b-256 8cb83e868d64e039d492405f3fb72c9fd05048d9c5033026ca18d0eabcafedfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8e7c585a5eff9e53b68d8cd1676bf596f9f65240c113914836445c7fc6d9a419
MD5 085e7a6ae5c518cb480371becbcf3e8a
BLAKE2b-256 108a25d783438e26cefcf80b7556988e02f0d1059a23824d1909c5ba68bd733e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 dff0d64800dc087ed356821621aa37534b6de0f8f319ab09a422b3fd8915437e
MD5 5c14408e247c0f1b66a7bbb488f5c83f
BLAKE2b-256 7b46dac8cf751a2f430ad83f2d1b88ab9a374509c96ffe59276ac378267a931a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a40cfb4090bca80babfdd350bfcf0dc0c1424920543548f7bb209003021411a
MD5 9c0e9359b07e32901986838c2e997ac8
BLAKE2b-256 f7d43ba62aac23e0f57ac65fe75be788b9ae2ae30134384213df5954096f6d89

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3aafecd1878bee3c3893817d0f7431ecaf1a9490e5830adfa3817b307ba3a0c1
MD5 9de556a7019d64bfdbff034a7052462b
BLAKE2b-256 dce83295f1243ebde3952b9292697cc8337c7a99bbdc13db3f8a1feb3db1e100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb5d66ae5ca6d7633baeca8676d8407ad1b224effe1bd451f7d04d2356b67625
MD5 85022e8f3a29be45a01aa8211554b031
BLAKE2b-256 278b542c43213ec11807a6583663b76856558b3334515786c64054f93e423271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e68585292890128ffde7b5629ef6eeb0b9339107a592c35b111ec1060bdec5a
MD5 4a86aea77088e641e820417cc613e7f5
BLAKE2b-256 c9eb2ca461cff7dc76cff7118eacf4f54c2ddc0a861367a354aca76ef53c97e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.19.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.19.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.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8612de66272c73de23eb31631a09d86c6aa857a1368b2ff109a7950a864345cb
MD5 29bc00d47ca7f2392e55e0ecaa928114
BLAKE2b-256 0d8cd22a7bd164691bfcaabb4448546479864eb0f2e0707c9c1c72d9741eeae0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9827bdbda33b69343a4e5f9da75ecc6dae763eafcc1abd567029116b9c43eee6
MD5 7e51a5bd6efde5dc7e7c838045d05a8a
BLAKE2b-256 c17333be15011185583749995e4cf2120b178b3de0109eb65675c6084d4591fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 000734e14b723eff771fa8e01415e68775e9859829da2bd5094cbac50272f52f
MD5 c261de33eee30920d3f08dacdbff4c89
BLAKE2b-256 993019fa9bf74329e11ebac69a82ff1b583f384631725b9cd52548eb47c7dc04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84db6a93664a04ce9c3082ea1d6d7fdeb037e5058ce072682298cca20675fdc5
MD5 d1d046c73a5db7a80d203c3a81392db8
BLAKE2b-256 24fbd6e5c6df950d80e22364629096be2d58145e37e897f8d02327469c4b692f

See more details on using hashes here.

Provenance

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