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

Uploaded Source

Built Distributions

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

aiofastnet-0.22.0-cp314-cp314t-win_arm64.whl (469.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.22.0-cp314-cp314t-win_amd64.whl (543.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.22.0-cp314-cp314t-win32.whl (479.2 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl (637.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl (626.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.4 kB view details)

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

aiofastnet-0.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (616.9 kB view details)

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

aiofastnet-0.22.0-cp314-cp314t-macosx_11_0_arm64.whl (552.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.22.0-cp314-cp314t-macosx_10_15_x86_64.whl (569.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.22.0-cp314-cp314-win_arm64.whl (438.0 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.22.0-cp314-cp314-win_amd64.whl (497.4 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.22.0-cp314-cp314-win32.whl (436.0 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_x86_64.whl (618.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_aarch64.whl (594.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (610.6 kB view details)

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

aiofastnet-0.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (585.0 kB view details)

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

aiofastnet-0.22.0-cp314-cp314-macosx_11_0_arm64.whl (518.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.22.0-cp314-cp314-macosx_10_15_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.22.0-cp313-cp313-win_arm64.whl (423.5 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.22.0-cp313-cp313-win_amd64.whl (489.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.22.0-cp313-cp313-win32.whl (428.0 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl (615.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl (585.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (607.7 kB view details)

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

aiofastnet-0.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (576.4 kB view details)

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

aiofastnet-0.22.0-cp313-cp313-macosx_11_0_arm64.whl (514.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.22.0-cp313-cp313-macosx_10_13_x86_64.whl (531.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.22.0-cp312-cp312-win_arm64.whl (424.7 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.22.0-cp312-cp312-win_amd64.whl (491.2 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.22.0-cp312-cp312-win32.whl (429.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl (618.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl (589.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (611.8 kB view details)

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

aiofastnet-0.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (580.1 kB view details)

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

aiofastnet-0.22.0-cp312-cp312-macosx_11_0_arm64.whl (518.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.22.0-cp312-cp312-macosx_10_13_x86_64.whl (535.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.22.0-cp311-cp311-win_arm64.whl (434.0 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.22.0-cp311-cp311-win_amd64.whl (494.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.22.0-cp311-cp311-win32.whl (433.6 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl (618.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl (595.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (611.0 kB view details)

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

aiofastnet-0.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (586.9 kB view details)

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

aiofastnet-0.22.0-cp311-cp311-macosx_11_0_arm64.whl (520.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl (532.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.22.0-cp310-cp310-win_arm64.whl (433.4 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.22.0-cp310-cp310-win_amd64.whl (489.1 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.22.0-cp310-cp310-win32.whl (434.0 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl (618.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl (595.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (611.1 kB view details)

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

aiofastnet-0.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (587.7 kB view details)

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

aiofastnet-0.22.0-cp310-cp310-macosx_11_0_arm64.whl (521.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl (533.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.22.0-cp39-cp39-win_arm64.whl (435.3 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.22.0-cp39-cp39-win_amd64.whl (491.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.22.0-cp39-cp39-win32.whl (435.8 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl (620.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl (596.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (613.0 kB view details)

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

aiofastnet-0.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (588.7 kB view details)

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

aiofastnet-0.22.0-cp39-cp39-macosx_11_0_arm64.whl (524.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0.tar.gz
Algorithm Hash digest
SHA256 ff772c37677d89f2298bf057ba27db31bb27eb5a28fb1c8b0511b5303b937342
MD5 3690c798943ee0f4c84fc3ff2680641f
BLAKE2b-256 a27f63c0dfe6fa454083d43c152ce4097a0def6f8fec736b29acc2f5c9c3c6f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0.tar.gz:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 61d8a396ab0cf0437e260a89162f7a1d2058a5aa214c884cb982ec5739ae817b
MD5 a3d96206acfca1dbc0235d6cac119f6b
BLAKE2b-256 02f741f284e4f25926ccc99e4e9f1520391bd501b927ee75fc38f65e1de5edc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e1ae022f62d19d0cc9325833eedaa068e09a49b47800bfc84f5ed7b74e6c1bc7
MD5 e521c0b038cc7019f45810a41586108b
BLAKE2b-256 4274fc9268cf3be7a45c7348d2d0456023501de73a2a7ac9f399082a13212f28

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0cb534a6e3698585b0fa589179514293d774162e45423a000b39e70b0c6eb824
MD5 152bb34d73aca986ece4e4789b2c7a44
BLAKE2b-256 a1b0fc091dd313db20623635f180e16d2b10481d911f58e70d1eb5bc2f1b0575

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec5dda26c49a3a6907b410f9b8d3e2326a2f75455b36c86125a813a6f8e3b36f
MD5 480923b6cf55e241412dc978a662000f
BLAKE2b-256 eb210d4795335b4cbfc81a710ee12ab2fe4cb3032ffe7bd7730f239ace21d6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f7ebb8c568e0de5de38cbfdafabff4cebf4a695c0eeb6e7b7f41e4f0ab45daf
MD5 0be2238ee2f2c29c521d8c7f7fc7002b
BLAKE2b-256 8830ed98dbdd267a82c6dafaad5784749ba20d29183c0ae15cbba052d60f2e55

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd5c11c8ccd9847c73acee94d0e54a6aa09a8c2c4279882f8486ef457a491471
MD5 e917a7f04b1c383500807167a2baa2df
BLAKE2b-256 ac414e36a4f8b22da606798def8b863c39df8d9c0d6f7274be98bfd6fdd4f87a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e883e768867882886dc1c4a3ee369a0cfa055db47ad8376d54a3c64e3a19ebf3
MD5 1cb782f9b1bb0a36b463581fa91a2b46
BLAKE2b-256 a9c9c1ce04df0cf8090366ebfd6247c751ae49dd361952de1af3d6aaa4d1279f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea487a8da45ffdbbe25e11e8228f021059842d71ed75b673e2a59d661626b50e
MD5 fb84da37a255a01fa776d3fa21fad3af
BLAKE2b-256 797f5a7a96fe354897c56f86a96a4ad68a77dbc77b3afb1c93af4d7b928bbac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fba0bda190a8564e5887d96b35b959fe717da615c5ef46dc025e096da1480d25
MD5 a49924ef1f8606585ba94eefeab705d1
BLAKE2b-256 282f4fd5867abb134e08eee9a42e9b08feecee6be523d73bc8da867519ba3e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f967105e13ee60b62c33961becd0fe68f601abfa83c6198c37c844cb76f17d08
MD5 ae5db6924d6b0483d89be1b9500e1eb5
BLAKE2b-256 005a9955cdda34560130641aa2631697181f6dfc1126c8f33adcbbb5c205071c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 280e60d7f962a32ffb4dc10645203e706d3c20050113937c461b692d43edf7f5
MD5 91408c6034d8422f2f64196938d44923
BLAKE2b-256 33ab1105263b79bae5df41517ef628cd0e1b43a4c6d354da01bbb2f9f89aabc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cee4a42a3667619c1009ef45232d1aef55ff29d75031dc00e4c6056f5ae23b77
MD5 363b9b9576cf89d4c05ee4c383e6d6c4
BLAKE2b-256 79c9487b18d6f16226d661ebdd7a1808ee00013b5d2926a33537510672a28ac7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1523a9543a941b0d0a00ef938a1ddbf67fa3ec66fd15b8e5d3a4fa80cf6f0d06
MD5 0b34df57e0a707ebef4cdb8e0e5647a9
BLAKE2b-256 8e4fd99346f4664e1b4f2d9fcc8f25c23df568e7a9144b1a92fb2fc281a1c47a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63a32f4f0413d2cec75853124de94aa67bb861dabca35d16ca15e97fd8756809
MD5 5674d2fc641745dbe8250834befd44cf
BLAKE2b-256 046852e08f050d8d97517688a614101a08c782f03320032da475c9cf6d5e61c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 489a87a23a308f009f0cf6107a254df92eaf52564dfffce47952a6e111d6f830
MD5 c6128c77c2960aacbc7484db49515838
BLAKE2b-256 d44b5d902b6f5f84304423ef88696bd61a3e51ae5597ef0cf8a88bf2a4a3f54d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 850d071947c89d884c595857f05fa745bcce51c9821955f0bcb8a99135d8831b
MD5 9b6d188fac0362d9028d997899c8f98b
BLAKE2b-256 9ce316f5534b6f1854548d58a250df0c326006dbff72fb92fbf446ab86892f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40e9818a89b8694ad6d9ee190f5a4647fdc0a60e132ed7d0b164b4d455d93446
MD5 f641994b701782b03fd765c38f27786c
BLAKE2b-256 0cca2e71a3e6b7012821d3414ee0020373946484d6a445bc048228db85e248a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f539e74e1c1bf4e5a962ecd8b28995adb32b1a5dbd597c90098151a5b8fc72d
MD5 fc6e0f59e28ab6f221c980e5faddfb80
BLAKE2b-256 932083fd835bf37770b1b7ee11a82a4a104d2f8a4d28fac941be5c6d01ac6325

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7c9c51d0ac8edf1a9dcd86d78d03b738d68abfd4b14fdcb252aa2f853ceb876b
MD5 e381d58a68d101181ef5c894c9777afa
BLAKE2b-256 59eae95ceacc561c2e5e78a65976419ad7759c5ce8d07d5f670face395a54ae6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 49a4f6e743d58ad4fb47c951a5af01c0be4ee51c61d71520d8080d7a34abdfeb
MD5 56cd1ee6acad1e380cbf014be944bc47
BLAKE2b-256 9be368b38c8cfed000a0630b42bc071abd9e5efcaa7823056438079ad0b5186c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 88afab1efcedd7a2f083dac53bbbee8c4bfdaff59bc6050db51327594737f32d
MD5 c8bc13d387de7f4c3dc8008c694417ee
BLAKE2b-256 89e3957b8086332ba3a8d261c27468f842bede7d7994462931c394c13f08e95d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a85484bdadb07d252a53c92635453e29d158f02cfe005771820abc2e354f1e85
MD5 1481613022a1ce8e761632a7a83c256f
BLAKE2b-256 d90a27e08a29714a43cc7793fb9e787965a468d94f45997f9b5aab801180a4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d4f9d734d41e34b54fa8a908f25dda0cbc2247b2788c8d332cfe6e8661040cac
MD5 5bc5d5dee534327a6041fec29bace464
BLAKE2b-256 2862f798f7e311fff22be1bd38ce8b5881b1834445525ef8b2152f73df8a9bac

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d99779eea7b81ed0a7bff8832473240e18feb19467283885dc09e6a60e471ca
MD5 c516667ca74921fd39925dfedfcbd5f2
BLAKE2b-256 798a5280f52d5ba96c0eeef52d54f3bc81f392f7bb54d7289b0c32d3f95e7b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec7e22035e563ec50211f0dab4901ba930205eba80bd5af615055830e5c8905d
MD5 4b6a4474fc1108896bbeb32f5072ef1d
BLAKE2b-256 b66dbae5b33c5f3ef24d06071995c200f1dbcadb610fc88cfda487e5f94eb0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 889460d528600aa94758577fd52da934a93f994d7d9dddd98c644609412b47f1
MD5 32c1be728c452ba5d5eb4ae29311228e
BLAKE2b-256 211e78aacafc01422106dc8515dc1ad7482e5dfaad0e21f4fc88714627289847

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19c53423bdab015d7721924e9016eb7aa048225e7c17f638579154bd62da0277
MD5 d44b47ba32cf7c8951584ffe3e9ec05f
BLAKE2b-256 4542999ebe169b8c5fb95c22599cb2639b35ff81dca0244167df68867b015979

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f9b4df4bef35291df54c42bbbed67a2f3a8af7cab0bc8cbd9e353d89b2cc0b91
MD5 42305046a40a6b837b971bcca258ed19
BLAKE2b-256 83e8825feb28c7b059e00b98d56bbd51aabc9ce61d3234efea0fa5e5415679f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe45e1a6da50c460a21c831d6bf8c832b15c94f7efa919bdace428e5ca62c8b1
MD5 9056044b94af795897c4e7e3aa403665
BLAKE2b-256 cecc86c67b63753cd2e005e191d0432f73eaef6686b42b38b0887ed9d6fa0502

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ef07ed2ceaf681a7ad8daff7f5785a088130d545b9144e62e1532b9acd67bb79
MD5 9a75dba4623bcff91924ce14d0d59484
BLAKE2b-256 d2ee1fce5c8e2107ae82f0b803e94044d470a72ab3cb3a65bc2544d0f0801d19

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fcf85819a3c37a939ed1e0d6f0e807c1ac93885fdd1966e6a1725829e5c0f44
MD5 af72f9dd3ada6ac5f87b1c9a55aaaabf
BLAKE2b-256 53f31ce7f8e71300e120ccf636065dcade03c72e6843ec384a4d5413fb354f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45d103456549483408262cba190b6ba7b3bf3a60236ecd152331e74654845b3d
MD5 43a52c399c72931c44ce3b667331c148
BLAKE2b-256 21b4cfd2cd2f5290bfc3c89ac7fb64a0916291346396f848a2dd0ed5f325af60

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a3aa90ce730b1bdc4bfc6c30a68c91c9dbf4284f12577ccc96b270fd6c9f33a
MD5 c531dc4281be5f7dd675f033d87ca1d3
BLAKE2b-256 fb72783242f3ae4ee4635c60fb9594901fbdfefb0c48b75dcb618541a02a2105

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa1d04a9c8138ad229c95ebf232d13e5d9a047e0830427bdcd336898d29c42ea
MD5 a14de0297181d7483bf2f5f0e9173a1d
BLAKE2b-256 6f931605781eedf0024c652e47a1d1979d2c62d509ed4f8699885a11006e35f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a787b4429462195f9952407f846147a28688d31292942f1f3028356317367449
MD5 5ed1c07ca7a0cc6f9ce6cc534b209d5c
BLAKE2b-256 995e853fcdd18e413681f1a23b26d274a049f6bf19835c1ec7585bb4484a0a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29a119a402e6144753a481b70bd1d09b67cbcc90f904bb1b3e37cb539d0f0e5e
MD5 d644d1c5421b6fdfec4ac6371f89ea3a
BLAKE2b-256 3ce08ba547eb36bf8a8c05aeb9234ba86c2b5a09531e858cd47bbccd9ab9729c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 63aaa24cab239f8a6ce794805b89ee1ea212883e04cb9058132eacecd753cc98
MD5 824c55f62ed48e5e009431254873c896
BLAKE2b-256 dfc152c87c0007fc17fd30ccd689f5ab088315f982f35b7af0671e693574a08c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b800d1754770cb574e48353696a069699c83042748825910d5e94d0674b97c0d
MD5 70c8c9297068dc44f4c392909d54dc29
BLAKE2b-256 40235fcdee7c4c8221121df0d5a7dce0fa8c7651e4e43f79a5aa5426bfd6721e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c715f2c6c0adc3f147e18a8531cf384252548eb5e5d49b7ebda9d3e19040f668
MD5 8fe88f07ea4f365781c974f239ee1f6a
BLAKE2b-256 ab333120c764ba0ca494817a860247f145dc9d5acf45e2aa07f2f38c185baaef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab3ed688a7bca868b6a1c6f12fc1c1f86d375cd3c693b98dd935c3ed8afbc566
MD5 88d0d2a8ec6df7a64c4e64e0d13349f9
BLAKE2b-256 353d80885e6024e0a6bd4526c54572b8efbd88e3b24f6d419af7a0a0e8028010

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49f9d51081533881d6d40bbf365219e5004e07cfebcbe886977095087715f7c9
MD5 be726ae76912a75758a6036eebf184b2
BLAKE2b-256 64058c04c4db6c3c81d4c6eca04abd0284b7a53e5baf6693f3ee285317bfe14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da68ac222d89c96a86813464cbade12a23a4717e924d97e8c9978b16eedb9de2
MD5 8b165ec437cc2317ef3093fcb8165671
BLAKE2b-256 0da20bed26cc762118678d3211d23176efb58eb2413ba7bab88ed829c3a16d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53c5433eb9853710ed0893add2e2de711655c381599e8e5df8facc8b90570ba7
MD5 2fc0d561c01a2ee2522098f2ec1f78d1
BLAKE2b-256 d2c9aff13a172225a7b4f6342869c3a33ff8123f4167808dfbff29276c218dc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7b82f2e248a25a93f60ba26637b7ae66b276466153e64ee29da4be9ef8d37f2
MD5 6e43a37dbe71cdd9e323402653b5c284
BLAKE2b-256 b1ab2eb2a22cd26f2e5a08cd86307f50518b6e1b3b252782074c4c8f735da4e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 096f70c0f2eea46dbb7e09efdca6ab8038c3ad482f2d1ee222906ea3248b8ebe
MD5 f969050692a6ac47d7a83bb542ae63eb
BLAKE2b-256 d18e36c6fab7483f6220197ad18a92ad1afe5d3cd6532f5f200324ebe78131b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 75acbfe33c2ecca0714dde010a1710e1768ea72afe61f2c2effa40fc2733df33
MD5 b1d6a8b358f48ba73ed3a9877e95cf56
BLAKE2b-256 01944f95b4561132ad82002ada1a117c4871763931ad0e527bc0628ba76d2663

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d6db0fdc3da1e5ce1ea60607b03feb61f5ac365ca7f8c682f9d64e4f9bf4e71
MD5 1811da492fe70a975ce8ebb61d7e70c8
BLAKE2b-256 f55670a6fe84b7265611e5fee61e8056394b318755c0bd8d3f63014431cccf3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 573e02814d533f7bb40ba2647968a15f3ad989bcdbdc9c9d0db8e3d3258484e0
MD5 b0a10f55e08cbb508b2876d681d17d5e
BLAKE2b-256 cab5348710cd576f35330b028e93a8fc46dd53c33a2cd984427b9d724a732634

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9585edd953ae37541263ac5d8e401a692aa6b7afb0555536c4070d844473084
MD5 7385c4f79806f702a7e6214aabfed5f0
BLAKE2b-256 0869ef334623a9cf8f9bb341b21fc8100d8f10b23ff3bd377b3b69702efa44ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b092b8992ceb950c05cf1b4e62932d9bd99bb5f1abaad629b7eae89558181d39
MD5 7ff4f321ce05cb2f1036ce7fb3ceab13
BLAKE2b-256 841fc1119e13df8e597a1b4d6d9e42c3332447482664ee685522a6f2edb9f2a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d58c03bdf970e757d929f562fb9a9139110cbe559fee9d84c282af3d901d1918
MD5 2637baa197ef2d97efb5e18e884cdd93
BLAKE2b-256 81636126bc568a50f887781760105f88cf97100d1f660a61af3c393fee561c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 052bafa54285dc2166a96a8cf0a578ed6d5376326bb3bc4b8174cc4487736567
MD5 25f392a37617f7f71b4c9431d6ddd689
BLAKE2b-256 623921ecc85af6a6a4044f7c980a1aebcb8b33e796287fe06bd7e2259d336385

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e143022ba751471c5c560c49c3d525529d8d2d259560f059605fab6d2ee4993
MD5 117810684fd75734803ab125a83d7082
BLAKE2b-256 588bb857f7a719f8078e2b6026e3bc54a814d573f3d53faf74494cf655db856f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 32037866dcb9deeb1fd58589b9b7fb704f67734c6b8c8711273ac7ed62d353fc
MD5 66b7b9564fee0157e0a23d96d0a416d0
BLAKE2b-256 9d4270f914d414653953f3de64d42711b374cf4d017ae8b6e66e607b88421f4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 1e892fc4ecc35f1bd320eb164e2bf8aca6de371d07a8f7ef11ec240cbfc67c8c
MD5 1d4da157e3bbdd70539f1118cc3a15ae
BLAKE2b-256 5ccd5c7bf584218ea1304f9f3f55bef4183629444429b42439d249b95312f927

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 12c7de3c9b13927f782c3654bc8a5327d1d8735d3c3ef11ea7844ac81b816232
MD5 d25939ba391863dae6b16d0eaef15278
BLAKE2b-256 916ef68bddb67d05d7c75755eef0b5b58f525f91122047517e80c3c92e7e51cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1e92452ef63d3c97e7467a0ac70d8bffb225eb2687e0c8c70d0e2422e7678c37
MD5 1932701905ac3008fd8208887cdb5fa6
BLAKE2b-256 5ef95e02e6a4285572b4af0053d4a68c63ade9df6b3efd9a9c1eb8954cc72898

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7bd3d831efae9f3d622844c1ca2d2dfa77ef093415468b380b3d0b473cd9aad
MD5 d70f5530b06e09ad5b2235760c044e26
BLAKE2b-256 1dc039df8d98c041c40df7b310a660a5d62c5fb8a6e970174fe5caef449e3e75

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8446b611b2a2653df727fe69ef376ec6a514801fcc63c4e8feec7b52978dba9
MD5 4f03601ac102b8de6d84cd06e57b3a48
BLAKE2b-256 ab7ed25af3335a4e81445c23415f4b24577afa1a79051f06d8c10effb5b617f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4863aea6bbeb6fce13bba8ddc64972f963bf2d5123089488cc6a196f8816069
MD5 a1fd3690d7ca093ed7dce42ec5b85fa8
BLAKE2b-256 1d6de553e04f601efe44479f717473ebf2cfd3d041d105d9f7616c7eca36639a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48c3bc0439dde8de4c5a60dd0cffe5c935f5e95f49632ac3643c96de6d9f5875
MD5 592f8a2f2ddc706619e64ea947ccc30b
BLAKE2b-256 ad05ef4f1072a735802cc987cc2aee7ae33f79ebe2f37cf4d7f61326357c3104

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 404e399805e17f58fa1dfdd73735dff9acd35b9f3d51dfc57f7e1291052adb29
MD5 93239ab2cb97b28072592e8eccf7836a
BLAKE2b-256 a3b80a10266e2b192989d056d06987664af0124a75049a90ccb656aa2ceb03cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 31f5afc0c159c6e9a1b233591f4e5822e81cbb0e1e81425ab8e59d6aa219e81b
MD5 8c72d47a41f3505fe35917e4f5936f8a
BLAKE2b-256 87261f6ef1c16efe783cf3589da72d5736b54a847e7846f1954b77efa9b909cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.22.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page