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.0.tar.gz (704.8 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.0-cp314-cp314t-win_arm64.whl (488.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-1.0.0-cp314-cp314t-win_amd64.whl (563.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-1.0.0-cp314-cp314t-win32.whl (495.0 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (661.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (650.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (653.5 kB view details)

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

aiofastnet-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (640.0 kB view details)

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

aiofastnet-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (574.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (592.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-1.0.0-cp314-cp314-win_arm64.whl (454.5 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-1.0.0-cp314-cp314-win_amd64.whl (515.0 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-1.0.0-cp314-cp314-win32.whl (449.1 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (642.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (617.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.1 kB view details)

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

aiofastnet-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (607.8 kB view details)

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

aiofastnet-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (538.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-1.0.0-cp313-cp313-win_arm64.whl (438.6 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-1.0.0-cp313-cp313-win_amd64.whl (506.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-1.0.0-cp313-cp313-win32.whl (441.4 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (639.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (608.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (632.0 kB view details)

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

aiofastnet-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (598.9 kB view details)

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

aiofastnet-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (534.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (552.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-1.0.0-cp312-cp312-win_arm64.whl (439.9 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-1.0.0-cp312-cp312-win_amd64.whl (508.4 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-1.0.0-cp312-cp312-win32.whl (442.5 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (645.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (613.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (637.9 kB view details)

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

aiofastnet-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (604.4 kB view details)

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

aiofastnet-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (539.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (556.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-1.0.0-cp311-cp311-win_arm64.whl (449.5 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-1.0.0-cp311-cp311-win_amd64.whl (511.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-1.0.0-cp311-cp311-win32.whl (448.0 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (642.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (619.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.0 kB view details)

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

aiofastnet-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.4 kB view details)

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

aiofastnet-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (540.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-1.0.0-cp310-cp310-win_arm64.whl (448.9 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-1.0.0-cp310-cp310-win_amd64.whl (507.1 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-1.0.0-cp310-cp310-win32.whl (449.0 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (641.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (618.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.0 kB view details)

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

aiofastnet-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.2 kB view details)

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

aiofastnet-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (541.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl (554.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

aiofastnet-1.0.0-cp39-cp39-win_amd64.whl (509.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-1.0.0-cp39-cp39-win32.whl (450.7 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (644.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (620.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-1.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.5 kB view details)

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

aiofastnet-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (610.9 kB view details)

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

aiofastnet-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (544.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl (557.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-1.0.0.tar.gz
  • Upload date:
  • Size: 704.8 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.0.tar.gz
Algorithm Hash digest
SHA256 e58772463af30d9db24ccfe13217a86ff5d56d5df42af18f8c87fa2f499cec8a
MD5 f8f586dd18fb1d5dd1500434752ccf5e
BLAKE2b-256 afd0e046364982fad0e7c0c6efbd9fe6e89fa7f326564f8d2d41a4ee945d62e8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 488.1 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 033ee2cd5accc908d8497ea9abc4f963c579450efd48068b2e8a0ea53487a119
MD5 1980ef8a72bf3da2abf1eff6f46ad045
BLAKE2b-256 9a7003e9a59c2a76d839eea195b87c97913befa527068fe184fcf02fb37a7eda

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 563.0 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 27cf01eedee55ee9e9f8339952155891f9eb850c1fd1ce193bc7cda98cee1a54
MD5 a87a08e94e10236c8900c1c55051b2a1
BLAKE2b-256 852e88d996640596fee196087a994c97efc7e9bf5043e94d187bea8f07677b12

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 495.0 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 edb74f26edbeb36d368fc32b303e86a1125cc87f4fbae98ff6a0b7fa3851a40a
MD5 dd530516b5103835a26774b4146ecb5b
BLAKE2b-256 94edd4dcd82a28bb008b6de69c05d3be2098a20fc6cd15ece0aad4d9363a900f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ddbe17e2991d446c194961c924433aca41253de39ae22917c051dd9ac1139d3
MD5 68cf99e862dd97307adce86b13a68a60
BLAKE2b-256 3b82e25cf2e3ff189f2b03e1917a654c3a075eb8125382c724e24dc0fb950c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecd10e15f4666ea0ae88c4b0eb95416b58e189febc7db2e62d86eba4c5f64d2c
MD5 2c5bb0891ec1c0ecf0fdcf68c4251e2e
BLAKE2b-256 e1210b58fce9334aaeacb84b00e8e7de803f76a25a1a79489ca4ca81b16d043f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e75df1188f854bd806ccacbcdff0563fe716339fae975cfb15dcdd905c98935
MD5 f346c581d6927f6349ee672f3697583e
BLAKE2b-256 05c6d54bf0cb7018220e8d559bb18cb47e2e1ad7b555b91e5300e09ece59c404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc92dc3688e1cb0423d65d080fca568a235668e980dccb92469cce9e29dae760
MD5 9f095239e0c4c2f3ff758829cce364a9
BLAKE2b-256 eafc794e8f5167d12d2a61b34cb81eebcf5f2d3c6a7746733e30eb4ad1d5d4e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c585bbef654b30efb31599da7d4e5c69432650578caa69d8c7d82c373b084850
MD5 6b817c68651361657952a40a36936d9b
BLAKE2b-256 3743f0546f98c05f97f6339abf4ece85b35a598ca18e0724f00508f9e52f1b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb7d3b3259ff0febd937f81f051d9ff6727a6f824caa06693cfb13b54a07cf78
MD5 15a08e252eb751b7404e6b2d6cc90f1d
BLAKE2b-256 72b32d4eaf76e1b496d71e83e8ed6620b7b1c96ae3be4f79e7bb4d945cadf503

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 454.5 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c0d1580772e7e8c335108a04f7b117c1d38a28c6d6663c0ea7b08f3e765afc48
MD5 3ec5038cb6ac836b76681c8f0a811ff2
BLAKE2b-256 099951dbd9b606522955a0b4f5268603904ac334ae8eba97137037a1ac29d003

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.0 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0b37025e2cf4abb8fdc9aed8a715c2748cedde7ff638de9c71b60048aff720f9
MD5 987a5f7338728e3639a85f24985ff99f
BLAKE2b-256 55ab8648022a7d29f1d3ec4d4eb510d69b73f1295896cc85b1f913c170c2b7fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 449.1 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8f69a14a7c391d2ec11977a68bab5ed61a472c445c5d08e007fcd5d0d8d73bd
MD5 580722d9e321e0f680c3186d57a0a809
BLAKE2b-256 a6ae413cd393665efe2e9ba80f5c764c0fc08a2d0658bcd7358f9d1b9c382d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a417b5c8e16dcfeb4f604266f2e8b58e476c7720400ce27526ea104821da678
MD5 3f8b96805ee941179050a43175930e88
BLAKE2b-256 1edd21de9d595425cd00012bf68b807612301b9f551ad580378e09f7660a379a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 731e3c1544ffb3f80dc96a1f516161bc76f216d2d9ba0ddc8f0546a26adb73a1
MD5 56581a1da82a2c529638809132ca6a19
BLAKE2b-256 a9dda61a79da1501dac92ffd80745b0332fe5bdd78f0f08475a841499820c58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ad177bb1f84738342712d8fec905c5e2fb32748788ea24c38d99982404d5dbe
MD5 fafe742fec7c4daad4942fd4fca7bde3
BLAKE2b-256 20b2e6a0be27810d10016de04944d533bb71fe6ae97ecfa45c66c1308c5d7d8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4231380695c4a5a2d8c8c584a66501eed8082fb4dcd783985a15d9bc7b881abc
MD5 7fbc3bf3a342a208d05e16548c87e6e4
BLAKE2b-256 9cfa49e12401e7cbe00e7db21bb1b821bb69d1476c768934bf200ba4b6677e99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d46c25cb13a34563db831f7c43fa614e538ef20c06379ce8f632b78841552bba
MD5 5831589304639184b444bdb54ccdc1bf
BLAKE2b-256 389265a766145a961752112beb7084e65a1cd9604f472881096345a232d4f3f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3222dc9a269febdb9339683f94758b179f25e917f8ee27a95a1dbd7f26eabf33
MD5 40eb9485b133b4a53230d5e142e67723
BLAKE2b-256 8a3703a69c1c32982de1b11dc91267f73d9ba74ff3ce9b3063826a7a9cd55c05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 438.6 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 32b23fddc21742a67b34f9e437f7475d58b5e182589e190c8ba957e20f33fcbe
MD5 b800a14645ba6debd51ff33edc15f55c
BLAKE2b-256 79fcc40abccb18237320cbaf06ea146ad16cc4cf43a249f93dbd452199ca0eee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 506.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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 afd665224b710b70628f1c7d77fd3e5cdcda4ac9f2a773b6565e5e97553c8c1e
MD5 8ebebcdb0989790c86215bea1a3aa964
BLAKE2b-256 cbfe8ffefa95072e760326213d6b415fe62ac6aecad252d725c82f1800de7d01

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 441.4 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f8cb2ba70f870c0cb8d1a5253dec7dc9f716b52cb98135ca353559c398a835fa
MD5 44e969262ef54d83b0acaae886eb124b
BLAKE2b-256 4b3dd268dc080c2d4a76a8caa2c1e0d2163c7b89b127a4cf682091e81539cd78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92d6773fd0c4525820ae03f7a55e1ec5f74789a8744bd37d80d3ca8dc80020fb
MD5 419922c938f8fac228edaae1a678ac87
BLAKE2b-256 80c6828b9f3345c358b9b7dcf29bfa4ce9a7c2f404ace494bfec36de2f128ab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15c93b8798ad3869b61e17ce157e82648633fbda62488a4eba62859328ee8e8c
MD5 fff46e2c04839a36b9dc5e70bf8baa59
BLAKE2b-256 9b7248af9bd43b2abd6cfb3a78bbb91701300cf96394afca3bf2a301db246b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abc4a1cd083a5e35362b7f17b964ae1ab04ecac1851f6cd1256e15f900be51e5
MD5 524df996c2ebad28b54198ce43e2343b
BLAKE2b-256 ee96022e502d09e5cfdc1eef01b4e6260d92ce9aef51822af7425847093e26f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 930684509e8cafc06dfb9fb365d5d78b8b14bd1720869905b15cd1a4636a2e84
MD5 50fa3a9d98b4ff713fab987b49009791
BLAKE2b-256 fa653ce7f6eb23e4936d3d0c49bbda2b2d3495fae2c8cb4e449f4bb20b8e848e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b45d06a3641bd13bc8ee287315cb65c1a12d7b88e68f7fe1a7d6a8f76f9902b5
MD5 4869d288548ca74dbb55b24359de0c82
BLAKE2b-256 63f427f8a0a0bdb78a4fd85616b79f84a2d44f21706ce276640cfcf7f2d85c17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 876248c5a00f0514d8bc2c6d50e6c561933a62b8f03c6480e68b0a6bd3adefe5
MD5 812ad4f69bd1a2097fa05bc609274470
BLAKE2b-256 eb3fa20cde7e26771eae460544dc1907346080abbe067625d0c37be5ec5d65f6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 439.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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9837a6d9236274aead01655c5ffe3737b32cef06179485b198c887b11506aecd
MD5 251d18583a487141c0c72a348ec10e63
BLAKE2b-256 fa0086c6361ccc13fd7f40bf4eff9e870a1a99b674ed55687cc422dbbd7ab025

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 508.4 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 61f87f9f66ae356360d6d41195063714070dc5e0a7f909788dd0800c0cdc6c37
MD5 cbf9d22bcf308126cb9ec115f41befb1
BLAKE2b-256 497dcf6f9a876f5caceb653ec27679ad9ae735d02bdd360cfbafe9adf6b6fa75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 442.5 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1363c7de87e53f12ab02bafbc485f4a5ddbb4aeefc9db16d49b6c119f07a9c69
MD5 813da852bed80d31dc544a04a337faaf
BLAKE2b-256 1e900160abf0307e666eca4dd1fe9ab3a91bec3b418d3920d57616785f93a417

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10ddd0940faa19da8fe756b5fbc705c8ad4caf877f85217df87eade2f66798c2
MD5 139934e16ccfbc1ecc30025a5cd52390
BLAKE2b-256 ca3d86f7cd1f9a7bfc77c4888c949f8bebec155f51a05fe2cd7c770406ba7c29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1d211c99059a8183d13a4679d3020fb9296f276d55610bd77ba3a4e8e9e4176
MD5 0614db5d043c75936a25f179313c3cfa
BLAKE2b-256 3acf4eb80f450943276de56f4c7bdd79d2814bcf1e12965739d1ac80df8f3811

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d66d6459d072cda745f52d4dfec9c23916d90d1ceb1ab6ea2eb26181645ad4b
MD5 859091f6a7e1d7315230a6f17bffbdb7
BLAKE2b-256 cf08e81326fae4d04400236ce27493230356d3f53ceb7c6434e29212dfc6a79b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5c469eac96168619c76a83b4fe83cff0a2e2f5dfec374132240f438d1e27d3f
MD5 249c0f23d7cdb756af1d5ba6989f64d7
BLAKE2b-256 26dd934c0170390962558b57a2535fdbe9ca402a1baf1bd13e9a9bbb864218ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73bb3d5157c98dcea9697892f543ef0ab9cde9a46695737d4bff30bd18c6cd97
MD5 64eabfe26bb21b54d48609c7288b45e9
BLAKE2b-256 0b8ddcbf576cf098747193f5158d0a7b031f965d712e6e2f927e55a52f87b6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 947f9dbd402047362f0f986b4b56a3728ab4616c34a2db755b237faf5624c111
MD5 f7db4b689c5cf9f2942ea0fe8b2a0010
BLAKE2b-256 4342459c23ec1c7ecd91e9b400123c30d66fb2633d04a391924a3b58ed005bf9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 449.5 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3e59e4d9ada858d7e3a8321237dfe4493d2ddc546aea28fb009fe75efe9846a8
MD5 4f85c1a1abbff90116d8d06276af9a67
BLAKE2b-256 90c2a82b8dbd4595fcba0237b04efcac17cfaa0231669cf1619d7aff7b938019

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 511.6 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bd4ad2423947606944257be21964034436ea64b5e2e52b44e7e23073ddeea64
MD5 b1f59672de7729a1a22091984961b1b1
BLAKE2b-256 9a94551a6242b9cd41f2f96def47c6c479be5718e35c60d24cbed96432ce5789

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 448.0 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e26be357e5cd159857f898dc164509c0612c379e8e582fcae534b22b5f43759
MD5 d3c213befb0bc2f60a939540f756791e
BLAKE2b-256 25e736fc131354c26a5e897d0f222b63bb986c4c3e7e8be0bd8549de325bcfda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adaa6f84813e311684411d46f1d3074aded0dd984d898365d12e6788d0e6c666
MD5 226462b2391bd29c627d2e0034194362
BLAKE2b-256 642aacba4815a0c599be7c5ca69d0ca47820cc20edf32178c346729f3f849855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 196371b1ceeaef17b3f96d6c3d38bfd47e2b79888bbcb5c6f826af0c562bc1e0
MD5 8bf3be50ae908ba04403c6b7a66f7c8f
BLAKE2b-256 ef4151e30b24a4cb5f5e8a0938eb2e227fa7194778507d3f29ad20b3541a9667

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9646579ee9d0cb78d3e0c75902f9279c8355c35fb7b51f1a40b430508580bfe5
MD5 8248e37ce5728979b3193d6acb27284c
BLAKE2b-256 9b2559e7fccdff8e27de0b5999c5a6ed27bd12eb0ec291b2ff44a52742ba8258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d116bc9d2cd31ee4991d5d468eb236100aa6f1a7652132d484235f5f8f66284e
MD5 4cdb28b6019f5358b845bb89cd2f047e
BLAKE2b-256 125df6668108a661da508d586703f9c52c8525dc1081dd6b64a39c058dcdd4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7e70dd2f0fbbe12768af8582387501cc6af4af33acb64b77adfaf753f966804
MD5 2c0f74b7ac96a5f0a26d67c68bc7fd33
BLAKE2b-256 018fbaf5d911675cca8e2bc7e797ff8c78ac4c1537758df0aaee8a3867a710bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ca046d1ece6eca5050ec6ddc9d5bd1a6ee797d23299a7765ac97f9362ae4ad87
MD5 046dac51aca251c220a2055db08a30f4
BLAKE2b-256 41f1af2a8a0e4ffd0c33b6106dc446bd33adb3d6c8936b1834fd6a453c4e1fba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 448.9 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 40d8d56278fd555ffc50338dfdd3ff6eac9ae50d62d465c49ca60593d250df25
MD5 0e37d0c3be8a3d0d28ae1c7a7e2c74bc
BLAKE2b-256 42a9f4eb15d4f42678b0a22722d3513b35b867b41dfd8ae55ae8ae43c186529c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 507.1 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63c98936f7c6eb7003e00bc308fb97542321b8a024b40ada7b27153d9c0f9cda
MD5 b53a5d686b8ffb966dcec4b0764478cc
BLAKE2b-256 aa314f9c495d436fb0e8470a3e47fdb04f9edbf433aab46c2759b8ff9cf353b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 449.0 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9273a83998f2b0202edd4a7d6b81952ecddc6d330f0f7cde71509383c36d7457
MD5 17971289cbffd93c32f3aa884e826cd5
BLAKE2b-256 7d138b08d6268320d96e93291e7f0d4b026a50481da9ed05ecb413bbf8cdfcb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac42b6a61a205bc2d75f0b23110f87c7532a5a4c629b672d328b57b107a2683c
MD5 a69fa01d84b059764947b2d46466cb16
BLAKE2b-256 e01aa08c1d83f5bab8c51f9fdd3ae841168e2c1dcecfd3ad3dada43408ada1f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58ec3f21685a51a25d715b1b915ec9c6a456d24307bd583b254d6babec641bde
MD5 25b8f4bbea503ec832cf38055f576681
BLAKE2b-256 81ec973523a14fa47cb4ae1cf792b27bd76f4f03098e6fa08be0fecd1cb55487

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f577d343a563cf9ad922c6a2b50907ffd818c246b2247825862e024651fdda99
MD5 4ebb174d901d5aea2aa74067f5cfe036
BLAKE2b-256 85d82109d52fa294099cafc696952f03cb63a3682333dcbaaf502c58b8b4dff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef5d5aefda8959a3ce71532717242e0a7226c885f4daa2954e28a7bbe1eb7883
MD5 a8bd3eff2d5f98b272c118fb888031b9
BLAKE2b-256 7e0b4cffd4445b812db47a750d990e96ef1020468153a44f278909cfa927d119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed758bc6d9ce844fac230b61b6c48c74bc50c02d2b54dcb9ae6023cd7c39640f
MD5 5d65f9517f6b0a0e060183d9795e34af
BLAKE2b-256 4bc8e105aa4dc0973051a33f938a3b654f2196c26219f094cc0fc1c96119cb96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8b5449effad1684c383a74cf687db66255f7d6046babaefb7da47ae7aa88313
MD5 2800ead9723695eecd09efb60af54471
BLAKE2b-256 60ed6da90f509217ddc322d6fc04d4509e62709edf5bedff1cd40600574fc2c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 efee48fead08e26576dbf72f87e7a3ed3491da6ecdbc04241ffa2877b76fe0cc
MD5 14f58585fa6dd0aa6145a39e77c9ede4
BLAKE2b-256 ac583655e61bbbfb3ee222924d3f33cfd57f628d69f9d83df631a04803610815

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 509.3 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e88c9c3376d90de3168ea549e3a3627877da984d0a9e58cd78abfa3a63cb7735
MD5 49513a38ee93fbca0b18b679da8c8aa4
BLAKE2b-256 3e0b37a8f281e6638fe1cec01ef1624583339b5c38df3d227b4fa3758bb23a64

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 450.7 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 edf07ad193b3c007be93dd94345dc8c7e687e47903dd8ec63fd329c9d116d805
MD5 e4e7b8cd599c14a1cbe4fea54c20e9b2
BLAKE2b-256 63b5a2236262affb0737baf033df3589bf53a7d658055e7f4c4b7a599a55daac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 454d08dcc9b1984956510ffb9ad302e119b500812801d18ba1cc82b168403ec9
MD5 7ef96b1d7912f6fb09a0671b7e45df38
BLAKE2b-256 13495da9c5b4a9c2266519a7afe86e54eab7caa43326b3fd6df6cdd565e0dad2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dd3fec5c2fee8b6a38d0da48c9f6cc6b54c0302b49c31f3c2975e0a0aac4104
MD5 813fd85111d6cb1ba4ae15eda9646620
BLAKE2b-256 497b79a8e26a070ac9a3e128c43fa155be509a1f4985b8f4cd5aeee6b167e119

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.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-1.0.0-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.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f476b8f884c500cab735b387736a117ba0b1bacd46fbfda14b4a3277a7ecaf04
MD5 21d31c037056bfbbaf136e42c3dc7765
BLAKE2b-256 04eaf61b2b97431fc2171e0b51828b89ea78c2d90a85ac872f29456dc04fc133

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0700e661618e694a55e898065d0980b592e92bd6f79ce44718696bb5500ffe7e
MD5 0ac43df9f4f5d5d1b300d65cfc046883
BLAKE2b-256 f5e3a74c6e4ec1303e59107160d4ea79e319e2acf90a395ddf10d600b2257a4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4d6c5cc3ea6c6221e0a2bc1a471fc94a1734bf6801b8cbb9f07387650fc3142
MD5 64d1c6c5869b8ef18f41cfbde6338da3
BLAKE2b-256 2dd403dccd0014105e399d0dbf1255401bd9eefe511515fcaa8cffdf352a751f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40f63136bb722fbecc4f6a2d550211106657c6ddbb256ed74ffcf824528c0929
MD5 9a685a2ed4fea987bd815caa13fd70a0
BLAKE2b-256 58103cd00ab380133997986fe571fa7ea5858bcc00ae43308c58b92cdfeafc64

See more details on using hashes here.

Provenance

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