Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status Latest PyPI package version Downloads count codecov

aiofastnet gives your asyncio networking application an instant performance boost, lower latency and higher throughput by just adding two lines:

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.

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 far from 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 out of the box on Linux.

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

Source: examples/benchmark.py

In these benchmarks, aiofastnet is up to 2.2x 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.

Threaded benchmark

Source: examples/benchmark_threaded.py

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 more directly and avoids extra copies in the data path.
  • Kernel TLS support on Linux. Native sendfile for TLS connections through SSL_sendfile. aiohttp will be able to send FileResponse more efficiently over TLS 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.

aiofastnet requires a Python distribution whose ssl module is dynamically linked against OpenSSL. Some self-contained Python distributions statically link OpenSSL instead of using separate libssl / libcrypto shared libraries. In that case aiofastnet cannot load the matching libssl / libcrypto symbols, and import aiofastnet will fail with an ImportError describing the OpenSSL dynamic-library problem. This is known to affect uv-managed Python installations because they use standalone Python builds.

You can check what aiofastnet found with:

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

Possible workarounds:

  • Use a system Python, actions/setup-python, pyenv, Conda, or another Python distribution that provides OpenSSL as dynamic libraries.

  • If you use uv only for environment and package management, create the virtual environment from an existing system interpreter:

    $ uv venv --no-managed-python --python python
    
  • Use virtualenv with a system Python interpreter, since virtualenv does not download its own Python builds.

  • Build or install Python so that _ssl is a dynamic extension linked against shared OpenSSL libraries.

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 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. This leads to huge CPU savings.

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

KTLS requires support from all of these layers:

  • The tls kernel module loaded.
  • 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 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. Python distributions often ship their own libssl and libcrypto, 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.

Check which OpenSSL Python is using:

$ python -c "import ssl; print(ssl.OPENSSL_VERSION); print(ssl._ssl.__file__)"

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 outline here.

Check out aiohttp_ktls_fileresponse.py and aiohttp_ws_speedup.py
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!

