Skip to main content

aiofastnet

Test status codecov Latest PyPI package version Downloads count CodSpeed

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

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.

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.

Asyncio Compatibility

aiofastnet is a drop-in replacement and is expected to behave like the corresponding asyncio API, with one notable exception: aiofastnet implements its own SSLObject type, and transport.get_extra_info("ssl_object") returns it instead of ssl.SSLObject.

Compared with ssl.SSLObject, the following public methods are absent:

  • do_handshake()
  • read()
  • write()
  • unwrap()
  • pending()
  • selected_npn_protocol()
  • verify_client_post_handshake()

The following public attribute is also absent:

  • 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 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!

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.18.0.tar.gz (405.4 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.18.0-cp314-cp314t-win_arm64.whl (371.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.18.0-cp314-cp314t-win_amd64.whl (429.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.18.0-cp314-cp314t-win32.whl (379.5 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl (499.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl (491.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (493.1 kB view details)

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

aiofastnet-0.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (483.7 kB view details)

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

aiofastnet-0.18.0-cp314-cp314t-macosx_11_0_arm64.whl (439.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl (452.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.18.0-cp314-cp314-win_arm64.whl (346.9 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.18.0-cp314-cp314-win_amd64.whl (391.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.18.0-cp314-cp314-win32.whl (343.8 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl (489.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp314-cp314-musllinux_1_2_aarch64.whl (471.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (483.3 kB view details)

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

aiofastnet-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (465.3 kB view details)

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

aiofastnet-0.18.0-cp314-cp314-macosx_11_0_arm64.whl (411.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.18.0-cp313-cp313-win_arm64.whl (335.7 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.18.0-cp313-cp313-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.18.0-cp313-cp313-win32.whl (338.8 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.18.0-cp313-cp313-musllinux_1_2_x86_64.whl (487.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp313-cp313-musllinux_1_2_aarch64.whl (465.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (481.8 kB view details)

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

aiofastnet-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (458.4 kB view details)

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

aiofastnet-0.18.0-cp313-cp313-macosx_11_0_arm64.whl (409.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl (423.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.18.0-cp312-cp312-win_arm64.whl (337.0 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.18.0-cp312-cp312-win_amd64.whl (387.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.18.0-cp312-cp312-win32.whl (339.9 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl (491.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl (468.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (485.9 kB view details)

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

aiofastnet-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (461.8 kB view details)

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

aiofastnet-0.18.0-cp312-cp312-macosx_11_0_arm64.whl (412.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl (428.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.18.0-cp311-cp311-win_arm64.whl (345.8 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.18.0-cp311-cp311-win_amd64.whl (392.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.18.0-cp311-cp311-win32.whl (346.8 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl (488.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl (472.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (483.8 kB view details)

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

aiofastnet-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (466.2 kB view details)

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

aiofastnet-0.18.0-cp311-cp311-macosx_11_0_arm64.whl (414.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.18.0-cp310-cp310-win_arm64.whl (345.5 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.18.0-cp310-cp310-win_amd64.whl (389.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.18.0-cp310-cp310-win32.whl (347.2 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl (487.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl (472.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (483.7 kB view details)

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

aiofastnet-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (465.7 kB view details)

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

aiofastnet-0.18.0-cp310-cp310-macosx_11_0_arm64.whl (414.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl (427.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.18.0-cp39-cp39-win_arm64.whl (346.7 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.18.0-cp39-cp39-win_amd64.whl (390.5 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.18.0-cp39-cp39-win32.whl (348.2 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl (489.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl (474.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (485.4 kB view details)

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

aiofastnet-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (467.5 kB view details)

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

aiofastnet-0.18.0-cp39-cp39-macosx_11_0_arm64.whl (416.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl (429.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.18.0.tar.gz
Algorithm Hash digest
SHA256 c2f37ac32e558053f5126b6c95c966c0578ce25ca7a51f7ae0bbc209e3e386e9
MD5 5e804f41d840c9f558706209b7f0f399
BLAKE2b-256 5f545aa8df19dfb3ce72745ece5323af3a383dbb7252cf71e89b2d9f4bbd6f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 6d7dac218be690a3ba7e78c6f33dd2bfb2fd2ddd5e4d22574f931ea07e6c4db2
MD5 923ee3c834917b2401d6b16eb2c36184
BLAKE2b-256 ddf9019213a04193e5764381c1ab20c94a41c51e444daf94bef504302c4973c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ae8e9df9b8f977e5c49a4f201d9a024ed23ff85efe3f6d678e5d1f9dafea68ef
MD5 110217b5fced4f6f835119dae6cf106f
BLAKE2b-256 2415e528b49ae5b59bc80aaac9d6d566e9ee42b09526cec1911b5102ddd12fcd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 379.5 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.18.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 3b6578621058de891c2f8a6f38e106b2a449d3e45692878e4b1e37efd822719a
MD5 361b45df17ac7cfc1f71126727f26e86
BLAKE2b-256 8e099913517d6ee0cae702570ce8f29cf1a6b2ac25ce816637442a89f7a38652

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8930cbc417b9c39d07d31b8d7151512888630ef3ca928232eb532445ccb6e72
MD5 dc1689cb3dae119e3603501f48799679
BLAKE2b-256 b5633f69f26afa04bf877db0bf2010acf56b6515ecc13ae295dc3e677ed7bb50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bc26f1fbd89c40c48718c7742a0beef81d4dcfca2c0627e734da31938bf1e49
MD5 ace219c06f6700ec45aafcd253430cd9
BLAKE2b-256 d7072bc9a88141b655ef9f8a111ea230231ff86eef383c29025401050114689b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76f0c1d347abcb2f705c75a2d880718c87e2219a1996e179b11e415e2a0fd7ea
MD5 2a760d0cb04b0544391dfac5e11ab111
BLAKE2b-256 9f29a39887d910febe17a5efc0a442f833d43ad6af58d0e73c0b60006bd3fcd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12237ac1ff5a1b5eae8c85a61a26852fd015588015c3e015180a6a4e05e6aa1b
MD5 28f259556133072701449661d71b2181
BLAKE2b-256 c26473650f152752dc44bce3feadb5a1a6c7d60e08c682cc5abdc8d3221467bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f41669e32ae3516bca35f821df55314cf79f92449b43593297f1017c6ff3fccf
MD5 86d40ccf50a13b6928b7d0a05a9aff71
BLAKE2b-256 63335c3468ba3dc5e833c0e4b20488df17c557e760d153651f33d54e8be4069d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ef7d4d5d5126e5f589ca2742fee03914a5749c05efa61fcb0a77fca5e85ec7c
MD5 bfdfff16556231b269bee9bf6e1dc2f6
BLAKE2b-256 84af5bedd1b58134685e9f9dc0b4f9c4d206919ac14fbdbe324ceb5b3b54ce50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 346.9 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.18.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b585cbaf6e0ed0dc638b33617cdd71c1e4333446c7682e7cc773704fe2e2ff17
MD5 a76839e5bea99e42377ae93938399e57
BLAKE2b-256 0f8b44b4caa7ec15def79e93924fb9d77d6b21e66e76e0a3189489a6bfbb876c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 391.6 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.18.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20e9bd8343d0783afe34565db4dfc6cf78fac7c5d03bd02dda4d74aad8806b6e
MD5 91f0a7d2a079dae7f13e4b50d9fd43ad
BLAKE2b-256 1d2402725740db26ec40ed55c70ddc99261962efd5cc1e93d4b7c22e94acfc00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 343.8 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.18.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 62c3ff6612c770d2231f88f2be5eed204810778eadddb6646874c1cd0e3da15a
MD5 1a629b09e627a984bfc6c21e3d4a0ef4
BLAKE2b-256 5bd080c810b1134902dea4d2bc146cd920e50acee49f6bdf1f748e68ad5ebb6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd294021c109f5af03427daa4852bb0e9ca4e6f2a100c31d9acc9d1c03733cd0
MD5 d3a305e27f18431b2aab5e192d1a0f0d
BLAKE2b-256 9430a15f08fb254e24c54e5c2e3fd0294ac603b03d40e7e63c2609cbe16bde9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bba2752f27265b6fdce4bd787f6362251b7cfbb962feb1f0513453fb69b8f7ff
MD5 7e89bccde7bbf4d90f2074f76708a9ba
BLAKE2b-256 24ac146b9f8fcac7ce6a0e51a2af1bdd20e0e682b0cc0e100039949338bd405e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee77c384b82adbfed37668309cc9c7e0346bf209bb9fe51037405c9273a009df
MD5 4c7dc9c2de6402571cb201885aa467d0
BLAKE2b-256 9beffadc9061d136072c3bc67f35671200ceb402d9a8691eb5b6aef5106dd8e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dabca0a498f2147ae9b44a44679f5a78d9681fb015088f6b1d0fe05e7545d44a
MD5 cf88f161d452d465a21619929b880d03
BLAKE2b-256 bdc13c2c5dc50ed07d984ffce874d43c90be91bbbb8f96983201d573e8b9c062

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d315635eaa043560a40690996049da1a6d08ceaa4f7c3f569fde7b303ca2af34
MD5 3248841749391967bd7c62153b7fdc05
BLAKE2b-256 61969a9588fa1eecf6ce05d66d6e00a96d89e2abcb1e731ab4e1a12124de1252

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 52c1498c6054f78c11e3a3f0858a15c53f7cd12ae52c3e33ce617d0979d6249c
MD5 d0beb39e2ce2c7d231abe09ee052196a
BLAKE2b-256 c53b164a9fc197b24ea48772234746c7864f86991c08ea00aa3dafba3513158a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 335.7 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.18.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 356e9495319cb15e991afd7cd80fbebfd3797ab326052a45b86ce0c878501329
MD5 0597a0e5efa80c0167af11c32ad438ea
BLAKE2b-256 611867035cc00b2f33ec03030f51ca2cb897d7e998f591340121a74514de6b50

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 386.1 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.18.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 75d51c5e5e8b0aa0ee8395458e3c210cd258a6ada9eb7e003585d36b7f4de859
MD5 bcec194403b1854c868c451a445d757b
BLAKE2b-256 dfd1e2f7f048e6bfce913419a5f9641483d8824a3268c5801341f99e6ca10fc6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 338.8 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.18.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 12e7e8b9cdc09edcc04d4329a0d3e2b004d437086798c92d044661bed6634810
MD5 642b9671e91b55c4b7ab3eb6b1db4914
BLAKE2b-256 ac0359b0d6c1692de05ed6d84e1d157690cb90f5dab1f90d7d32dc580d450e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8aa6ad7d10233ce0f81e0f373ed77c2ee3defcb56d29799ee03fbc0ba1fedc6
MD5 f4396f9a476e9a2bbf85d71f810cf917
BLAKE2b-256 2920ae507ec5a9498309663d4b4b2a5e60acfb50b520016171e33aecac9df49d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 125e4825ac6c48a0bfbe78f7da724b75298571c574845f1d30bf0273276f1bf8
MD5 026fb107cc643aed85a87eeab5daefbe
BLAKE2b-256 0c3b32eb9d0d51b9fa289c8fbc40007d29d84669e88af7affa735475c75b51d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 85d45c64bc75d6ecf5b68d39ab0a1172b79f8a3ea81c0b2fbaad078a0591095a
MD5 924157f6189067c6fafd3b1323a40dcb
BLAKE2b-256 3a9b2bbb0e77f84adacc2a2f483fb45c8d13b7d532d4b4ad1f95931ff9d8d322

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf857825f49a1b7a57e3419edb23cf6522dfbe804c1f0bdab6d3f2210379601a
MD5 99d3c6fa780c07f2ed32989c69e01ca8
BLAKE2b-256 dd6ed622811eff87645215864b790b599ae95420cd9d7c9347f8c404ab266be5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed9374b582141568d3939a02512a1c180d6ff7422cf826f628ae20526fa2f9d2
MD5 37a4a60e700278d37aabd8fd8e3d3217
BLAKE2b-256 f6ccce898050c8814c3f32b883deeca55ed1bf853eb56eea818d8025157dc6cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96251705160dc5a199f293b93662df69b218c1eec7d3481197f77daffa8961e3
MD5 b9c62b79b799337501aed0949dfc2bb8
BLAKE2b-256 dc0a40555deaae1d92aa05f9d471337078e8f1104cd00d752c8b750d3ca3bc8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 337.0 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.18.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8fdd03f6bce3ae63053138527f50d5ffde9c1d8e629bef3c0bbc630fda434beb
MD5 0c587b742032110add292a432037c8f0
BLAKE2b-256 eb2c6bd805cd046f2d5205641b2182f98f6b030d8272381de85f438357f02cf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 387.9 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.18.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cb861c38028e21aae97bad1a80639bb63118a29891c500a849fd904cb7423144
MD5 ac9e377871d22839b41b244257177a19
BLAKE2b-256 3966fcbf2d757f0da589f1f25fcb49cce02b4a178bf011ae6b3fad8293c5d32a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 339.9 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.18.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cd1dc70eb7968ac3fd99556a34fa69d34be8673e325d2e4f467eb940d44f4750
MD5 ef361d97b57e4b60c41b65428aed0381
BLAKE2b-256 c9dbbd499fb9a23ebdeb0cbe7fe2c39ebe5aa13481b5da7ea78ec3af0966f8a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7bfb740a307d0a8650afe2ba0be5f8df31aafce88cae16e044fb2d59709689a3
MD5 a0b663f2a4a9fafa28a0e072a4cc5f50
BLAKE2b-256 f55c90077bcac31eb6a4aa68f4cc62ec62275bc0f0aa9eec60982991b08c393c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51636590881768684418a1a6983f48f027b554679bf399539a97cf97400039ea
MD5 626079ac9a192d9b035926d2072624e9
BLAKE2b-256 2240b1e203622a1e8da24d0c577be19d042d800460fd1f820bceb9a1d0092b0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14c10c67e9dcf24f5034cac67cc4da03bb5ee0ed07ac1f782f2dd25b276325f6
MD5 7a2419bc545b3f6769b332af927f1c98
BLAKE2b-256 bff365a1e464dd55657efdb1435ec511da4774c46789bb676021b019aa78283c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4c3883f452106b75514cef2ee910741ed9d4834cb753d973cd01bb0839eb9b2
MD5 a8f774c5e18bb6bc95fcba190bd8bb29
BLAKE2b-256 e6cf8e8779be278b1f983550a082645fcb6f08621197f0e8a71e01f0d4a32f70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dd0f3a2e7f6b5d2b21f022d788644b35fca659e3b3e72bd8ce0603688a7e8c9
MD5 993e3661bde180205abebdc82b4b0143
BLAKE2b-256 243286169025e6735cfd0fccfadf66e6c0b6f090ebb753b183945fefc9153ce6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d62f2fda0edd6b92d5688fcbf333313cc82c0b0896b9c93bfe9aa4e53e887c28
MD5 f8d293968e08646f043506f1e331ebc5
BLAKE2b-256 1979343bb8d97a06af79106efc236dba88434179022b26dd768de31dbbdf0c53

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 345.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.18.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 22db1f31bcc936524321c3cf6c7014a72fea5577ad5873d52cb6c19bda1147b4
MD5 cf3d0803cb6f798145f12abb4e73392b
BLAKE2b-256 c8530e97cce6ba00bf4e2d66960475db54dcbadb690109b5bfa3617c22182534

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 392.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.18.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 725a5fb902b61f554afbe2aa29e6099d24e4904370382f79fa239755693951fc
MD5 07799c148edbee16397a99b84ad0de4a
BLAKE2b-256 4c3960be771ac9a9e492f311962d61cafe9b0667e4e578c93e87e82aa3530ee5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 346.8 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.18.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7cf60091fad43e6b7bfe958d54200463cb909d06ddbc77ecaab67f979563a63c
MD5 2d9c4b35f622adfeed16a2c948669f59
BLAKE2b-256 d6c683131cb0a7f44412d65d624cab0a54006081399ca3e46930862bff5c9db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39daeda5340f2083c0af4f42e124a6ed3437883e2986e0a42d74d0a71016c6d5
MD5 4d67c0605154d4be51308c2e1fcb0c16
BLAKE2b-256 c6bc3680e7b3dd5c4c0c79c6c4d3821f989f35321af820c9d49793026bbbb150

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86a03f21a842563c15804cc0b0ff0672b8af219fb4730a004d781e2ec5a88f8b
MD5 cf9ed4505fd07915076622d5a98e273f
BLAKE2b-256 343702d748441fa2bc1859c20188884ef60ceb7a5a9eeb00abb012d72db74217

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a0f50d9ce78f38f0b8139fa378b142508b1a7af8989a786b9542fb7b0ae58e0
MD5 5c2b6a9e17c38c4afb5fbcbc156103e6
BLAKE2b-256 db469755e839baa40b33c861be7c8a7e40ee219e635b73c1863faf3dc5982ce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82c1dd0a10a22323d9aa2adfc8ea6ccfef0e6c973efa26d52b900ab46626ef98
MD5 5164e68808fc212f1d12c14115906a46
BLAKE2b-256 9cabddd7ae65315cfb0e2b5b821b05414260c795deef85e9279db2c7f528c9d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9193d11c3e7abd3622d7a4af58357b918871193c5ec06c262ac4da1e6f5a83f0
MD5 0532261e7c63ea0b53f5aa6e8c4fae28
BLAKE2b-256 01a2b55dea018efc509440eafa2fd7d6f964be9e2d99fc63d211985237fd49c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bb2d9e523a2c2a0246e98cd22376b5cc061c5a901a77c100bc80478dc6bf745c
MD5 a5c290eb4f5ecd28bf471ffb24de42fa
BLAKE2b-256 527f92d40544d2bd4d6eeb261b0842b1ab3af2f5ddb211dd8b4efda4a657c598

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 345.5 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.18.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3b26112214e8eef3a5fe56780535052fd9a8b7756a5d4e28beda26d1346b26bd
MD5 d6cba066e92fa41ea928546d99467001
BLAKE2b-256 74c7e21591bb9be36c40cae1eb2f51fc5d3ef6388673095a9f448edab140a235

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 389.0 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.18.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3a2d1044b59ee6796c3b5a29c020e03049dd7b1fdd70ea589f0751a5bb289618
MD5 fcf628183c21f0752171dba130d1d47f
BLAKE2b-256 c01d181bbd8f11fbe9936a17388a63769dcce7952947333a16168890a0e1e022

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 347.2 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.18.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1a372707462d6297c064aa1a81a50b9400313bd56056a0765466cbb5e1303f3a
MD5 68f0077ce1d4843c7049cb0531c556e3
BLAKE2b-256 4b3a237a9c5a63e58e9ca817a3889d60cf78a40e6940bf6f147e79711421e7e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a35766bfc4e283df50471f6d3302d73636bc8b15f9047a83f923be7ca2d5ff58
MD5 16ab6aa66e442a7ca390fc8e15781d38
BLAKE2b-256 e9ef3cf59be03f801e2fc536598a78010052d860a35aaa025cdcc180248923e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2defd740c50d5250e83e90063defacd54c2c1f9c9806b104a07402a3c9a97b5
MD5 58807ad9c00feab3beb6fd41b26f63c5
BLAKE2b-256 4fe25777f57991c761d1a789d3f5af666a35f841496c46d827ef475e8132f395

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1d56d00737b6b533b75ee0d79210e6c1bcf24f9ca87a0b756ee47994f799ad7
MD5 c3fd16c81a31766890a8b3737aa4d382
BLAKE2b-256 20384353b339957423127aee86672db64d2700b03024d06e6bf8b20a1190d5d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6de6ed1c94c5cf31325a09083610c576031ceff761e1853a27878afd2993e2d
MD5 df66d613825cc0fb99a454847f409bac
BLAKE2b-256 b9f927de29dbece04f5cb9555100be001276aaa769a281722027f81a3bcbabd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95a3e8633e3b829c1f44c03d0e189bbfb4d54c9bc92cb0944758457fe9db5fea
MD5 bab4fb123d0c704f26aeb39cd31fdf0d
BLAKE2b-256 dc759a477c71d977daaef3347b278880974bcbb2ebc53a907cb786d0d1a72821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 272d37263b403cf4648492269b48153b8c31d1c41546f9d7f54ae29083781b32
MD5 f76d099f4c342f59950a6b18cef57f3f
BLAKE2b-256 79af24b5a1eede8095f4fd09a0aeef0882f1403796ff18c9751d265d3ecd64b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 346.7 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.18.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b6542522caf00932e3d89ef62acef0ed18b7e33dd2e056750ebfa6b5a00262c3
MD5 b0902429da00cb3717f9b51036fc085b
BLAKE2b-256 31d5938bc48d02dc05651a1ff1fdd39a89967c17a270acf860640a1da9950923

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 390.5 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.18.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 41e755eefe685f207335470efd081ec386c95be6aec808db86d148602befd905
MD5 5361023e615e388479233c0edf4bb869
BLAKE2b-256 6a4f396ee67f726dd11986f2042f5ef3e2e3304709d8c253a03f743de5c3a91c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.18.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 348.2 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.18.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6b602f0eae020d1f65d8b1a78e7fd8de75865a8db8c48ce49245273ef5ee033a
MD5 9ba45b3dce322f538380f0a37db4130c
BLAKE2b-256 2973dc882949c0728c18d5a44c35870296ca1d57956f888c77df7e67aa84b2cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fa4f5c93c88a570264403cf8647452f49453cc477dd756b1832953634540f2d
MD5 04783623d06c48169a93b0e2d3a56bc1
BLAKE2b-256 3f9d21bbb9795eedefdec677742a94da711071e5f74afbb53dd4cc69bbf06551

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2bafbc9ada13366acacedc848282898f6b5882f9da7ee4127d164e25017362d
MD5 8e22c3e6f829dc12c62e3a7149e7c845
BLAKE2b-256 0b879774233942fc70f0be893e2b262b762bd1168217271be42b66013f154828

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.18.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.18.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.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f58d8df0040f419ce2d38b82a6f4391372f9ad0662cb52cec7525a3a1cbe50e4
MD5 9c245ef88fc119efa0725e6b0e19e7c5
BLAKE2b-256 f93b306a9054df21d2eecbcfc5f94a981f5485d2709e7dc34b692a6d4c7204b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cedca0f45376271448ae9c403e73928b1080414f74daba1a61284bcfd303dd61
MD5 d942811ecd8e5b83024ed03b73acbb21
BLAKE2b-256 ae875da59bd187131bf0977f046fc8766cea9cf114d06172dcde299fe5727636

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8438d7201414e360267073c23cc2731c9baa1e71ab088417d67775881e43946f
MD5 35b480cc70436c87378573fc56ccb8f9
BLAKE2b-256 0a24f1823e5d66a048c4a74ffd685ec64ed8f041795e5a5523f2a02f171fe2c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd1fbc3004b88bc6ae69d496c46acbb49d66df27d796f7b51409a10e40bfbf53
MD5 1eabdec632a7a72ce7350ba0191fabae
BLAKE2b-256 2ecc278911aa2c25c51c91e6f3f05cfa4dcfa0adfa02cb03af7fb4540661cb32

See more details on using hashes here.

Provenance

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