Skip to main content

aiofastnet

Test status codecov Latest PyPI package version Downloads count CodSpeed

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

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

import aiofastnet

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

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

Benchmark

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

Benchmark

Speedup

Source: examples/benchmark.py

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

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

SSL Threaded Benchmark

TCP Threaded Benchmark

Source: examples/benchmark_threaded.py

How is this possible?

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

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

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

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

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

Why Use aiofastnet

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

Quickstart

Install from PyPI:

$ pip install aiofastnet

aiofastnet requires Python 3.9 or greater.

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

import asyncio
import aiofastnet

async def main():
    ...

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

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

import asyncio
import uvloop
import aiofastnet

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

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

import asyncio
import aiofastnet

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

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

If the event loop already exists, patch it directly:

import asyncio
import aiofastnet

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

asyncio.run(main())

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

import asyncio
import aiofastnet

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

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

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

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

    ...

asyncio.run(main())

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

aiofastnet also exposes start_tls and sendfile:

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

await aiofastnet.sendfile(loop, transport, fileobj)

When aiofastnet Is a Good Fit

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

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

When Not To Use aiofastnet

aiofastnet is not the right default for every networking project:

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

Platform Compatibility

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

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

For TLS connections, aiofastnet has two SSL engines:

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

You can check which engine aiofastnet uses with:

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

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

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

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

Asyncio Compatibility

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

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

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

Kernel TLS (KTLS) support on Linux

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

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

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

KTLS requires support from all of these layers:

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

To load the kernel module:

$ sudo modprobe tls

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

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

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

import ssl

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

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

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

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

KTLS support by kernel version is outlined here.

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

Some other useful links:

Free-Threaded Python

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

The repository includes several free-threading examples:

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

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

To use aiofastnet correctly with multithreading:

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

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

Building From Source

  1. Clone the repository:

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

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

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

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

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

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

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

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

Contributing