Project details


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.9.0.tar.gz (261.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.9.0-cp314-cp314t-win_arm64.whl (336.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.9.0-cp314-cp314t-win_amd64.whl (446.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.9.0-cp314-cp314t-win32.whl (380.0 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (456.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (447.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (450.6 kB view details)

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

aiofastnet-0.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (439.7 kB view details)

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

aiofastnet-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl (404.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.9.0-cp314-cp314-win_arm64.whl (315.4 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.9.0-cp314-cp314-win_amd64.whl (366.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.9.0-cp314-cp314-win32.whl (315.3 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (430.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (444.3 kB view details)

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

aiofastnet-0.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (425.3 kB view details)

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

aiofastnet-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (377.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl (393.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.9.0-cp313-cp313-win_arm64.whl (304.5 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.9.0-cp313-cp313-win_amd64.whl (359.0 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.9.0-cp313-cp313-win32.whl (309.6 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (447.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (424.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (443.0 kB view details)

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

aiofastnet-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (418.4 kB view details)

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

aiofastnet-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (375.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl (391.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.9.0-cp312-cp312-win_arm64.whl (305.2 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.9.0-cp312-cp312-win_amd64.whl (360.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.9.0-cp312-cp312-win32.whl (310.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (449.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (426.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (445.3 kB view details)

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

aiofastnet-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (420.8 kB view details)

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

aiofastnet-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (377.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl (393.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.9.0-cp311-cp311-win_arm64.whl (312.8 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.9.0-cp311-cp311-win_amd64.whl (358.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.9.0-cp311-cp311-win32.whl (317.2 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (436.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (448.0 kB view details)

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

aiofastnet-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (430.0 kB view details)

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

aiofastnet-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (378.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl (392.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.9.0-cp310-cp310-win_arm64.whl (311.8 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.9.0-cp310-cp310-win_amd64.whl (355.8 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.9.0-cp310-cp310-win32.whl (317.7 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (450.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (434.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (446.0 kB view details)

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

aiofastnet-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.4 kB view details)

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

aiofastnet-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (379.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl (392.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.9.0-cp39-cp39-win_arm64.whl (313.1 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.9.0-cp39-cp39-win_amd64.whl (357.2 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.9.0-cp39-cp39-win32.whl (318.9 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (437.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (447.7 kB view details)

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

aiofastnet-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (430.6 kB view details)

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

aiofastnet-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (380.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl (394.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0.tar.gz
Algorithm Hash digest
SHA256 62a538d3d27a4c3f6ac928381078a81af9f9293d46ca6d8744314c59cb5aca17
MD5 81b619ecec1bc82ead1e814aaf6ae30b
BLAKE2b-256 56a68dc485471235c5cfedc67f905218e3463d91bad9e73628ea4c6c77683f0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.9.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 336.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1ea274ff2fb7be178d9cc00a58f16d7166d5288c22d4f0033c9ff59e56da9ada
MD5 df348c528bf242025f72bcef4ef80457
BLAKE2b-256 984ba4fea035cdcc4e63af0450104bb1b34e3a5db9e2b278c28a43512e73b4c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c07d09356d10c4632b78b29f7f39eee06e056076fcc6aafc975cae6b309e7d1b
MD5 7f5731d19828b1bca46170ea69e11ce8
BLAKE2b-256 1b045010cb61d67816da3acfb74f64692d43ed78b3f907e59b4234a66a7da559

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 dd20bcecc4a93640c921fb40a8f2433840c755b1804707051a9ccfa89660b20b
MD5 c2ebf5ca3870f6abe4d5e6d3bca351f0
BLAKE2b-256 8aca13e65fadcaa4fffd3837238be0da67901dd439ad36e7e693e87c80117699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a693f75a132ac160e8a08419b25e03195d42f80a1aee87941ffe87840dc432ac
MD5 55a11c3de65bc8906c8c5eef3d89dcf6
BLAKE2b-256 23b0610074fe1e3c3683dc9c25df260bde93cd845de2e4c96e6ba29d58354ac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fdbb5c6485a35177c752462c6f0c1953b4d72a6232747e9be65f03131aed312
MD5 2bc3f5887baf5a85dbb66a398b2add61
BLAKE2b-256 3dbbbd76a62ef21cd725e4cdf86c64ce2930c176c3726b6e9aa3b0a369f8618e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2b39628a08ba818347a9ed44906eba3948fad421b9770a5613b62afcb6bd053
MD5 6eb22bd26ec63d2bd22ccb5f0a685277
BLAKE2b-256 7863af45f88e457e6a979a256b9314753a61ccb16828f0cc29a4ea21e5ef767a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9db1ec40d440f9a014c3295d9ee5ef52451aeb6cd095d892be316fa7c4671acd
MD5 2934289db9351ae514b2a8e8d1c4e32f
BLAKE2b-256 ba0a5c04dc07fe4920376878c7e8bf2b83b25dccae044d1e00194204baa32768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bf267f7cd392427c8fce379c031e2332bb6f1289563ba0f707651a174d204bc
MD5 af81c48af28cefd1d525577864e6edf0
BLAKE2b-256 7a7655765b6001c8ddfbee38db7ee4b3dc6ad33141a743004ccc324b1091c6e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 37e420da55cf3defca057a339607ebb203c3e7fdac001dbb8ac26c76a9ab855d
MD5 5e8db76aa4bbec5ecfe0754e350d095a
BLAKE2b-256 f5fcad5843a4f617c02380133869f54c88e9c0fc62fd6ab6a6a3e9a172ee2e57

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 27c1c8ffd562976f8029fc47b21d11674b7115c7c92459fcfcf7274bc48b6232
MD5 b19735626d85aed83fb93431db5ec984
BLAKE2b-256 56c163b0935e82927a922cc043a739b08caac6d173f1590bc9a4ec98eed241f7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 91a81c7f1638bde2808125afc0a69a5613786086019c3aa7c29ae80267492d45
MD5 35deb0a34cf0d31355ae98505003bed6
BLAKE2b-256 d986286bb5c290f30590b1fcd31f15a7b30250703e9fbac91b4eb7299806aa3b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 572386a97681940e4e11b5bdc0e6355c02fdf1873c37b42a5621285b650d632b
MD5 4cdc493913bb144a5babb4f488ffc60e
BLAKE2b-256 bf85036dff440addc480bd093d50e4e9771481c87dea38040afe93767408884a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d16521f452a5f51ef446463bdf5754b72ce7fb02681e71da69710c069c8381ae
MD5 30ac3affc19d6b2867e81d19bdf3614c
BLAKE2b-256 1203f946e208e36086c7d1f0cd0a3b7a3cd87ca9ef58b1cd26b33b8340f9b074

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fcd4868dccbdac3ce02be4f9dd167e8b8e3ff9e76d1fc6aed6800b013ee09a9
MD5 a9857d01f494a26e0c27765d9ad696a1
BLAKE2b-256 299d12edd4d391a49cf26fa5f1618078964fc61d6af22ff4e6c1d32ccfd14391

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4dcf9bc88d4ec43458b3ab1dcf4ac0ec6e5f9785461ad1da3a27f573bcf653b
MD5 2c13577a402e38e057bee0f5fd9f889a
BLAKE2b-256 374d4be9edbc052d5fce692b77128005421d59794b37e5cd0e5615f796db6a2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 435908f4d2741a58f80ae7f275497f0848b8f7ba41645f111ac4c671b864e82f
MD5 f5e39195b9ec97130d2c3edfe644e30e
BLAKE2b-256 3efb7e79db7e96170458a12b92380da55874c46ff99ab459a8d7968af71b18e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1501a3b313ad0655c06249d19d7d0210e9f9aa92d38f1c5b67d02e4c1d65aa94
MD5 53d3734826610e89323b100bb9bf52fc
BLAKE2b-256 4aefd71132e45e2529d6a88599cea2e7f79c3b20217b23c4d88a8ff73fec225a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6ff2c4fd44c5a43a353e21378c7911a72fc7a30e46cd13308623bb6bc88602dc
MD5 05527203c0e07447c82761794a653e95
BLAKE2b-256 267b86177a8b5deb669fffafd5eac482fcc35d8492b498051dac1495d43b6250

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 51de0f3a00e252b975d0c03c04a68305e38abfb8c97ef30ee13d14ce42f62190
MD5 cce08bfbdfc6af92659256931e687738
BLAKE2b-256 60544afe1336f9bc825045cfbb2f39e8b31feae9c795f1cc625f2f769fbd1979

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 10035f5936ecbc85ed06df3d8adf9cc5ae9ba7bfabaa14d1dd8985abfe911f2b
MD5 4052c22c395473f6520786e5d69226d9
BLAKE2b-256 8954491772ecebe2cd781f687f288e4eed382abd61867290ae22107adb0844e8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f389cc4f7a58ca89ca6f48fcadf34f8a87434274e3881deab29b5015d7d38741
MD5 d2e4cf8e070b0d4614fe6092556f076c
BLAKE2b-256 a1a1384d77bf6fdf98a241b12a9fa3de73a13469cefb3a36244f8005ec7906bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e762c65343fb8f3b482264ae01145de5ea833dbca756fcb1dc5a02925aacc5
MD5 d2797a1129e2493ebd6d69a91fc177d8
BLAKE2b-256 944b9fbfd0ba1d7593c426ee992092eaa926a630b0533176af8c49b6da7e7ad1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7dd906839b099dafecb80063dd65db88f54154c5af03f0d00aac9d809d356f62
MD5 71f4cfb584b016a48a9ba82fc30bd6ed
BLAKE2b-256 3852d129c4fdd6757c86e229391291e64013f6dd1901c7d983c752e4b8e710a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d86c8940a2696031047f60afdd1335a51b713d53e79b7951fa7c124b041a4389
MD5 892d85b61f4c92ac595341ec3298e4d2
BLAKE2b-256 2d40db54a1d2fd9325f5981c9a9925d2464d180014e192e75de98f77427618c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91d53cb23a00e0087e93d46ff0d046efc382cd288fc762034a6e2c8a6535972a
MD5 ad5300db2c6dd30834095f0b476c2b17
BLAKE2b-256 ff4cdaec5fdb71fbd46ac57306845099442440769907e83411c8d008bb1cebda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a13763980e6344ad28671724799ba63a894f953e6ad781a6eca18c38ded0753c
MD5 6a3da36f9661e8e2d91a42d875d9a84f
BLAKE2b-256 3719310b579a00c029bd1e97a2262749ccbf2dc79f3f89d98ce76449515fa649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 54ff5c8b4a29c3762a2522a80fb01449e3c8d8004ab16876723cec8bcbf2aa81
MD5 fcebcaab5950ee15d02106ab18f70e5f
BLAKE2b-256 5d34d8c3178fd1438d7a31d69eb9ec6d7ee7a4e709a348c68429f9f07dca6985

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a86e831c24ae0c9274dd6a8037d4ca9ee5000f7da1d3ffd15c29fa80c57e18a0
MD5 5479bdf64c1e433791d736525da591f6
BLAKE2b-256 cb84e58ddfa791bc729366a4382c53090051c3c62f6f3e936802c1ea723207f1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 069627ad9be0bfa953b47534d0a453ae27e9ecd46a44368961e8f7cdb8303896
MD5 9b0e683cd289c8ada939a1d4a630ff6c
BLAKE2b-256 08b9562c31fdaa120bced553a7d4bc32410278000b32c884644fbe6044f08442

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a29435f51b59cfcf1eee6541478a86021164a5bb83004e10f6598a6c2b5f4801
MD5 a8afa5a41023cadfbe92848e95232646
BLAKE2b-256 4eda544875526b4a52c8ec4131bd92ecedd39b044a99d877e28b0e31c258a9d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d635ef94439af72329ecaacee4a126a31d2827f6dd2fd17e68468f635b6d4448
MD5 1a286f28fa01161a95fcc7c57b237a5a
BLAKE2b-256 d479bca1ff8f72f01c64d926546fdc0b1116317fb983f58988799bc1f7e84de7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aac4b1b34fdca97dd0332ba6c799b710c3218e0a6af32f0368e848b6856d36a
MD5 3ebf833ed5ee32e4ccbd7c8ad6efc0ee
BLAKE2b-256 788a96c2dc5237da45cc047132ddab2e806ed655486d3fe6084149c8893989af

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b50e0c2e2a4eeb0854b4d6fea9b3fdebee947fc63971b984b8a2fa1dcddb6a68
MD5 f691a795bb6e63c9b4596a48d0dfd5f3
BLAKE2b-256 dc8f89db03ecca22bddf51808b9ff37327ad29441d50b14ff8b70e87f130d797

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc36b3b41de0e3afba4613d5cf205129703011354fff20b08449af9042b10df8
MD5 c3abb3f1c3b8f65e887dbbac71dcd3c1
BLAKE2b-256 5e5d698290d49b97e84ef067093ef6f80065609212671884c21d8f5ae72bd6a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e9d08d42ed4eb1ac211786027f11c957f6f9e439ca37cb5cb242c92530b7d84
MD5 dbfb79683f981b4269ac6b9e4ac0462d
BLAKE2b-256 49659b85e02cb33ca8175c674a3942bedc31588a13f963891e3f7cfbbbb695d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f5bb70987e66e24049fc3be14e3211169cf73fb785c5dd97f27a815c83898597
MD5 915d0cb004659f21e20fb24e61d54e99
BLAKE2b-256 ebb8fabcc00b1d6447e1963fbd9dc94668e356c9433fae38345851e681fb1a02

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 43eb02dc5eaf59a5fd09653f95c903ec9723924cc9ab496270320a317a14d0fc
MD5 9b67f0170ef43a710d2c9b682f7f9a12
BLAKE2b-256 f917c2083e657fc22229b2f6c8a597899b3714156eefa993e78c813591d76291

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f136d493ec858cfb1e0e3b628c432b520b42893e3b3df7f28122965970c584e
MD5 a8d8460248b61e1e5e1b89a3b7ee26e3
BLAKE2b-256 77f8db10de764eab15521e542696b31d87471a1787115d4ac62e49b80afca7fa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02135e42ee5e64a4e062b9bb81f250552b539e174516477e240079b7f5ec25d6
MD5 d365e4318e2e5c32254ba10dc4e6a0b3
BLAKE2b-256 d9219649306d5f61edc579f6b6f85a352fb254691ff809618651f7a4718649be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28603a68cc7193569481a823255a4c545a4d76724b85fe33b622ba523c8b44ed
MD5 742f84a64885696fc65701cfb4b94b20
BLAKE2b-256 cf42b0bde7e323d2fccf5056f312ed172dc63e64217c2dbc2a9a14a39d0c7cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e60279bcef23b6b0f3a9b1c1b21359abde9b035d02cbf0afe8b88faf483e839
MD5 26cbac73b488b89acc085d30f139af21
BLAKE2b-256 16a04c5bb518c55eb2ec5b3cf5112109365832ab04b28a35a14ddda3f7c5d642

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1185aba706bc865df1c3b81d56f79378cbc215f1f7ab680ebda78926508d4abf
MD5 57dad27b60ab5c1bd9d6de514ca43500
BLAKE2b-256 edc61b40ac6e209d1e232040dee25759226357a16a596af25f2c3dc9f37f4e72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0034a6d188f83021d89eff1be34ddd3ee70ddcafa9ebb2d4a348d01fa91c82a7
MD5 73d513c009ab6b94a5c6a8c3897414b6
BLAKE2b-256 8955e33e07410f867edcd5d4ab00c43e24164bcaf3d20bd339ae0edefb5636ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3157612ec32fda55fabc6e98f1033d6596c1785945c268597ab82008fd6afc1
MD5 aa28324b3814c2d07bf1764d090afce1
BLAKE2b-256 780b737b0eaa57f55f47779601cbbdab68a5ccbea3cd1069867e288f433584a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86d32585fdf8d059552ea396e78f1ef43d358bff7766fe258e0c16f1aedce78a
MD5 a9df364abe9f2406a7209807f32353c9
BLAKE2b-256 00e4ccf0913745fb5c690cf3730c2c30fe7ba244ca80a9cc4cae98d3c582f859

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 33d3f9f670eaf023c0d034be909602b898517c2686014a77e92eeb4e1a6cbbda
MD5 3b7406779eea70a34d7b0d705b857e4d
BLAKE2b-256 7b827075292a7e6877622de26a22c61f08a3e881cdaa9d0d28a5d966f4897142

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc16f115bcc6a291510238c534db9cd6674bfba6211ae9c8f44f02306797e85d
MD5 571256e130664db9025c081e8189b1c0
BLAKE2b-256 8bfe3508fa9e9a9fac572fab969b6d60171efa751309b6a011dd84dde7d2124a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e05502de79890985415136f9ff87a1a5a3783f4e7c687e5936fe13e4e68e1052
MD5 789d6958a804335d09d3fc98673eb5b0
BLAKE2b-256 6057136ea96dbd130b83d2d78b5acc447ad80e81b80e613256ab7c61a54903af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3a8e6b1aa8c7c112ccd3faa0ccab34a98d2ebb95fd20372460928a253d39deb
MD5 c87118758af9c4641f0d18bf0630089a
BLAKE2b-256 4a0c83494b1c8a869af489b702c7f21097b053022351b3535c609278ccae6ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2bf5184910be3fdc7e514baeb72d02f573046d3dd0b4f9b8f8574784de57e53
MD5 66f7f550c1052097fcc85a24432e7bdb
BLAKE2b-256 8b15464026173f9a5015011e73dd0120098912f88eaa38c90d77f74909114674

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 716c7f7bfb73d8f644c04f4f1cf73a34541a169340e21f5c60818c9e3d0a0c33
MD5 9c96bfd477fae1c3df61cce900681ba7
BLAKE2b-256 ff55248b0559a30fd383124be3167315ce950150165a7b5fff9e38a3cddefa29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d338d39640ce6f1064f03a54fae9dafc4693652bcd42c7571298cb6c94cd901
MD5 4d97c51f2f5a3941cb981d4c91930673
BLAKE2b-256 58af67ce848a11603c64ca97fc2d28cbf20288a3f20baa35477cc3b6958b01c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 971594038ae8b9b39b3d9394882f71ba5eaebbfb95dce258528829b4fbd4b67b
MD5 a23b8086c1aaf6037d4926300e33c41e
BLAKE2b-256 c17da932b0e12c89537fb33a3a9e7be024842735b783bfaed87c05a829fb466b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3334bb138bab4e4b172b43d33c7f6d6c061d901ae85f3a22f6071e1cdce93414
MD5 8bf50ca83dd94659dbf5368c2e071355
BLAKE2b-256 11b80626548b0e0a16799a5ecdb8f8cd5cbecd1213702ea3144bdf16087c1507

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 714087f50c25b12c6631dc5be40e224b3ba45593e590746ef3cdb7a1460ad253
MD5 ce31c55edf333e050b2a1079e23c8e46
BLAKE2b-256 c1fc4ab2fd861d34fdb8db323d31b5a41c84584a61e6e0e9c32cbc5664be955c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7576f9b7699f541821831fde78e760f3e585dd1805f6ecfc6f0383f5e15a414c
MD5 8e36d8d1a6b3901e20231036f001f2c0
BLAKE2b-256 ae09c77b241e34a03e6eeb28321c60bf6c7396ef0f6b17050d6e9d700b5fdac3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 59bef21c1cdef95d3afca2ec6a430e6f4def349eb643e28038a7b7beda86ecd7
MD5 69c94ba087cd1660ff176b969d2b06a3
BLAKE2b-256 31d07b07d4242fc02005eae22065d8356cb77859301d4be577b740c36e378c02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 614d75bf9e02d98cc2dd6e2b45e1dcfbe39ce718ddff68a14b63fbd3b482cd1d
MD5 ab7fefd7cc2322f8374d4dd36db1c7a3
BLAKE2b-256 16e6056597e27d9f7ba31f34c40246b1c5a3f6b4319884694c25e79586649254

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7ae441f7e6d99817d00482a08d010c5ba4bab82b3aabad3cbe1d1dc857594ae
MD5 cc1bf611f81844255229289bbfd96eee
BLAKE2b-256 b1a46078a8d12b3dbee45562c8e7baa9de3cc9b3dd32b21332846c29869d76ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.9.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.9.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.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ddcf4ad68a445464708695aa720c018b0d37bb970874a8054823b7b7907b5f31
MD5 1726cda6dd82018062f65e1b2154213e
BLAKE2b-256 30ed4249ec6f72f54730f40d31859dd7a78278994923136e9148d4a1b7e7f331

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb333c8a309832042219337c4f4bc546bc7eaa8678f3a2f77465526eae266409
MD5 910233dfbf6b78ea9190584b095ef18b
BLAKE2b-256 edc7290a59865709ad52c56d400dcf5c3600769f6f8f08cb0a45a5561b11ab18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fb0a9ee95bdd4e057da6d1735540b4ec0fd153402e7baeb2d643f2237b628d4
MD5 f29381a9a4ebf637c9b2a743f606f7c5
BLAKE2b-256 30c19aa9f82a11a57576039b57acd4a61dc18f7b780af136e7f2928e7621af4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.9.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f345836014ac8159005f5afcf26529fde020174dafc98bec1d8d1358ea71d46
MD5 ca838448e387aa538efba350d97db1ee
BLAKE2b-256 cb8c1b36f5d925420fa818ec157149df2a083169556defa4c68c498af710370e

See more details on using hashes here.

Provenance

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