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.1.tar.gz (705.0 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.1-cp314-cp314t-win_arm64.whl (488.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-1.0.1-cp314-cp314t-win_amd64.whl (563.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-1.0.1-cp314-cp314t-win32.whl (495.5 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (662.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (651.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (654.3 kB view details)

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

aiofastnet-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (640.9 kB view details)

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

aiofastnet-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl (575.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (593.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

aiofastnet-1.0.1-cp314-cp314-win_amd64.whl (515.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-1.0.1-cp314-cp314-win32.whl (449.5 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (643.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (617.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (635.7 kB view details)

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

aiofastnet-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.4 kB view details)

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

aiofastnet-1.0.1-cp314-cp314-macosx_11_0_arm64.whl (539.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl (554.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-1.0.1-cp313-cp313-win_arm64.whl (438.8 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-1.0.1-cp313-cp313-win_amd64.whl (506.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-1.0.1-cp313-cp313-win32.whl (441.8 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (640.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (608.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (632.6 kB view details)

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

aiofastnet-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (599.5 kB view details)

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

aiofastnet-1.0.1-cp313-cp313-macosx_11_0_arm64.whl (535.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl (553.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-1.0.1-cp312-cp312-win_arm64.whl (440.0 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-1.0.1-cp312-cp312-win_amd64.whl (509.0 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-1.0.1-cp312-cp312-win32.whl (442.9 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (645.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (614.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (638.5 kB view details)

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

aiofastnet-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (605.2 kB view details)

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

aiofastnet-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (539.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl (557.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-1.0.1-cp311-cp311-win_arm64.whl (450.1 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-1.0.1-cp311-cp311-win_amd64.whl (512.3 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-1.0.1-cp311-cp311-win32.whl (448.6 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (642.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (620.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-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.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (610.3 kB view details)

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

aiofastnet-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (541.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl (554.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-1.0.1-cp310-cp310-win_arm64.whl (449.3 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-1.0.1-cp310-cp310-win_amd64.whl (507.9 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-1.0.1-cp310-cp310-win32.whl (449.4 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (642.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (619.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (634.7 kB view details)

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

aiofastnet-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.6 kB view details)

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

aiofastnet-1.0.1-cp310-cp310-macosx_11_0_arm64.whl (542.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl (555.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-1.0.1-cp39-cp39-win_arm64.whl (451.2 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-1.0.1-cp39-cp39-win_amd64.whl (510.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-1.0.1-cp39-cp39-win32.whl (451.2 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (644.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (621.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-1.0.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (636.8 kB view details)

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

aiofastnet-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (611.7 kB view details)

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

aiofastnet-1.0.1-cp39-cp39-macosx_11_0_arm64.whl (544.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl (557.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-1.0.1.tar.gz
  • Upload date:
  • Size: 705.0 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.1.tar.gz
Algorithm Hash digest
SHA256 568949a4c32aaae15db29b0188540f094dff8dc336e7098359d33fcb834b921e
MD5 a594f7df4c1f4e2bcf8e035c88972790
BLAKE2b-256 e5cb555632af1f0845779bd50e387cfe42d4166864269b4d0de6e40dd749881c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 488.3 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 784f9c577b131036b23498eef0b9c8e7fe81bfa86844a06d3a4077cbc860e586
MD5 2f089bfc516d54e3b2ea0baa9dcc4f88
BLAKE2b-256 073f7cc15d917fbbe60ef132a8e46c6f6319f9d8872ad2ece270f6fa9e6f6cb1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4db3f9c4db033a2b7444cb452c86e8bbbbfbccbfe90e605099ee74e5ddcd8a5a
MD5 a1a377c16106716121830606183c326e
BLAKE2b-256 581ee2e98acc4150c486d89ff4c8dcf0f5072f6f696b346bbc03eba060205bbd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2fe33eeafcdf881e08a22276aa772c5862f38335996f2750a563429efb1091f2
MD5 325343468e40864789ab7d3c8cf3e341
BLAKE2b-256 0c814d29a8d7cff47234506323ceca475688ecc2e5e39e7387f5984171535121

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d91d42c64d432559200bed09ed135840b3b6f530ebadaafba5cfa3ac3be11f99
MD5 e116bd8cae7030cee849f0c43639f78d
BLAKE2b-256 ac1e423d1a7c0e5a91c6fbe3f7c14c6c8a7a9ae0e74fd2573c996488b430b064

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e639c62caddf039c2d708a70ef0760c8f21bd15726021519a7242593e33b85d
MD5 15c66d38844f92b716613c2f27e2a54b
BLAKE2b-256 12fb910dc469517d0e76781c78445c72d8d0994f2337fa8e9de4c570b8896a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eaaf95ee932f705c6332dcffc48468608671f7af4f0b177829a3eb05b9dcb106
MD5 c19ab3d952e65c3dbadcec93bb80657b
BLAKE2b-256 1962f6ea43c115bf7a506f8830f0a55518cec22b79bf12a4300f35feebe6db04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8b42a01e7f85d942212334c2ba4f20ad31a7ac8713d919d36284921e7cdb3f9
MD5 ff8cd57c9c1683787747efe1b232e48d
BLAKE2b-256 f100bc401f52f285a80ffb33873a407f91004d84525c5c65b957ba677e287ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f68327d82fc810fe34c097b5ef56dfa6e3d183502cb837c1c2d80db4db38214
MD5 7657e87bc9d7c109b2cc4e62da85e64c
BLAKE2b-256 b904d093fc08ac8ad244e9d6d86b6b802f7d7b2793b39161ec62e9881efad242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 981e08fdf42008e3c45ec71897395666a1aa595cab3fb5b40ef77e50878d0ea6
MD5 fe8059176e710a77c7c83fcd744ef3e1
BLAKE2b-256 536333784dd30061bcdc097bb435702b211a62cf45074785976a17583ffa6fa0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6a021329939358dde097f1ebf054c81e21f097d7385457cf4a796b2e936d5e07
MD5 d13d88f5a456252968d9aaace9d295b5
BLAKE2b-256 c50817a6bfc323e630eb8f1e441b546cefc383724100409204ba5671696e8d37

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 515.3 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 87226ea0e4867e16e772a6fd2f7d233159ff404613a1edf59d9b973dbf74165b
MD5 af306ffc7cb050c63f7b1eacde148b6f
BLAKE2b-256 60164c65f916e44162d5951097524933d3789f7ca7e8cd82d0c639df9f3c4598

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 449.5 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f26d3281875b7da44998a31f618df3af30c61244d58ccf7f5e214717d836557e
MD5 77660293247cd286e0ff8e4d57d19f2e
BLAKE2b-256 d310d2bd0dcf4532457a3f99b4c38da0588ff322acad3eb6e9e50eb66e66a711

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9889fc7438006e555c7c331b39022e1db808d5d5584cdc1eae876b984a596f35
MD5 abd13ae20cfec7df24f8bb5d20e10b4f
BLAKE2b-256 616490aa5908fb344bce1e9fcc3af60e9e3a296caa81a6f361271c66abcabd72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0c86f07193573f397dda26d0bb4e521c7a78c19eb56e5a3090e9adf1ad737c4
MD5 d948f202f8cbde497f2bc4975e7432b0
BLAKE2b-256 9d5baea6f3486f44bd4476404fca1d522129f0f7b3e495c8850fb3c2f39e8603

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14ee70d6692ac47eba866a684f637f752067482e331a7039f0bfdb2e6c81be06
MD5 eb4f1250d217b21e24d0b7ec4c0fb251
BLAKE2b-256 2fbc7c20fd70be2b686f6591a33399a748abd2f0296b506e1ba8a316547d934e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d9601f63669c5416cd53b7ed6aac5fc62435a46944d580becb56da59e831a9b
MD5 a992ada9b628e26835846854217dcf90
BLAKE2b-256 1322be3ca5fb968ef68ab64354c8b617fdf1ad86cca0dc9512d2d52f383792ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 625a15832bea658f06b398d8b92bac89a4aa22b4d0899019db6e07aec099af20
MD5 646aed55e09cb82441d32566ac2b43da
BLAKE2b-256 d8783927683db16fdde2e31e3ea5b24d7c8a7783f2b6d8a2d080e03b30d55aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8c26f026f1b8b037be339afdef3cfe7e2b3981a6eaf97e791c54001f1473dac
MD5 0dbf3d910e8f9dbd1b71c0a0dc54b6eb
BLAKE2b-256 1719f9b8a79747ea61f01e690d9dd6a6508414d539f43075b22758ab9f0d7f89

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 15ce6a2ab400bf43f0473e251800453f45b7b1a9311bd7fdb72b967dfd38e356
MD5 3483221e55c739ce670d0550f9693a07
BLAKE2b-256 e98415ee07e042417658d25c3c76056f62b584a1e1d0e88002443844674f8295

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 506.7 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f39e9e3b65a16570e506ffe984c9bcce1a2acab21cd797b1906a6fe5e9ed3dc8
MD5 034821137d568669c6f25d3631824d2d
BLAKE2b-256 bc9bb4f47986f73a35aa03bc8e58120bff55f48dda1c1a662b2d6f28cba233d7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7c38413ec979c4dac67229968e06decd43da6f06c8a9af389dead1808aa235a2
MD5 238c0a1d5c5e1549cc5c9768af76db39
BLAKE2b-256 f83e012f49b9e5ea2a350367fb28f56c09cdda8b24ffa88bcbc146874274214c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 671f234bfd8e1ee90aaa7d7643f650956166659a6218f67c3fb52b174b7f1cdc
MD5 5091a09137a25d7201274f8742f25426
BLAKE2b-256 766a666f8e728e59385654ed00db0ae7c3774a83b4bd866eae23980d29f2b39f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b39a9575d016259591d0904d7df51bb25a3df046a920d9beb2f55aa349bd5c58
MD5 d01997ecee307e4010902e6e63a438af
BLAKE2b-256 a905093602f9d183635d6a739d75164bbed1eb01a96d3032fe74d193e227ca12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 761c99756cbe6603e25e8161a92535f4c2019af5e20c2c3d643a76fc46b262a4
MD5 c81bd1c19052426765d08317913b6f78
BLAKE2b-256 19b5842e371a9bb4027ebc281b26d198a6b3d16ffdc41e36bc32cae749f55396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd50592244f862b06d6d193c929198c66c5de0b44c4459f1261cdf74ab12f645
MD5 5ead572f9e0cbae39ae10e276c77d57c
BLAKE2b-256 0e8a56fba8950962109f01b66f0794ec680d69e26d7af70184d58609e5e00635

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 108da33e6ce670386260d2652b41c057819a4546a512ae5476b2fc4864839557
MD5 a9c4980ead79070df6be62c05631fdd5
BLAKE2b-256 312053180cf73a6c779558b2424c0dc5fe6aa611ec462099fe0e4fad27cd0dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 628a1ae7ce59b89240fb8ce2be5a565c330fd485281ebb419041ed91e485f56b
MD5 cb7cdd819d2c1a404191dd1c83f7cab5
BLAKE2b-256 a85a054ae36748fb80379e236e20a0c23bd57daa9d5d6ab31b19560d2788bbe5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 440.0 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 515d14cf450fc040352b45ec13d2a0d398c31231236af636624c3a3ac96123e8
MD5 d262f412f11184dd2d190ed890c1dd47
BLAKE2b-256 8ae39d372dcd20336945e6df5a6e2920f1ffea643f15d80e0d6b99109e10aecf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 509.0 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7f1e40393ebe45a0af6024e4d4ddfd619944323def60188fa87b6964ec233c1
MD5 28db685a9f2a6b1c06c6c52c5ab022d6
BLAKE2b-256 f6e81d4340563c03f023427b83cf3b38b47654d564e1546062755ad9c3306186

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 073a3209c4c95a69392cacad954db396d7d2337292a517d9021fbaf39dbc443e
MD5 40a95693e47fffe190faf6a8812d698d
BLAKE2b-256 7c76c565ea53d500041f9d6634998e10d9709757a7692c74b606c99c2d202ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90123b2f88848abfff5f735c4de71929f4b0a3e528fd59ea8b6b8dc1be505375
MD5 bb0eb11e8c9100d89812f7352baa1057
BLAKE2b-256 749819620d7fd73bac7b281039f2f8c0108bdf7a59833190c36c8b329e271904

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a565d3b4cbe48427fdbe87efb316aca98706c0d853a4e947dda01fa7b21b9daa
MD5 efb310efb7e6be3a1fb0b028d43da997
BLAKE2b-256 4c517a2c3f7d36282ca06255c1921e298e341cc4cec1d1e88d350b01d47b5582

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a7b81f3bb6c714309fc3e9b00c77404a13433af39d177620c9a9e8895b23f20
MD5 50d65cc97a35afbfda89f215affa56a1
BLAKE2b-256 efac647123a2b659b3a88a5bdc7d94c8b46a853718b23016bf65052f46efce2b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 191bf10fd734118b106b5b4c8583abd36edda383708fa23e0536500f41c96107
MD5 45a7f6e1d8ac4f44453743d5a8109062
BLAKE2b-256 48e471d066c5e4fe5dc911e23cbb5187f3153eb78aa5d01d12e7bf03b74b08e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e799e4d441edce71b5302841f6b27f8491f2e49f9ffd1ed5c1b8d8c6318f348
MD5 0ef0b214de8b043c8a4b2e0c80fe5df5
BLAKE2b-256 248b35b1d87bce64a23a7d6699fc2e5cffb2cb7115cfddef1316ceeb99ce3fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1bc64c8843c26b3740ee38ce7f8c1e338c89bed1cd2c01ae01c83d505fe96c19
MD5 e540ed46152c126afca429a84f6d911f
BLAKE2b-256 fc66730f17c863faf9abf7b4e580f3cda26b7eb6f1c677a7558c1e09faeea720

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 450.1 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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f6c08bf9b4ab637d655975bf9e3f611aa1ea441e84f9972c2aed843a6d729180
MD5 ed9f8c97343a38f447deb5fe8cb08907
BLAKE2b-256 341bfa3e683a07e1caa3c7d6417146cbfb6926ff8c6f1913dbddcadd2e52a2df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 512.3 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70c19c94597d10fd7da7dfa8f48a0afa983a6418d8a84c83ec24b813c27d41a1
MD5 621e7c2e6b78b60d65ff55355c643710
BLAKE2b-256 e3e4b9f35a6859e4f640c8ecbc410ef4a3cb3f7138167bdcf28f75a04ec71ac6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 448.6 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d4044054636462d2f5b3bf8c6aff8d0abee23bef49c83f3bc7548d8a3741e5a
MD5 3bfb04fc290c40302f9259c8cdaa2eeb
BLAKE2b-256 aa343fe44b8a2462f74282dca65a395ff7d494577f952e163cf3798342cc5c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78732a9317fac32c227876c51cdb5bd0e97344e7733c98486060c8cf9a8d1158
MD5 116e6dba9e10c33d796678416e328919
BLAKE2b-256 c73e54799e6046f9a138eb823dc104046a2c33c2cfceefa3d1058b47adfed45e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfa05d7cae3720078005a4a3c865818aeb2eb01be233fd98bc172622106ae6ef
MD5 1bcdf668cc6a5780e3ce8a41c9ea8990
BLAKE2b-256 aca066fa2ec57e696de4cf700cf2400f391e6e645d1a9e3930b832c07d215eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a5e9f8aa088a5a2f6346530326f2a1ff55a91d294f36ce83ef871c0969d0367d
MD5 d184665eaa9782b391eac591a61829a0
BLAKE2b-256 2062a065a1b43f7ce082f4bb3b89bbbe45a8564a6b28fd0bb8d3ee31a98bd338

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fd7fcb2e717298cf1300bca7bcd2b850fb0b3cac9fd5a47e21fd3590168a1ed
MD5 57df95cb39ddf1d2320498f2ca8325cd
BLAKE2b-256 08d0a4c832c61a3f73d458542c274c3930023fc6c33d38a86972c0dd9a5247d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c72006ac07ae9b3c576df760fd3eb821bf4422bb1054b522f5bbfc143647edfc
MD5 ac1c0ba911ea4cfbb5bca5c3de206d0b
BLAKE2b-256 cc6c16528ddf242d8d52c29c05eff9c050039ebe2b760c0f9b24045e9c0f67b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56a499a5d08d5abeebfcb1818249972ff4a4763c0fa0ce3a495efe34186d3973
MD5 bab4dde81f05c4d26e15279fd370ea08
BLAKE2b-256 c1c8b17138d1779b8e583c9aeb681f48344774a5f36357c232dba9e1f12d2425

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 449.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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5aa3206eb6352fbeaee836ab908eaca169159cd971a980d591c09619efac83f1
MD5 a517efb95644bf49aaf6aca447c83e80
BLAKE2b-256 c547a0c13e76d65e0e383c7ec00e9f637e00da5e1f2f81481612b80ff0e5097f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 507.9 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c726e5fea0f538dd0f67e09aaf647babc38049def29f2420c4e02e1b067eb555
MD5 323b2e4f679a28abc95a873899f5f004
BLAKE2b-256 7199ad2b200d32d52f2277442278d5bef47ea6310aa06b45b7988819bac0407e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 449.4 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8c32852d1143994f3c56752be2b85f5ddaa414193c67549225b3afcc873311ff
MD5 b12e4cb9e5d9f1284a5bb42478957a6a
BLAKE2b-256 7c1bfff2a2505662eb5269530be2a371b2d36a4a343ecfa351508b2bdf8d707c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21d44b4e16b3b5c3c9bc6b6feb09a3f8591702b6a2bae1edbe734b3ace6b272a
MD5 dd3c0a331ba188821dc786fd108ae916
BLAKE2b-256 dbb763c71368bf028288e2c09103f754cf3c122b6507eba5e4ef537c6b637046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ff66c00acf4dd328a4c9da8a4558ee3c3b7417dd8146d1a96a8640aac8af50a
MD5 6854c4246b43f4462ef253a02f93b4ed
BLAKE2b-256 68ef5143822e57632bf6e1204d3b2591fd8d5ab86ed8776072d8b3f63182c4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6428535d1000466f2ca2abf3ddc89d7576966b850c1085a6e78aec71c6e8011d
MD5 04a25bb28d6893ecb2c70b1ec03fa2a1
BLAKE2b-256 97bc62defe1f9bca4ba40169e334f4409acb20ca5a646c66ae6a7abbe15b3f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14304ed297e1e14af9c71fbc53b84cf5cab90535a33784dc67801e18b7f69045
MD5 4140c727436f2add0b7f366765183a74
BLAKE2b-256 d244269fe472eba3ca325306d15426158a30b6ad0a40b478d60615c18ba16d32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea2dc1f52f941ed62e1b2dfdec5db7a5bbc370ec1041072d2f5eda96367f1f15
MD5 e222d6010c208e0d1b7333901d943dda
BLAKE2b-256 5b9bed0f88dbf64fe216a92ea4128431c6c89dc6ee1d63f141c261f45192d49d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1269fc526f149cb0fc090d2e98cb587b68bd67b40e8111b76ccbd210dab3d1ce
MD5 22adc937c7705d1045a4c9d06497fd81
BLAKE2b-256 24d2c2f6a69ce4b923c02ededfae9ef39c542debcef2e77eb4053772a27a4c21

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 451.2 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 019621b69524e73cdafd57af47a50216bbb00e3941ba3f55e71d13d0b417c341
MD5 c15191a9191256cd477f072a97d89945
BLAKE2b-256 0f38a4150554c3088179a743e6be3a29a0046d41b2d822956062ab28a26e7f5f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 510.1 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d0f494b07fdfb59abe520005281d138da10f5b57f55ddf95bd191ec7bb3efaa5
MD5 d98eb338c839bd973ec082ce50b4db1d
BLAKE2b-256 5ca5cff2c9572d63004100e4358c5ebd53d976c5018f51ce65afcd1f2b6fa0d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 451.2 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a4f692c684e5e9d75518b4735df91ebaf27b5f389ed7b607cfa26150033be1cc
MD5 d16c07b65bb4f70ae4b7dcd577010a36
BLAKE2b-256 005c1295fcc838f364873f51d40385e3a3118295b9cc56ddd868c6e196d53d9d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 828b166b5e1da994c664c37a8bb96491d084f4ad7c3abd21876f0b38624a5537
MD5 5cabc8bf49f5b6aa3f988af03fbec05e
BLAKE2b-256 adaba2e15d81790755adfb282710b096a7a8084dea21e6efa128978e21473502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 142860eca1d4f84add53f9a0638bcc4bc8a1dfe63877bba45e08edeb4d3173d1
MD5 1160fd5bc830169a708d1665817ab0f4
BLAKE2b-256 470dcf2b5df3e90259572019d02b5c93f8e7854e44af02250638c27ba6b69715

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 597c3479d686dc799bee71d78f19fe74c8ea2ce90ecea3d930410b68f2f4cb6f
MD5 055647fea2c22eea7346658dc906767e
BLAKE2b-256 ad2174f95e5767790074840e1900b3fbaee4e999a92c7ca172fb027fc42711a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58f14cd4c49d286eefacb3df5c577e8ae540aba69f04718c6e127d3bee19030d
MD5 0b5c2a47f158d37b84560047d640131a
BLAKE2b-256 88923c7a74934403dab64729cd6685c6470619d7656fa85ed2504c66922d0578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58721a23607b4d958abbdd0d47d3a41071c73d5ff46a0ca7e127ffc1113d912e
MD5 918f0f1a35603dd8501c766c46bfb5b3
BLAKE2b-256 1ed8ce1ac59a650cedc94c9dae0d282e1d209aa3e35a3ad66d040618aa047b87

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d054b848718e5e92fa2f9494fbe32d452f40bb1d9f1248c0b82b38eb44c1330
MD5 47dd9347b3f03816c5fa81a3668fb830
BLAKE2b-256 30a1aacaecc13f84d6effe0d5acd856576c248197e5c735b59fe51c89d8409aa

See more details on using hashes here.

Provenance

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