Contributions are welcome!

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiofastnet-1.0.2.tar.gz (706.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiofastnet-1.0.2-cp314-cp314t-win_arm64.whl (487.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-1.0.2-cp314-cp314t-win_amd64.whl (560.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-1.0.2-cp314-cp314t-win32.whl (493.5 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl (653.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl (641.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (644.9 kB view details)

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

aiofastnet-1.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (632.5 kB view details)

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

aiofastnet-1.0.2-cp314-cp314t-macosx_11_0_arm64.whl (570.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-1.0.2-cp314-cp314t-macosx_10_15_x86_64.whl (586.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-1.0.2-cp314-cp314-win_arm64.whl (452.7 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-1.0.2-cp314-cp314-win_amd64.whl (511.4 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-1.0.2-cp314-cp314-win32.whl (447.3 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl (632.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp314-cp314-musllinux_1_2_aarch64.whl (610.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (624.8 kB view details)

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

aiofastnet-1.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (600.8 kB view details)

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

aiofastnet-1.0.2-cp314-cp314-macosx_11_0_arm64.whl (533.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-1.0.2-cp314-cp314-macosx_10_15_x86_64.whl (548.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-1.0.2-cp313-cp313-win_arm64.whl (437.8 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-1.0.2-cp313-cp313-win_amd64.whl (503.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-1.0.2-cp313-cp313-win32.whl (439.8 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (630.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (601.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (622.6 kB view details)

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

aiofastnet-1.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (590.8 kB view details)

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

aiofastnet-1.0.2-cp313-cp313-macosx_11_0_arm64.whl (530.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-1.0.2-cp313-cp313-macosx_10_13_x86_64.whl (548.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-1.0.2-cp312-cp312-win_arm64.whl (438.9 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-1.0.2-cp312-cp312-win_amd64.whl (505.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-1.0.2-cp312-cp312-win32.whl (440.9 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (635.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (604.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (627.8 kB view details)

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

aiofastnet-1.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (594.9 kB view details)

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

aiofastnet-1.0.2-cp312-cp312-macosx_11_0_arm64.whl (534.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl (552.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-1.0.2-cp311-cp311-win_arm64.whl (449.9 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-1.0.2-cp311-cp311-win_amd64.whl (509.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-1.0.2-cp311-cp311-win32.whl (447.8 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (635.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (614.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (628.6 kB view details)

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

aiofastnet-1.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (604.9 kB view details)

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

aiofastnet-1.0.2-cp311-cp311-macosx_11_0_arm64.whl (537.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-1.0.2-cp310-cp310-win_arm64.whl (449.1 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-1.0.2-cp310-cp310-win_amd64.whl (505.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-1.0.2-cp310-cp310-win32.whl (448.7 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (636.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (614.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (629.3 kB view details)

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

aiofastnet-1.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.4 kB view details)

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

aiofastnet-1.0.2-cp310-cp310-macosx_11_0_arm64.whl (538.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-1.0.2-cp39-cp39-win_arm64.whl (450.8 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-1.0.2-cp39-cp39-win_amd64.whl (506.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-1.0.2-cp39-cp39-win32.whl (450.3 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (637.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (616.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-1.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.1 kB view details)

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

aiofastnet-1.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (607.7 kB view details)

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

aiofastnet-1.0.2-cp39-cp39-macosx_11_0_arm64.whl (541.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2.tar.gz
Algorithm Hash digest
SHA256 f5b577ddcd5636313d7948f8dad16bac85881933b0cdd160c52a52390cc3f344
MD5 42a799ec28e35be6184064231202d208
BLAKE2b-256 4c65b68914d13ad9f1bb717c0f426c79a238eee9659bd7f7c3022c9faf2958e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 487.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f47d0d3551bd8054eef27017f0f46505808edaed8ea12763f4e9339a67061a14
MD5 be57552c0e70c81aff794198b82b601b
BLAKE2b-256 f3df0187bcab957e48d24ecf2aadc1418116a6a7813f02d0b07e889aeed2d0aa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 560.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 482d6bf47d357d7867123af8171b26cc4af2bacf9313f8f6445462fc3ab25d9b
MD5 0bde4c57d4aba746208cfaccc7c28ef6
BLAKE2b-256 e743c806586d75d328fdcda15030255b3b4a25b5d4c37af15af8f6f672c4e9fa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a038c657280ebfaad5ca1d09b739c913f226a8bff87c0b465f51efa3dbb33801
MD5 99caae62e1faed8b4ce78a7ba80a655a
BLAKE2b-256 52df008574914810f30f371170f94db16a30f08f95953fdd33bee0171fecd2a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d32c8f4aff256ae9d1c4c93b199e6a3879555d078dcf95c1e5fd94a2c2e55e4
MD5 28f508cc64c4c2ffbfcfc0cb31e985cc
BLAKE2b-256 5ce092e20eaefa08a566470db9b6a483432f48effef3806e867942534c1ac724

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5742edeb3cf4e2de26a4888aea840db0d06025ed6e21152d1de599acba54e820
MD5 a79f7bbf23b9d3d9bb5094d7401a67d5
BLAKE2b-256 a827f61d43ec1797427c91a7bfae16ddf7a21aed7957cbed94599146bc6945b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9b6ad4dcd3057838f993eff2176e8ef9e4d115ed20a3d21cd261892c5b021c8
MD5 731e4902fd0bd8102b54c6e4e664461f
BLAKE2b-256 e077630f1a8ff23863f4794596361e7216ad2d852afdf8e045124886d6dde16f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff17e16fe97bea8f62bb273e5ed80334d33cf00bbdf7720bdc6811760aa26d95
MD5 f4801117a1821ce8b4ec2e59809b8065
BLAKE2b-256 b9ac78e78273b338173b9bb68331344db190d58dcdaeeb12a11718cda646c75b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b44b717a8971770b2aee88b266bc2861f115502f1c067263ea2387619a1b3c4b
MD5 f29ab3022ab5a7ef9602a6087477b349
BLAKE2b-256 4bf834f96ec82a561963c4c781b1e99e0d4501f4d2e4c4425d69ae2cc2aed0ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 add01ce3c5b7ca45022718b725c3f81620b0454cedb2aea92ac41de37d093ddf
MD5 f6faf756006be8f81affb436ade45a67
BLAKE2b-256 8d9c31657404df1b3cb6e88b3bae654664d32a149f0b712162f8ff1b71bb1c49

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7f74ed6ba8d77820eb7573d97f117957a80ff2198ab13a8834f57696f7a983bf
MD5 3d0fda8708e472c23bad4b14d494b036
BLAKE2b-256 77cf0a38b2693ac017630cfc2a7c8746be6ce484ce0e6db74dc489153a73c033

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f706902f8d7a114d2c38a80f97e087f155079317720da2bb2cb749a926c0607
MD5 f9b1cd7ca365e3e671abb07104ceabbf
BLAKE2b-256 5438987c11aeec61c8e63b0342cf7171db552dc1e72b6f5331a88d5c6bf0e1ac

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9b43a39c2d2b4d99ed6e7ebc171ef03cf5b240c88ee86404adaefdae62a17bca
MD5 32e672f1286386143622ec45b891f9f9
BLAKE2b-256 07303b212377e68353754a742422d0a49210bc22154f826e779a8146ff17f431

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6dbe76fa6b9127efbef4a40beaaafe9ced0065158fb81d02181e7898b6681c2
MD5 45b3e2b81bbd8eb3e8c5a99dee035283
BLAKE2b-256 df8dfa03ec7a363fa2116522136b27b10c108a5fefbaf2906ff1130d18c64d12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d08f7a215c93ce404bb1a3e764d3267ceb5206dd338c4f9c0d57ae3432c8a044
MD5 8543e5c6ceaf41a30826822536577c1b
BLAKE2b-256 686313e3e504bb715939224b80f4844c1f1ca3043bd8ba48d4c5129a3fd6e473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d52e62002e553db52ab77f07c7b9c1d5c3fbb49409686e8867ed149eb42cf746
MD5 9015109a5d0d73e8f11c8388eebdd96c
BLAKE2b-256 a3daa0c36a12ef49d2a355dcf51fc68bc1178595335c2fd219e243f328aa7ef8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9666a8fba28a064ab18cfa8315da3c79eb97a2d1ebc09c9f840d5a12d6def06
MD5 b24ec4e4cea7cb4ebbd603a6f77eb5d6
BLAKE2b-256 dd597e855dc69ef7b4d3feb1d9ac7f077503d93281429b95865dad4277d89cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfeb5caef17c72b083affc495615da5d8f735fef94055c06f0fa493a8bb1217c
MD5 594723a2be16c1d3a0fde10e2d94ced2
BLAKE2b-256 cc4832e9292ba149cfe1003357a3b60f263a3af8ce4fc1d2f4a8096d56b3f4d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5534260ca04ab3037e2bba74e7dbdcab22704bba73bda5cdcd31f9f9d6b9b0fa
MD5 0aea012e40942f3c8906ce1f95705803
BLAKE2b-256 479e6e30b9c40713776b1408690c43dc92c5d3212091055d6ab30d2cc2b7920b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f1b02d14ee6dc131a79c9e6f436d8bd74eccb63b2e215c738c85a3605987711f
MD5 6b5f1f0a248cb8aa1bca12cc66e137e2
BLAKE2b-256 7d0b69efe2523b605352ad8b0ef9de39d99b0bb513474cc2ecf7b0dac6bf738d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 acdc6dd4892c9edd0df35a3b3aca0df46b0e922534349b8c40fdd594497b9402
MD5 52803ba08230facdbdc2dbe4e539669e
BLAKE2b-256 6ee60981578aa324b58f1069ac15776bf1776f66c03d9171b52d5fdd05eaff03

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e1bb840f0c8a6b6c755aa5358f1eff9aaa7ec51562e6a48c5d6d721b217412d2
MD5 e6604a8a17ac2a80201b08cd3489f1d2
BLAKE2b-256 c5c7142fce1962458d639322de122ccac2727d72e86a33de47effbafc7ad46d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2c3bc94267da9838ea4429552104c76dcac4631cac744a57ae1456eec6df380
MD5 3a8751d9685b03f1932ec91a264b440b
BLAKE2b-256 2b66155dbe9a1417cf149bba68d4c368e7630398e738869e2e82de05ee90f727

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e38eba20a314e54fd542a7c7ae9b3a2ce04e2d0ea7cff4244d69d3af4b325e7
MD5 c31af68c2e9a6a0403cb62f394ee608c
BLAKE2b-256 9905b6edcb97dbfb4e91a791cbf779433238d94b334a37f26cd3bec123de3d4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 488670141d0d51c8c9b4d45ea9c6b1efaba1b5bbd3b685868353c663a7d179eb
MD5 fc77ba9f330669af0c89b20ad544f992
BLAKE2b-256 2ae0e2930ebbcf37204378603c148e6a7300755b6eecd5bdd138e3fb85d611d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41d7ed4010044e3f371247202f33310ae3032ed6417d32781ef2eb7c4f8a84a9
MD5 e70c6985c888be549d49032a214df3af
BLAKE2b-256 f2e980d76f85d2862872b071b9c691c380e7a8bc2a8273e2bed86b27581e1ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95be8b972280a4aa460e77de9089410c5c4d6df11caa351cc95f6843e934de9b
MD5 638a95b0dc1d94530ad7c9b279eeb65d
BLAKE2b-256 640507d36cb96793f64881a9347ca11e8ebe0ae273705d50acda45b8f71bd26b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 64106f30735609adc0275d697b84a4ce230186f34ff945116391b47ba51dbcc1
MD5 820df9b853d34cfc89b5d4c97d07b6d7
BLAKE2b-256 4ae80b9dac3830adc7d3474f35a4042ab869dc9cf15a770e8ad43245ebc92072

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7a843a10b113dcf45309f12243721a70c62d7f8b8755f27725c33077083a2859
MD5 50f3c6842ec1eae36ec5dcb97cc978ae
BLAKE2b-256 eb3d874fc4a9472e939f9410060600b0f95f070bbaa51b3cec660eeaba103352

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c98bf0a475d89162f507c890e1b547ebf5b2a25778ad46a71837f4cea443c4f6
MD5 1fa55cb1238bc70579f401dbce4cd1ef
BLAKE2b-256 ce97574d6b8eca7aab38c2c2e2096edc2868427fe0c82c16f2b420c5deb6029b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3c4bd99f9787f778553a7b625c436f72f0a285f3c4159e7237a44ce8f47d3d46
MD5 8d6edf378dd9dfa1a44ef7bdcf5706b5
BLAKE2b-256 32282fdb11e9a1158c84bcee60b1611c29d84c86499307977c178e098a2ef953

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34f8b8343417afc4566e32234dfc8a4599cf5d862a9816806eb1e936b4ed51be
MD5 52b6ca7bcca25c5fe77cd6a36b87b67a
BLAKE2b-256 a8df04aa5ad186a7c23172541e0a25b13af8f39c65815ffb2489da5425c6c20a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa7795ed6dde4df8a25f47767a037e2e313ac154aee1498953dbdd6ed0a1983b
MD5 998f430e0381cb3fa8d190556881074f
BLAKE2b-256 81c5667d0a73d2a51dff73a213d93c1e74d88c4bd3dea3bc6f58b26fdf9f1c13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04126ecc783540b4118c2a144c7ecf8d419e36c5572c72e98b2aec1e31d4ccb8
MD5 dfc0bdc561464f81ca824534d2683a4d
BLAKE2b-256 07c11e469324383ddadf78c2db6a527da8b85f4d56d7527e936f4f1d3cf3fc8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbc83bde9bf1ebd78a53f92fa11acdba4e3a45a1576309d41b8ee24f857c2cde
MD5 2d34970485a7e7b0fb7b1f0234eda4f3
BLAKE2b-256 7fd04b635e4fabc2316505a17a0a16ab888643ab1b33b7986cd7bf5fd9b223ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8b010cb316880fe14fc7ee5d08b004ff0821f37cdecd6f8e1b02b413f4a21b4
MD5 eb811285e3a76521fe909f55d9e34867
BLAKE2b-256 31b422c3857b6892a5f7c9fe3e27491a0aa1b7fd72a72f72dbbb834d55403d83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9c3b8b91b87b5201854773a2b41b145c585a90acf9d4a05751f7ac9958ec97fc
MD5 076ea733966bed6907c6c78272040d53
BLAKE2b-256 274e3a5594a7ddea1cb1f745b4009a2110aa5b4f4fd30e824dfbb6c71f010b3d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fc5f350147dc1f03b202edd3cadba7786e7e999f39bfec92c0ca5bc79d072afe
MD5 df686a8223f0ad87c7551b5f08841533
BLAKE2b-256 b34e711efcda602c7db00c0743136a8d12c3d196683550e3b11a75163abcee6b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6388003cdd5de4a6496761dade1aca9a7df5806d95888a1d80611c2a4aa0eba9
MD5 ad511ef9cbc04c7bac9ee14b22a5d0fe
BLAKE2b-256 d80e17ec0fabba26338a1075ab7f479ce6845c7c38fbc7d86d05bffdf0e793b7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e6df9253bb118d7eb8ce69590bef674a2af8f683ed9efb0e49e034d651c2053d
MD5 759f5cbb2aabb4e36358af32bdc1ed37
BLAKE2b-256 06df77fe86f9bc0e8d9fa2be5d9f43f07f58b258168a235497be9512063486c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edee243d22cf991623dec5084798da2dc7daacd5ec9ae39f3047cc26b4bc7286
MD5 27031764fd81d3dc027c74aadb84750d
BLAKE2b-256 814e71a70cace14615da219af9c7e897534d820f0657d0246d9a787942ce63e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da5b5d750709cb0152b2b2d0c234c0dc8825844f56f09e8ff1944cfa029357aa
MD5 bdbc2451213dbea1b4228f8f0d7f471a
BLAKE2b-256 3d93319dcdcd139c879dc95a182fe5ed130021b8c0045394c95d9a913c914474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 690472df0b913985da332bfff65e77a13df9e20c74a6c87122fd58a78157b4fd
MD5 0d5b0b1bce2089cf31374cfa1a4b1ee7
BLAKE2b-256 700ec7e155db935aa7c7cda1ed35aff3c7f25e0d721314f58b69dc3253def510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e463f7fdde196ff3efd095d1a55e010437db213d4f502c40dec833b2f9fa08ec
MD5 df531f4f1d0030098c15e858e2690a67
BLAKE2b-256 f3b519a4eec3edbadfadbb9f165921e8b0e5111556a739a9cddf71ce9d41616e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1954bafdbdd51b2323800c57a9a052b77c8c2d29e99b5b9fee727b7885ab7aa0
MD5 ab4aa0d98d8cc306ce07483265773615
BLAKE2b-256 ba878664b5df0e94e38fb718e2441eee4343f63907e6bab5431940f4410ad291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e269080f8feaf026d183ab313418e0c09f29aad4ed5894e05e3efbffabcbbcf1
MD5 696a218be80346f914e5a3ea1445427b
BLAKE2b-256 31cd080fdef2443d8c6b3fc0ddb84668d976251893b895da168a87373770cc04

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e610ccdf53d79c050328f5c9990c49d518ea063a619e54233b0f203b8c08e246
MD5 19198c2eede518851bdf5a35d44e4f70
BLAKE2b-256 1eca6feef9b3db2062b8744a9907e5b8da90c300876133f3a4a34f7dcd20e481

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29cfdb82fbdbbe44797ab740902c427f63f83dae06bc69be5a2a041dafd0e327
MD5 53efa0202f5b8b1aade37e0bbec1d762
BLAKE2b-256 82d1de60cdb39732fb51145d02643d24f2fca7e65e9baada10f28522a3c76402

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d398100ebd1945d74e453d459fd348823fbe125f473911aa165cc9b8ef64ca4c
MD5 a3876ab0683e5ab32b9468f258d24f7a
BLAKE2b-256 6cf335604104ecec352137b5f2673478f5da6d1c8a8bc14d515b46e3d259ed9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c78d01011187404f5179e771fb0cd2a91f85c535899511ae8acabe21cb7cce7
MD5 88ca76fffd4344ca3f3473523f9234d5
BLAKE2b-256 1de00f1bdc52791985dd90437b4f1417f5077e975e09c39e92540b8871b7947c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abd1e2d45da254f30d823d01588a76dd72ac4585cae070aa4c0adabc2d959ca7
MD5 c2ffadd9b9fe9370ae1846563a81de32
BLAKE2b-256 4e6b60aae35cd11d617860eb8757f5ce3dd18e91cc485c74630d39c711d67b9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42f551062fda4c3c58a4e178c6bc123c64d75b3d721caf2f36340d33c55e8930
MD5 8da66fb33fd87bf5b509449101c31f19
BLAKE2b-256 4dd7aae70e80111e290329e4325bb4006e6f93acd7d0a349b24995c9a2954bf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11ac3be5cc3bbfa94d19fab187e9d6ff8df525557e16e851b66281f7d150abbc
MD5 43a8370f7e777616b1b7bf68606ca5b9
BLAKE2b-256 edf9c4d1cc4eb2d6dd2cd2be2230d9d55b92dba7ceee52fd21429d9662de6621

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 178a8bbbd18914b69c6cc1ce5ecaac9de407e3954499008261e75028f75f330f
MD5 2f1ad998cd7dbc29feb33f5c8dbc8612
BLAKE2b-256 728e7efaae1553715d1b7bf4c0616ddbf0b6f9db07ff33af211574c4f58ee37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4207914e6c18e82cdc4d5e167943bf9284245196c641b6c8a592c4619b0b1c5f
MD5 de1127a44579b9b42fef0b72a38be667
BLAKE2b-256 d501210fe042c5c71caaf934476f116b1527699e29235462ffa357ba4bce4b79

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 3c949aafc0d7bdbc6d3d4c8e000fd975bdbf26d50c708f322ff88923a281788b
MD5 fcba4f59b84271b51d41864d55ae4c99
BLAKE2b-256 160e7faf9a19a051e75339289a072325d2dce3ecb1585f96adc92c21d8716226

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39d5eb8e27d08baa27e7222a95ed7c9195abaf31ad0553287b1f4e390b61a8e7
MD5 66324883fc0aba4ae86fea7157c4e7ce
BLAKE2b-256 808c5415ad68a2ff5631dc0bb30486b9fc05fb6c7337564cee5beb353f4a6a70

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1ab6f32c67f4a295964a7ba4a660fe71d4695d862a0bada4b7453184c967cde7
MD5 ce0a74de27245d042b8706d9460eca8b
BLAKE2b-256 425af00ab9001d4acab17ee4873cae16cec240b5d41d3cea4b4c2d06b5c03dac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63627d34cc58ef306d5be08c442566bbe89cbace2fabd674f13651621aea71fc
MD5 3092e1aea32d166644c5b527e8fb6b94
BLAKE2b-256 3109c5bc207a0643beb03dc001aaffc6154f3568b8e92c05afaa469a0c533248

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2895ca60c9b697be0fe9ffce0363eef9c6c871eec0e5f1aeea37abf8505a9d3
MD5 92abd8dac3912e9af8ab1c3abe96a213
BLAKE2b-256 e41896cfaac2a7c85268234b1c791d8c63826eef436a53654069f2da5f4b4ada

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c2d39ac1492891c8f29643c36fd3717ada0eb8612cdebb6fe24305f3de254e
MD5 dea4f340efe3a1ce03d1fc61780dba6d
BLAKE2b-256 a740382d63441d889adf2f49ceb9911008584e6c5774caaaf3d0f07abce4ef2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 763576132390d8d2ad61764e4b9606b28c28c1b55e63e105a53de264b3b6a45d
MD5 8d7b0cb77e39dea04cf574c59a43d1c1
BLAKE2b-256 328c7678e42041ba9ecd1f6693b140248faeb70245bdf0e958868dc73449f7e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e47fbf86a5c6d90d5d9089b756273cb477031b4f55a2743e1b7f158c726b16da
MD5 b7fa971542c8f3f6576caa712a57d61c
BLAKE2b-256 141ab32d1641aadd0c6b08c2ee689c028d3287b7a724694ac544ebacab1d1504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63449c46d9b28a3fda08ecff8362cf0b03d41abd17ab1f35e185a76226b0cd09
MD5 443e0fd32d38ba26ee470c256e5ee0ae
BLAKE2b-256 dea594356a1e9fa6b2f9f2fe9fa43a4d46872d161b98d069bf2d78385a06bdf7

See more details on using hashes here.

Provenance

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