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.

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.20.0.tar.gz (448.3 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.20.0-cp314-cp314t-win_arm64.whl (440.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.20.0-cp314-cp314t-win_amd64.whl (506.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.20.0-cp314-cp314t-win32.whl (449.6 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl (594.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl (585.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (587.4 kB view details)

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

aiofastnet-0.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (577.0 kB view details)

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

aiofastnet-0.20.0-cp314-cp314t-macosx_11_0_arm64.whl (517.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.20.0-cp314-cp314t-macosx_10_15_x86_64.whl (530.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.20.0-cp314-cp314-win_arm64.whl (410.3 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.20.0-cp314-cp314-win_amd64.whl (462.1 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.20.0-cp314-cp314-win32.whl (408.1 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl (555.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (569.4 kB view details)

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

aiofastnet-0.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (547.9 kB view details)

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

aiofastnet-0.20.0-cp314-cp314-macosx_11_0_arm64.whl (483.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.20.0-cp314-cp314-macosx_10_15_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.20.0-cp313-cp313-win_arm64.whl (396.7 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.20.0-cp313-cp313-win_amd64.whl (455.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.20.0-cp313-cp313-win32.whl (400.8 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (574.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl (549.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (566.9 kB view details)

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

aiofastnet-0.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (541.5 kB view details)

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

aiofastnet-0.20.0-cp313-cp313-macosx_11_0_arm64.whl (480.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.20.0-cp313-cp313-macosx_10_13_x86_64.whl (494.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.20.0-cp312-cp312-win_arm64.whl (398.2 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.20.0-cp312-cp312-win_amd64.whl (458.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.20.0-cp312-cp312-win32.whl (402.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (580.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl (552.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (572.9 kB view details)

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

aiofastnet-0.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (545.3 kB view details)

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

aiofastnet-0.20.0-cp312-cp312-macosx_11_0_arm64.whl (484.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.20.0-cp312-cp312-macosx_10_13_x86_64.whl (498.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.20.0-cp311-cp311-win_arm64.whl (407.8 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.20.0-cp311-cp311-win_amd64.whl (462.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.20.0-cp311-cp311-win32.whl (408.8 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (575.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl (556.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (569.1 kB view details)

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

aiofastnet-0.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (548.8 kB view details)

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

aiofastnet-0.20.0-cp311-cp311-macosx_11_0_arm64.whl (487.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.20.0-cp310-cp310-win_arm64.whl (407.2 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.20.0-cp310-cp310-win_amd64.whl (458.3 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.20.0-cp310-cp310-win32.whl (409.2 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (574.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl (555.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (568.5 kB view details)

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

aiofastnet-0.20.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (548.2 kB view details)

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

aiofastnet-0.20.0-cp310-cp310-macosx_11_0_arm64.whl (488.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl (496.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.20.0-cp39-cp39-win_arm64.whl (408.9 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.20.0-cp39-cp39-win_amd64.whl (460.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.20.0-cp39-cp39-win32.whl (411.1 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl (577.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl (557.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (570.7 kB view details)

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

aiofastnet-0.20.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (550.6 kB view details)

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

aiofastnet-0.20.0-cp39-cp39-macosx_11_0_arm64.whl (491.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl (499.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.20.0.tar.gz
Algorithm Hash digest
SHA256 045e6237b57aaaa3aa6377d225ffa8c324c53fd8108028335ba939f7bdf79c64
MD5 a87135ec1d07cc06feda29b0e794bd78
BLAKE2b-256 6fe26d2dc23f2007b866a02ee657b1446590e47a3d7d4ba0e8f5bb2b7a94bd1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6e19d193e213bef5ca4c111308c6997ca294fe595a4e31fdf3b177f467c5db38
MD5 a4780796571ec24f73fd2e1720aa8069
BLAKE2b-256 b945b07cf5ce453a0d8fc8bd3ee3b04faf15a14ac3de54144a41c6e5a46ba3ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 38421569e8b1677a0bf313695a4458f8d051d08f49d7976c22e199d107622f13
MD5 0b143e27655009569740a43443b37f88
BLAKE2b-256 878ca85437066913f7fdfd1e2bed26b9a32de5b72999ec61615a9a063040653c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 449.6 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.20.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0e2c703ad71633d92fb049f524e6ade06148d230e73dcf7f2d8573d6b10e635f
MD5 1515bb36701a3a34051cc2dfc5610fa9
BLAKE2b-256 fda6bdc04f706d70db4b6cae58038a33dd4c87b80b4401054d453a7e627ba4eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b04806b54a792757da452ea7bb84cd68f67a936db368fffdb410616288fa233
MD5 e4d82415482bb9b460457224a0756fda
BLAKE2b-256 5a1c32684312e3e6b350469dc151eb98f8923582c23b392d78cc8fd7bcb3e600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1fc86d0baf151c955532e385af48f7864ef50f14d69ece35a5766c062ec457c
MD5 9a2e299f7b89fa35850d09b29cfd4331
BLAKE2b-256 2870fd2bdf4de9faa9fdd1de477dad15c3494ae4db45d1f6253625ec8e4ed25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88503730357f54e4bac1b9bd02d9ae3962bda891447287681fe4f3045fc0d60d
MD5 08e13417bd6a64b626af073ddeeeeb3a
BLAKE2b-256 ad1851247f48f299238d94fd03b85c3f5cc42e753e8a4fcb0813e806b44cf38f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6277889a22de5d5b36ea91c2950d42401a8eba51aef6fa6b567518a3435ee01c
MD5 3ac721697c05b94f8b4d9dbb9b024092
BLAKE2b-256 3fca9db5313666a5022be9eb05bddf2d4f8571b7e0a76e9b0e0d3430a9df3023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3195f1e267e917b1ae7274d28edad2d03a4ac3d6698896bac83fbec26325eb
MD5 4110e3d356b3366a2d16bb3017d484b6
BLAKE2b-256 606beaee8340e3af2ef34dce952318469b057bb53b68b99a925c887070cc28d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b4131e1bb287eb10f28768152c376d23da1aae8c7ada20b5731ff165b583d87
MD5 6eea5ceb17452bd0020e4afdf8791625
BLAKE2b-256 ed359e5245e86e57756e71da8b364fcc34d3b06b9090b6928802dbf6608cbc77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 410.3 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.20.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f58bb8026778986ee39cc08914fa9c39419aab4cae756990bfc774dfba33b407
MD5 8f99a6434f55af82fd3b84151a3fbe0d
BLAKE2b-256 77ab5872bca58be1a428fb0b276d1d9da440675d0ebfd0506b79d96e7e2b6d1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 462.1 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.20.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88efff9d6c6c40165208d8ea104bf47ea068d8367a699a8ecef9975d6bf0c416
MD5 443f6136a0251bbbbf4edc2686c7a1d0
BLAKE2b-256 823e3d45e27dcfe9fd539a203d4337bcf2afba2598b98a9354e9b7f841f33f94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 408.1 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.20.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a082692d97bb3005d268b5b801d297275221a87f7b7af640716f372f4485e3d1
MD5 a3d608575cded37ebdbd6c78431e9f41
BLAKE2b-256 a872820f791f15f0de585366f9b8853a574782024fd4ed648c3ac833f67f72dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebdd5317ca0930e9f2116ff6585050e837f67eae312d4fc0409d35dd1f3ae515
MD5 49e008fc956772e2fc4fbfe5a9238e79
BLAKE2b-256 55ba79580b201aabef4512b71a4629bbf760915d7039d258ab964c1ababa30b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da4aa6d5b41a08d3ca80c8ae19dbe8d5f6470878bb3d8e9a5c70b0db8482f4f1
MD5 3961dd70fe82c6668f3fd1e8639d6adf
BLAKE2b-256 6e0c5cd8e434f65d57923383de4d666407daf9c4f801862531cdc81fa9f61c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d2e9c2ce0802c71c62ccad12671c2bbe4905edb34664a093681e9ab0961bc9f
MD5 2c0d5450575a1e30bdc3a708efd170ed
BLAKE2b-256 f1da96d4bc5f6ce26b63e1e9f7face3d0e6b991fd6efe297fcd08ae0681caf38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe2a8f953fb5dbfbcb7c1f54b084154cedac11295dcbb5891fcbdbf72904c667
MD5 d395712e03127a4ba1aee47798ada489
BLAKE2b-256 4ededa113a07853b3a81dba101eae66161b12f7b5a197103036935c3fc2a520d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c53bd94f062ae1db95f49bf54127db6e63ed08b9592ccf12f60898463b5dca2
MD5 9a71a7d091b47b142a1e445a19295992
BLAKE2b-256 175edc3436a23799b9523450833d06219d879d7337abfa95e8f715cb78ff194f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a5ab7ee9dd32e712ee69e4988249f5b39b85217c4d9e3dc2aeafafb55bc7cb0c
MD5 733b415e33e5a8d1ceedef88f1e2d061
BLAKE2b-256 60adc810a55cb232fe957bc7a1f9886072c9976f747c1cca389933d679470526

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 396.7 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.20.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 281ece92fbef3d0343e732a4a58771ba769a7a8bd665bb434e8dea1dfd35be8d
MD5 2c3817798378e2774d8eead112bfa299
BLAKE2b-256 e523f40f47f2d3eb221fe7c939e64be40a08489d301a204e9a2f77973296da9b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 455.2 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.20.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46bb3a2e7c6ad789e6447a675479a16b663a5eecbdf9b2aa30ae1dbf0b10b464
MD5 dadd5a196f304f8979cab6c672192efe
BLAKE2b-256 dbe3328cf8062873b1fe6a95c7df4f58a5027f47a572ebb5c3ffce94aa67cf52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 400.8 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.20.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2a218957e235b934bfe992e3cb215965253f6b6baaff09822a63ec657b9ed884
MD5 37dd34949c43923e03fe44db2c750fd2
BLAKE2b-256 753307d36ead246d6ccc8168511bde88e42015df8f0fc43be458ccfb8b175e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4271a47c594b834d1d99cb8b8b55c0f294ab94f03e707eff17da70e77272da2
MD5 7fd80205f48ebe365918081110759399
BLAKE2b-256 98f14d9583431506dcd2cd4677d000d06e2e756056f751083f82729afb89a02c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86b0a350b954638d40233c07290ffd364d251a037d8080d1e5731ed0d6c3727d
MD5 d97d24ed47f71a7e2d9ef2f25974a0ca
BLAKE2b-256 553c68298351d1b21e85142d035f7591c2976ffca08e9508e4c75a5b27c08d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 502657096b257946ff4992f6f0aa668e3427e08886e68e8968f5978850354399
MD5 2789db0ae9bbe0cf70d60c2e78c7dabd
BLAKE2b-256 64eb2dba093b8a1bcfdfc5344878de998259e4af58d47d88bd99fd8f98c6bb68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5b4b9fc4d6954760963bc2f3c074f7c8e5fa435891546de515e791e962e89ba
MD5 7f39287c98c9f78e8b6d479f9d98340a
BLAKE2b-256 ac3ab5bfee03711a6db082f796e5967974e037d5c21aa89ae4bd7df0528d9411

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d87d9e67a5371a0791ab475cc282568ec986e637c0b031db1fe425a10702d1
MD5 27c6917decec69a10f7d5d2be781f104
BLAKE2b-256 459b7db3208d6b6f966716ef6719ce0cfb868d6fa6c04642abb6d8fcc8e3dfd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c9568e50258ace1deaa8bf7ef4ee555e22609e171ab483b09fee239b21a55c29
MD5 e7daa11320fd106a814ef1c4b83fc8bd
BLAKE2b-256 6a99f2a1c08d17c116bdbe7a41b5668f8b93763ec34b69fdf5e35ecf0503625c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 398.2 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.20.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 78c634f23288be51f2f77e58dd62384dd5f8078424c8258daffc07a4bf493bce
MD5 97658f3a9e70042e3b76b3868d997458
BLAKE2b-256 7e6273fa380a576b2e9e8fd5a5622940352a6b2d770b8d85691f494770a1f944

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 458.0 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.20.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97a3651686bca4d61ff0c1a6ece6bf2099862c6f1097a5de167f0e83215a48eb
MD5 cb8fe16b65a8a8734d5a9ad50a860ba3
BLAKE2b-256 77434e81cafe1d33fe66cea9815fff25c66f6556776d9e86351f75c1ebede174

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 402.1 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.20.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 479facd8d40eb4431cdde4da493cd0146965e3884072e0ae1d3c487988a1f411
MD5 417472ada3502ef6c2c1cb75396e1577
BLAKE2b-256 617519834a9d86336627038ecf8064b728f68bdb745df3fb91e873b2cee869e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4dabf901bc16bb9e7e1fe451a5f357ce02daf5757e66c47cf46e51559a9fc90
MD5 583f822712d77a493c40bc98829eb776
BLAKE2b-256 2f465d4b7e0d83da4a6a7aafb50a6a004b43d4b69e24b304254b80a728a24c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec7ab5429f212c22f9ca802cc725fddb98b526aca4d21251de4be548ad051a53
MD5 9397d14334191b2ef337fa9999729f13
BLAKE2b-256 737c27b0c37394c5c605fedb8fafc9ddd3e635033e1e547022bfb578e17ea975

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59071e6f59ee787d96d9ab13dd574b06ac3291a60c6d360ec539f63cffc55390
MD5 0c1f22f08776961c077267d0401448c2
BLAKE2b-256 fe475e9b2fc1e58576f5b1cbae49bfa981802e0777c4f416f3a66c3a725f28b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 020fdf30eda37ad323c474b8c419b4f1f33328cf1869848d216d47c6db137835
MD5 703ccd5f1e7cd6337146377af2b83af7
BLAKE2b-256 3da3c26423f59035d448c15aacb0514e0ae1c147664aeb67d45dee25829aaaca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d66eb026a92a9143652f1270ce135ab930e5890a11e3cc7c1e5966fcedce20c
MD5 627fd2cb1190bb6f21380f6559c33688
BLAKE2b-256 858b63115725c9201834caa9ad4d37ef5b11c8783d619405c58719fa0e02fe6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 83f86b8e20e44bf27a2d8ff0a97620e11719d85fa41ecf3db4cc64f556054d71
MD5 a1262836095062f131813b4403ed49ef
BLAKE2b-256 feb96b41ffb6ef5e448de2408bb74131b2553edc2ca6550bdc8a74be6972f0a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 407.8 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.20.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 506dfc48c4452d48661d8575f7c3f836bcfe178f32d200b5132fc9f59137112f
MD5 76b96ad72a0c9c39208d8c7d0c1e52b1
BLAKE2b-256 b4dcb4be129e84e3d3661ddae97027ade2a2a6458a09d2970f05ed84d36daa04

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 462.6 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.20.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 87493928cb82c0f125d8053dc0f2efd6f10f4796770e215024b7c7e3613f9214
MD5 91beee14b23d380333a8d5a78a22cb01
BLAKE2b-256 4833a4831eb3db936e918b3c7356cc365a46d035583a5a81bea5dca6c25a36e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 408.8 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.20.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b3e45609b39f2d25b473fa41850d91e2b1f65196a76eba0c89b6cfec941a2015
MD5 0acf43622881e82264d22bfd45315906
BLAKE2b-256 de15b0bbabe7ebe1d5cee49358568ac45552e4a351e07ca44b52b44ac48298a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a7561cb64e0f03feb9fa014d105e6bb73a538d90f57686b4ed5ff578539944a
MD5 92b0cd271a8bde1181d88a3bfd3f62b4
BLAKE2b-256 87108438299b54848f79453805d44a0035217ddf324cdbdf4bfdbb85787393eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a84bb9d55affc592c07a3ed24737e7b34c15807c1e031711a72d91592afaba6
MD5 0029a3a66de61132af0ecede68b4b7b2
BLAKE2b-256 878fbe776f34a4bb85b765f02febc218906fb182190f23660c7295aac39e7ea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c263e4534644ee2debe831e8ebbdd0af40847c7a35baccdd87d52b13a0eceb4e
MD5 e1b0d2c37c8a84f50a5fcb3dae98dbb1
BLAKE2b-256 efeaf96878cf3f76754f2d9abab4d6c098ad468b3f289750547e07a65408c4ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 080fb53dcf182df078b03bd3bba846168444d5586b02eb4810cf29dec18488a8
MD5 13b0cdbb81ad2347aef9906e57d9390a
BLAKE2b-256 664b45e9f8da6441fedceceaad22a089f1dc95731fe52993a59f5d1ff94cae75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94053904781157c7fe420c9f624cb70ee82fabb48871d35a517b3cc82ec49880
MD5 7f4c29b681aa98c6f6fa11625188f848
BLAKE2b-256 5a9e9e6172f73ab390e1b55d5354b09855eae929b4b26c5d52ec7777372dca80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7bf5e302620e927fefb254cb3cedff9252fab67981b71459546a4b87574d51d0
MD5 b774167c748e976dc010d8a82dbd3eae
BLAKE2b-256 6df8b48ff75b5ed880684e3ce006009d92f8b4416803f5929b9e378e7d371b58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 407.2 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.20.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1dd3dcd840f5e47b3830fa1ebf6248a2ac3bb9dfbebb384d0e8b2e3bdd58a4d8
MD5 66afe81e7a42102329f9497539a20c39
BLAKE2b-256 1e443f6d739782a880e6c221d3a2124574bab3a882335a8ad647ac1a3a5f267b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 458.3 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.20.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 342a308ae6d7d98420909a041be79c1ac43c7792144bc604ac1585648dd0bbc7
MD5 0a7005532f1b3c69401ac2812fe9c6c6
BLAKE2b-256 ceae29b774ec3498875ebbdfbc3df3cd175edf4ba9eb5d27966376a856d98ae7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 409.2 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.20.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d70f28144786d18d0d4c3c4961e053abc7b3e7d55b4ea021c975bc213c88a096
MD5 ff1a773c24c95dc1be8145345d9c395d
BLAKE2b-256 555d7d04a6d9691e5dcd2cf2e2ed0d210530d0b616e904c436cb19c665be871b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e626724763a887f6160cbba7dc5bbdcce1537f47c039f4a1784dec4e5e13846
MD5 d780e22ff60f0be98ff7530813b049ef
BLAKE2b-256 d23dfdb7c8038a167b41caea38256fa21d254dba60860e3c6592f7543c93f937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 449d8a858af568669d53bedee7c8655e442ed4bd945bfe95e13b549d290f954d
MD5 26943ca611888cd03f3dc76ae2292795
BLAKE2b-256 bebcc3783287dd6124f1cbe35056b85437cd3bfaab7e606138e34a5ab96a9089

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5321805d2366df265d0db3a3723468760932332365c2d5ecb1c82ee73291620
MD5 12fde3aa12f49e4a6800760ed6f5db5d
BLAKE2b-256 1e14c461fac618a4899665d07d78aabc5f4efc84ba183ec4088e3d2c3e4428e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c13622d790ca766b88a1e9f2fe6ec69fee0841aa4d520e145eac66168e9c6c03
MD5 0b10715ad01fcc7cdff8529833d8b375
BLAKE2b-256 35ebc48d922eccef5635221cc0c4439cc35284ef04b6caf21623a86cb4d6b909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fc5bdcdc873ed6123fc1b3a501d625d46cf2460585c347d128b092daf619c2c
MD5 8db03a0e0d86bf26f1148e0e43a259cd
BLAKE2b-256 af3f3ccd44dd99ec50d5f8bb5c43bc564ea1c8fc465fe251fe4348954e622ecb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9b1cbe0f4f888d36244697b14ac0ef55df2b63f2340e838029d11f418e9d41f2
MD5 2d386942de617481aa838dcee837c7d2
BLAKE2b-256 9ad575b80d02dba2f3d69a8f4a5a224e261876fe3b07f26974e9bfd61d06cd03

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 408.9 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.20.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 66b738cda752d7ec628266dcf7ed421622fdeb69575546f9abd2637a9451fd5d
MD5 b3f5ff81d80965d87cffddb90ddb835e
BLAKE2b-256 1736d2cc86137a698630b73c3072f6bc415b7e6b96d737890249ef7ffa301381

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 460.4 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.20.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e6e4d1c9722ad62a345ccc10e792d8473111591a13b288587f52da29afb5803
MD5 ceeff1f28c84c1f89713382e907b0a9b
BLAKE2b-256 7ab63f1b89a6021137d6c57520a1252e9ed3b367aea44fa205f71f8f39a79487

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.20.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 411.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.20.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 00252ef45de8f1c15b8d384e890e5d8071ac41b4d4e5e9452615f4b9f329a1f7
MD5 ef7306bf8f18160d4e25aa55b38b8b2a
BLAKE2b-256 8717e59ab2608f6fd7ada0ad0dbbf98b43085e8380e7d8d96abb2ee77da84859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaa56ce70d87e15d35fbb33216c12aa7a378e8ec6cf1b946214ed05c41f488f8
MD5 7fee771555abdad2df5c15b1125bd949
BLAKE2b-256 ee21653cb4145f3d95871162d5612077d05b8c79a5478785708c2d937fe0b5e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c37592b3133fde4eb0db2208bdfd9acc673080dd2f7fcf455f04012d22bd6885
MD5 51cabdc9ad94b95ac9a766578ec2ffba
BLAKE2b-256 204315ba9ea364a91a81a3ce69e30261c980851dfd838c8aafe7d0b0fe58ebd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.20.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.20.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.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa5f8943ac313931a3326181bcd03b788d2701d0a3dd930cb6de1368a72aa855
MD5 b3943cbe4d3897224efc2e67143515f0
BLAKE2b-256 2151db01b610816f2357b2b78b7b6be75e14056871f8c170003919b5e017d17a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b14634b9190f2315d19cfc6fa2b41b743be1a8436977adab468bd2b862d00949
MD5 7c19937944cf8e6514cd819a3f8ca75a
BLAKE2b-256 737e3f8a2f5b9f8f59dadde7595aede6bd9b4a04411b25bfe0a5abf52f372cac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e1a1ac26dca7e21c3803de5b0b0b71db0456f737ec371149eb08683be47e153
MD5 fe06f3f91f89d256b37638416bb32cc7
BLAKE2b-256 d4ec2ffab5c32cf6f73c1723955b9f276775421c9b3b231896b7a4925c309b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.20.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3024667eb846486d0534171841b14fe9d8c0444bd7907c72482c135bd9d46250
MD5 f6088a2659ce751445af4a7d551695a1
BLAKE2b-256 33b1adfff03908390e8e5c565a034f0f8c95ad125d4293484622a02cd8763f14

See more details on using hashes here.

Provenance

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