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.4.tar.gz (698.3 kB view details)

Uploaded Source

Built Distributions

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

aiofastnet-1.0.4-cp314-cp314t-win_arm64.whl (488.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-1.0.4-cp314-cp314t-win_amd64.whl (561.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-1.0.4-cp314-cp314t-win32.whl (494.9 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl (655.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl (645.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.1 kB view details)

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

aiofastnet-1.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.2 kB view details)

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

aiofastnet-1.0.4-cp314-cp314t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-1.0.4-cp314-cp314t-macosx_10_15_x86_64.whl (588.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-1.0.4-cp314-cp314-win_arm64.whl (453.9 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-1.0.4-cp314-cp314-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-1.0.4-cp314-cp314-win32.whl (448.3 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl (635.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp314-cp314-musllinux_1_2_aarch64.whl (611.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (626.9 kB view details)

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

aiofastnet-1.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (602.3 kB view details)

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

aiofastnet-1.0.4-cp314-cp314-macosx_11_0_arm64.whl (534.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-1.0.4-cp314-cp314-macosx_10_15_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-1.0.4-cp313-cp313-win_arm64.whl (439.4 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-1.0.4-cp313-cp313-win_amd64.whl (504.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-1.0.4-cp313-cp313-win32.whl (441.0 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (632.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (602.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (624.7 kB view details)

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

aiofastnet-1.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (592.5 kB view details)

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

aiofastnet-1.0.4-cp313-cp313-macosx_11_0_arm64.whl (532.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-1.0.4-cp313-cp313-macosx_10_13_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-1.0.4-cp312-cp312-win_arm64.whl (440.5 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-1.0.4-cp312-cp312-win_amd64.whl (506.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-1.0.4-cp312-cp312-win32.whl (442.0 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (637.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (605.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.0 kB view details)

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

aiofastnet-1.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (597.1 kB view details)

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

aiofastnet-1.0.4-cp312-cp312-macosx_11_0_arm64.whl (536.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-1.0.4-cp312-cp312-macosx_10_13_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-1.0.4-cp311-cp311-win_arm64.whl (451.2 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-1.0.4-cp311-cp311-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-1.0.4-cp311-cp311-win32.whl (449.2 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (637.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (615.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.7 kB view details)

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

aiofastnet-1.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.1 kB view details)

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

aiofastnet-1.0.4-cp311-cp311-macosx_11_0_arm64.whl (539.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl (552.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-1.0.4-cp310-cp310-win_arm64.whl (450.3 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-1.0.4-cp310-cp310-win_amd64.whl (506.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-1.0.4-cp310-cp310-win32.whl (450.0 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (637.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (615.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.1 kB view details)

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

aiofastnet-1.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.5 kB view details)

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

aiofastnet-1.0.4-cp310-cp310-macosx_11_0_arm64.whl (540.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl (553.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-1.0.4-cp39-cp39-win_arm64.whl (452.0 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-1.0.4-cp39-cp39-win_amd64.whl (508.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-1.0.4-cp39-cp39-win32.whl (451.7 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (639.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (617.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-1.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (632.2 kB view details)

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

aiofastnet-1.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.5 kB view details)

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

aiofastnet-1.0.4-cp39-cp39-macosx_11_0_arm64.whl (542.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl (555.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-1.0.4.tar.gz
  • Upload date:
  • Size: 698.3 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.4.tar.gz
Algorithm Hash digest
SHA256 23ad044203a1ea469d40093ba557eb13b483b040aa564ab214e3ba2a0233c549
MD5 aced0d31c4ea7ca3e107aa839e02665d
BLAKE2b-256 06870c9ecf9ad2f02f8d1fa7a69f8fd0022327e1022537bc8bf4ed7d5776b471

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 488.8 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.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3f43ac65069c445a928759abc81f2a7de4ad5c4a2394253c8dacf4c14e9a837a
MD5 71bd5664bba28c7ba7b02a4a265c4fe1
BLAKE2b-256 b4a9f7ffc0e5de4cef1462e75b1eebb88c0974d583c13fc0fc6ae8788e8082fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 561.8 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.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b0f82f78b9cf87bcc03d4666a833ba912f1f6927f2640fc64c3edff8ecb692f3
MD5 5646b61b003738b825f03596e65799a5
BLAKE2b-256 84458482ab4517d06ad9dcf160fd44a0c62936e67f7336e175bc221bfc0a0ae8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 494.9 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.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c4c4c01c688a57eae3bda908351b2786d47076fa7f2fd802d198774075dea6e9
MD5 5485ddcaf9afe50b8f771b9f45cd683b
BLAKE2b-256 432d416351c06f313498f052fde10181d8efd520de77cd9353186237914038e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98ca0265b763f46f3ebfe45a108718beb0b8e942f6b79df403fff303ca043d84
MD5 af16297c3305b54b2a70b4bdc1343b74
BLAKE2b-256 1ef4600c3e9f3dd3c90652010e42d02ee337f591161dee75591af9222eff3633

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 107d7a75b7f19abd8c80a318a6771f592e184d6736ba98458a7b48a0a5dd168f
MD5 438e05690265e79a0dbce6bc78f07f39
BLAKE2b-256 6d088ac1cbdd5455f1af5387b0584512e788dcdde41e21b7c786d7eed128cfe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 955218740ae520c0ad4aa7c97c719d447cec9411bcaaf4ced69d630d92210a69
MD5 1af3d5d4c6c96158384441a27b6bef66
BLAKE2b-256 a9a1f5fb03de6914177079ccd6b5e559ed1bea4795441e27cb4b6fbf51bf01b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6694364ca4f7cc8194aaf92e9588c295c3c9f5050c744610f7774e8c37817880
MD5 fc1f990d9c7c9e734f5b71177d8fb3a1
BLAKE2b-256 f59c24750a4a21698a3762739313f27c80a508c4cdc3add1d743c936e20f50f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50dfd6a544199e68b5ffc9ce5f3f16eb9f6b317cfa69e149724005874b790001
MD5 5971047b2dcab7385b83c4bbfc1fa994
BLAKE2b-256 92f6c7878a68bf730cbfcb00ad944f5441630931e3349f4cdf6cf1e43191501d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9aabc185e0572f8dc87d6666fdaffae7932855d455f114c4cd9970169ce6df4c
MD5 5ca0d9ab054f7fb23966d34f908d657d
BLAKE2b-256 d193eb23f4ed7849d13314a831ca6d7d25f634ad16c00316b81613f2df1317cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.9 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9672954788fa2cf6af90d3e0219f6cef84321f708f4da709643b0cf8418a3fdb
MD5 3152e16064e14c6686c39ce3e5e59eb8
BLAKE2b-256 341c241bc3d494ae0815ead73f0430627f4aca0c78d4bbaf411c3c2c8b201bc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 512.6 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bb4db15c9d1238365765eac837c4964b50fa7ce8f804a52288c01e7fda731f44
MD5 fcabe36371c90c59dccec683bbf9e084
BLAKE2b-256 96f454cf30bc4a4d36754bb30cd68a54b7dfc59f1c94f3599b6b7e62eaca65bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 448.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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ebcd153cf399100806bba6da75129db8cc747f61c5a185b4551f6af9d16ad26c
MD5 4d624d9dc4abfa4219e1ea9ba027fcac
BLAKE2b-256 723556862a16effea4d0e9dca72fd14ce4ff5b7b993870123bac85bc2e52ac8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbaa3f2c1267903b5e0e9828bede3eb04a7e4cf81a7a9a09b498fb361e66f809
MD5 c048ce2b8a27fb39a721ba048c5f969d
BLAKE2b-256 c5e84efb60936fdca2ae2d2156e8fd9023f0b028fc0f5dd7034e08dfe767c79b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc4824966eac063f0f993bbb075c70e8fbabd439b82bb100048db0a72ddf9c3e
MD5 be7378ab375983e31f87e74dc53ce05a
BLAKE2b-256 65b59ce92ab96027690569ed53398a2136ea7a9b70bc2b20fbe764843393d867

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f50932586539dd85343a3f51d344fcd5379b65a77dfb4c0fb5809587078aca7a
MD5 6d2b7f88fc74e50c8a01217de89b3b1d
BLAKE2b-256 cc8ac0d92cbcbbef4801239e6f07b0260f74e705e51f5e717c5e55b1ecb51c15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9ea60941eb9858eefe73369af36dfa7323c21bb1fbd841c872acb4ae75d60098
MD5 38fa11f0f63f3272ee037e6810ae2411
BLAKE2b-256 b766a94ee2925978b69bdc69416b5bbf241d50ee3a5c7d07b12ba54fb896043a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce3b42f8e6b12aaf8fc6d223a037beaf2ff4bc7d7c5ae192082e46b31070e754
MD5 18361be8dcad578e4674b5eb1e8f9074
BLAKE2b-256 4dfcfb75a128f8bb014470dacb4e9d6d1f9fc703c50d604c8d0c8e916b8dce51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 791125f3f573b9f98ce117a3c9112944a5e0aa648c0d04d2a8fb3587b0beb0a9
MD5 bdcb9e221cc2fb9962383aa08049bd64
BLAKE2b-256 f6656023d6c94afe2d4977d059ae73946bafc49fcd7cf2d977200bfd9c7c3b00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 439.4 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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1df4412bdc122bd854a63dd34a325c6d16f2f46ccb6dc10067ed9b9e5b50a5d6
MD5 50de5c358d36a7e9a99127ca8aae0db3
BLAKE2b-256 54c8ed0a062106d3ad0226adf1b8d36fb49776eeb17c165e4bc371e1d44a442b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 504.2 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3453c3add7c96be0365fccf1b74469ceb51a81e53e8116575c7045f0e6cb3006
MD5 184556ebd3dd03a3b5c7beb87599d1ef
BLAKE2b-256 2fca9ef40026cf09bd8d6845e710f004df44f77b7fd6178299711b041f9b9507

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 441.0 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0a4c86149330e7a5334f1689dcd2373b1f446fd5ec71e075cdd6039de61058c0
MD5 815ace86c67c05b9fba4d2d0b89d1372
BLAKE2b-256 25554f8d0abb986395a394229ff60d7de23588db0b9c9c39d35606d5e3565141

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43f114618da0eb4cf034617616e6286af2fbfaf2b27df1baeab174d131c75333
MD5 8bc0ba120bf60322129c67756acd0f3d
BLAKE2b-256 0a3be30bb77003756d5889200f5baf331b12a9b765465c2ad8f8f34948fe4f33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82aaee5435537a0fb5fa44487ff74eedc341b295c2bd68ccfd6bf9d803e5a247
MD5 e4f09c4cc4189d6e3dd726d18a951557
BLAKE2b-256 7fc29770c05d0c50e6354fe26be61e9eebe0530a2b595d07c3e23fb3a89e19cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20fb7a690ac8c693357f97f0d6c71b573d09c9304f2c4b02e2a77728d6d67257
MD5 943a91e990a6af01377524ad8fefa231
BLAKE2b-256 9dfc40f8d65fee933f25f246d6db25687fb5136909fa8e4407ef34ae0d1d6cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec758c19330c57a63f02e1dd323aa452f1509e9cdb80ae1258e6c9141daf3aed
MD5 c7c0f7e3b6f817013fa31e5a91aac6e8
BLAKE2b-256 11224c07dd314c049f66497ed9397030504e03447f99f55ca78f8cb0e1fc39b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3691e674d6bbafd2550574e724b07351dcb31c3f42f9ccd35c7134e540589f5f
MD5 6daa577214d1145c618d03eb34ec444c
BLAKE2b-256 a11928c5bdc090a990e5d414dc10cd779d87515e2da17517bfa3e48d2f9be36d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b7aca5c38612eee2bb9abb9f5b95b6887e49b7be3403343469e888b428d75ea
MD5 c8e83081cbdef6d67fb2b6a2f8a200b2
BLAKE2b-256 e93f981e89e1f04886a5799ddda96fafb1d5b6c6b6cd93d31e1989b418eeda2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 440.5 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 6a7758097110dc6d79f2c83348a7cc4a23803d1acfb212fe1cb9a59e5f15003d
MD5 91d8e428517631294de2aeb6f8d1b380
BLAKE2b-256 557a04efdf04824ea0e16342d63d5744735216a5954fb0a1df2d506045b60045

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 506.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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6228d48699e9b5fa5c14597b3ce8c1eeea53346ae809ddbaa0632fd176ccf6be
MD5 0e9065194c302abf15bc82419b5f1ec6
BLAKE2b-256 f458c7e63780f6c1fde527bed995334dbc977e6fbde67e543209d4fb5e2fe403

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 442.0 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7765f310ae9a03c01a2efe87e6ed1f7a8690b296d038fc834b12b9f27438877d
MD5 88956e05fe7243201ca736889a4d713e
BLAKE2b-256 788bb055a5962aae07aa50b81011ea620daee33bd6c1184f8929488a96ea60f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae295ac23ef346528c640f29b27515a6ce678340ec647f6ea6500df6fff45a65
MD5 611ace87cdb08f2d2fc5831907271d53
BLAKE2b-256 d637897717dd8c75502a6aab3e2b880b2a8946048f1cf98039325acd2499d910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c10557bb592082edc7b5d2a54d010a5a7d1b04df7e108ea0d0f82da147665c49
MD5 962c05092583653122623cd5ef295ccc
BLAKE2b-256 bd06585bc47fbfcec50f22b71a57ae7ad3a48ae1155bfc4e3ae0717fda347670

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0e536cc300ea2b6eb35b6a7567738a0e67192367221b04f86d8008d946d919a
MD5 25c20cc2c7ef1c87e4b7ccc4298e9150
BLAKE2b-256 bf6a7410387a64dbdf71a979e82e31401b200b334739ef98e0838fe4ab98a663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bb050f7e3f2179dedc19bbd0d6ae4f064af9a53fb187b40cc4525aae4892110
MD5 77507b834264644b59ee69a82eec3984
BLAKE2b-256 cc5d5005a992ddb6b77f3e3af8c9721ff98bf881e0d3ced6d57f7935c83329eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba547a736df4f3e6dea424557f65d9d5d8af30d6fadc1fc83c363cfb425d8696
MD5 89a3879a7a894535b98363b4481e4d64
BLAKE2b-256 3159118866534949851ad50f19e25615c0d11fb9f702c6f6ef6fd49a558bed24

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56ad8124ed07111bf6005af17c019e5407ec21252c17a9a5dd684e72843bd70d
MD5 1be10aa58b4e978c1c4228cf3d4b1e0b
BLAKE2b-256 0340d7395059498d342d4feaf3821640116987ca6459021b8f5d095a429d8262

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 451.2 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7a1450d0bcf0822a7dfaf9d656e067d8ad7829cca45552eb94cc816aeca3f521
MD5 d4672e531970c6af092f530f7cf540db
BLAKE2b-256 932512e55d5dda674c74d1ec3d36b9c956259e87a1a30246b2c516b26e0f2461

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 510.7 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df71a8ed057233d0bd57e88d36a48f7a281f67835335bbfb9ac7cac1015b93ad
MD5 4dfac98c66bffc4858d79e03f3b31d8a
BLAKE2b-256 4a47219a756de191eb63a659e465922100ac40071ffc05f4ac9a36dfcd832cc5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 449.2 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c48d22c67b4f63b8d0905366e038208cfb1f465bb1ab0583ca0973876c52b203
MD5 198b9fecbf5ee7a99f62456dc3b249ac
BLAKE2b-256 423f33bb876fb56c86e8e25d4daae1329884c33d733cfa9629a56650e5983e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb5ea2c050d3af13ac55981b88645f2889fe6c29ccea981faf05a05b64f69881
MD5 667c195a61988a9fcd6fd6a3041eda78
BLAKE2b-256 de75482dfc9bcfa3d554dbfc7a75b001a50cce32edc55ab7a4e9422e7eb78e43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e11d521c71907c7a2aa172cde1669f9ae543bc07186b686528f6d41555bbfed6
MD5 0c9c468767f7e75f0d5f873b6fda5292
BLAKE2b-256 1082a645acc9ce397fdc9933353c761fe7c6c3cb0f8dd96d34c66632b5c1d932

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83a3ed8562f52de4a6e86168e39624cc0d096b4deadfb9d381f027a90740c8ca
MD5 737f5ca80701d5288786810d647c9831
BLAKE2b-256 4a11056e35e6e9b4bf4f27506b7334a9b1e7e94d21e147e4f40812dd2811f486

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83fcec63763619e211ed1dad72b5ff29300bdc487f7348445f3a6b316eaaa6ba
MD5 df4d84cd24ec6213c7db0aeac88944e0
BLAKE2b-256 9c4699f11ddd0d3cca4a9a406d2af516cadf0c1339a1bbe340b9a98cea97ca5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fd2214587263a49eb5e8d95757e785b91e4a0694b495e959359677c1cb51b22
MD5 8b9058d2d428d3c2de064f4620e0e8c3
BLAKE2b-256 74abacad66174aba4a6d2c093c5f6931d48735c3a9a70fb44f402cc2440c7269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9075f524e00ecff53a38cd35a82a65ad34d70175189e2e0dae59a333f75b1cb7
MD5 58a3afeb913066ac188345183c561c1e
BLAKE2b-256 0353150d34aa3a70f291194b9de85bcfb361c4ade543ff0ac300775313cb2a85

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 450.3 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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2978a62290d4de0769575828ca8cf74bde03dbec048bdc5ad0ed606949268a88
MD5 44e3d87c62b68081b1eb643b3193afdb
BLAKE2b-256 fe67866e5c5e53db5244e9ecd9feff1644a3d042482de788466b067c04ef4671

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 506.4 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ec48c879eeda16bca471ce5b96533ddf6fa31a4af4eb9850f555debe3236ebce
MD5 b24c367f40ce032598555b36c6118de3
BLAKE2b-256 2e1929c1d6105552f7f137a391611009d66d70a0a78c204198e46f21afc71c77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 450.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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 82bf0d6430d4d88c38d457fdc29367fd96426f6c0afba4884ee05bec5f0bde63
MD5 29af7f8a29a278ab9c4d68b321b62d25
BLAKE2b-256 78c15d2a4143d86a2dd6353d8a77d7bc184168289ac0bfe18f85b4357a292b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5acbe4da7369f57c55858a9354eaf3e5801b82aebdbdd9df303ec285583c9e4f
MD5 b6020c3a9ed4ff12926b0cff4596b164
BLAKE2b-256 7050eab782a2a9c1995aaed6e0e7748dba5c676af79d20eddb781a40fd89c1f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a05caac162235f28cf8b06502493baa200269086e48cd700f9f7caf83e4d1634
MD5 58bbf3cea5830772608d78a21b211538
BLAKE2b-256 a6df6ff7eed2d0de0d57cdff1b019b55716034ba9fe4cb2d9521fc05ddcc33b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2423acfd497a6721613fc402c1bca8b2206c23ef879ed3a8f610669e7678fc58
MD5 1d0b5bafc723053d29a6d2b45b9e1801
BLAKE2b-256 ae14769341582ff057c94db690f7862332d6e210c11e62647587314bca502a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 743e008dddb9840439876509ef568791dfab638de23d0c0bf5606532bb778900
MD5 6ff4d63372fa8706028031c106a4df35
BLAKE2b-256 d33a075c0df18306d4adeb8cb1041fdbf71ef0cceb4b764dc4cbc547f03174a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e05231b74bf617a7b6bd25b673eb8a0aba761937ceee7e4b0d1e913b21c23308
MD5 d8a07efec8916e4429c28cf51d34d1df
BLAKE2b-256 2b7ebf4af13d8261c44c1498d8813cd68018312e05f2c68144a8746323f3459a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a53762ae5906f74e0ece10d348d9376f8b180ba429c8aa116651e286ae7f64bf
MD5 85be5c3327845977fa6decb998118546
BLAKE2b-256 cff5a93c4a94d0f547bba3d38c1bc579de00ab5f70024f19b3e2f3112aade08f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 452.0 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.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b69feeb70c1bbd6473a954c3453a39e97e705c040ce02544cac03f5a67248913
MD5 54421c9e253e620e04af2b27546c9d98
BLAKE2b-256 2fb7b51a2bc300b62bf8310e485a13e9e1ed67661308dc1ce82521d0a6cf7efc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 508.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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8bb8f815d8bf79779989ffc31e0a2a90cf7bb7e13d4efcbbd3102077af43415e
MD5 2231fc9e22e4a08ad143c8b6aa1ae122
BLAKE2b-256 a9470641051534071e10661d5664b475b540341d27cd768b01c0f5a9485c4c5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 451.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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c886cd9b93fcab0d3bbf1678ff3c363fde15c42204f42f0ad4d6d51760350ff2
MD5 3b1f914e3b41ea8585ec2fd5f65cc193
BLAKE2b-256 651771a46aa8f945287ef477543896aba0e7a32384aabcf8da1130c69f3953b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c37de33730902aabb82458625135183301c806a7b8e5782f9e06dc6edc46825
MD5 9739a66fd6ec4fd0563e428af4d9000a
BLAKE2b-256 38ff54228435397def1d74e480fa2f5437b7175196cf2fe6f2a9bc75f2296279

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a703901966e2144be3485b01c8f10faab7c8a55960ee20601103845d915e74cf
MD5 63fe648b3e70e942454d86f33c0c2a63
BLAKE2b-256 575b252a0c328e8137fac56518fe3fad7a68d8cccbbc456b88b4e6a9ed554781

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c92d8ae39065c4c78a1536490af29f0b356bda063f38426f77af132ad8a514f
MD5 9b4bdc6c62743739251361ff7b57557e
BLAKE2b-256 af360eced391ecf0095d4b682e87386b593f4af8da6e0aa2576705504fb4e1d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d80f596d5023c56a567ac73869542993970cb37f06052f7289c7834e3a3ec110
MD5 5834c237f2cf246be71ca6e000fb2710
BLAKE2b-256 b249ed14701d4902e48ca0427538a440098c589c08e8cc77f9af48461179d03c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7801da38522c99eb0872198ec56c2abba06b174a95601199b86f4884ecf99c35
MD5 6a9f75fe80e284937d8330e94a489a7d
BLAKE2b-256 1ec1ceeb53274a79714c5fef68d385c30009e5e2fd0c301ba4d9bdb35b7f2ff1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a77412d67db7e8e6d52749dda1f72a3749364e85e9930fa3b0ba13f7c4690db
MD5 7d146c2fb7ba997503353d256b11d690
BLAKE2b-256 84d41101cfc08831f917d4cb63eb50d77d865ec67ca5ca82fd6b1d12cfaf0f31

See more details on using hashes here.

Provenance

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