Skip to main content

Fast transport/protocol networking for asyncio

Reason this release was yanked:

poor performance

Project description

aiofastnet

Test status codecov Latest PyPI package version Downloads count

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.14.0.tar.gz (270.8 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.14.0-cp314-cp314t-win_arm64.whl (345.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.14.0-cp314-cp314t-win_amd64.whl (401.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.14.0-cp314-cp314t-win32.whl (353.4 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl (464.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (460.1 kB view details)

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

aiofastnet-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (448.8 kB view details)

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

aiofastnet-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl (411.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl (424.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.14.0-cp314-cp314-win_arm64.whl (323.5 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.14.0-cp314-cp314-win_amd64.whl (365.4 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.14.0-cp314-cp314-win32.whl (319.8 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl (458.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl (441.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (454.2 kB view details)

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

aiofastnet-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.6 kB view details)

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

aiofastnet-0.14.0-cp314-cp314-macosx_11_0_arm64.whl (384.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl (401.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.14.0-cp313-cp313-win_arm64.whl (312.2 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.14.0-cp313-cp313-win_amd64.whl (361.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.14.0-cp313-cp313-win32.whl (315.6 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (456.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl (435.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (452.0 kB view details)

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

aiofastnet-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.5 kB view details)

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

aiofastnet-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (382.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl (399.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.14.0-cp312-cp312-win_arm64.whl (313.2 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.14.0-cp312-cp312-win_amd64.whl (362.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.14.0-cp312-cp312-win32.whl (316.7 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (459.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl (437.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (455.2 kB view details)

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

aiofastnet-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (431.2 kB view details)

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

aiofastnet-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (384.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl (401.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.14.0-cp311-cp311-win_arm64.whl (321.3 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.14.0-cp311-cp311-win_amd64.whl (365.2 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.14.0-cp311-cp311-win32.whl (323.0 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (461.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl (444.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (457.0 kB view details)

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

aiofastnet-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.4 kB view details)

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

aiofastnet-0.14.0-cp311-cp311-macosx_11_0_arm64.whl (386.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl (401.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.14.0-cp310-cp310-win_arm64.whl (320.4 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.14.0-cp310-cp310-win_amd64.whl (361.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.14.0-cp310-cp310-win32.whl (322.7 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (459.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl (443.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (455.2 kB view details)

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

aiofastnet-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.4 kB view details)

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

aiofastnet-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (387.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl (401.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.14.0-cp39-cp39-win_arm64.whl (321.6 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.14.0-cp39-cp39-win_amd64.whl (362.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.14.0-cp39-cp39-win32.whl (323.8 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (461.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl (444.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (456.7 kB view details)

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

aiofastnet-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.6 kB view details)

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

aiofastnet-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (388.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl (402.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.14.0.tar.gz
Algorithm Hash digest
SHA256 484b7f957a25893a98a619d1fde17ea6527e187ae21b26c5fa373980d7d062b8
MD5 af763ee76769f276620f90ef15caed7d
BLAKE2b-256 997b78808d490fb6c01e5b22c4d20a2c10442746fd31a9520fd2a0e8a07f78cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 15627c3ca41653b8b4940f6b71fd39a2959310ff7366771a8f136b3bd32cdd37
MD5 99c09d845693424c4180073de824cecd
BLAKE2b-256 999d9d91cf73d7903589dfb7ae71fd779f9c189d7b8163e94556fbeb66c2a3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b20b7ed2ce518ebd81d379b5d787e9014fcdfe20f064c8e68008a41376743817
MD5 ba0a9100e249892520782c89e6f65c14
BLAKE2b-256 17d96686e69e5a74dd0c9e7f671d0aaca432235d06402d0fca06bb8a3af2e385

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 353.4 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.14.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e0bab17c1f249b88456423296ec1e4feb25dbbdb201d5842426a56238e9dea68
MD5 3dec89265e52f97ac33a228024406f51
BLAKE2b-256 8477d32ca3e6dccb97dda245c982b2307b389c1e2a80b6972b92d60e0410ba63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a82e0daade005d8cd3acb8a7c72177b9f0e23052a28ba583f68881f68ed4c1e
MD5 249429ac7d29295df947e37005b74e43
BLAKE2b-256 39bb0f2fced09deb0cb889a7051819148530b0b40d2ad957e547ae410c093fc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 861c0e8eb55a1faa6ab707125a21dbe9efb26e76d9a719a01b280544942555b1
MD5 85315b079797662fdfeab22f5ffe3d2e
BLAKE2b-256 af2c80c438cb43051a05d1ed18f8d72c27b2f1d1005a2b4a63ec3b236b5f3605

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 127e183d7f7b44b8b2d119405110a0c9e19dec71cf71be62b1b4498294944576
MD5 38dd35e252a7d99401b6f6bcdcd7055e
BLAKE2b-256 40223b9f416f53c7213b9f3142fbf709bf7a5376fd921fec5f2c7160c2f752c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06a01162bfd6fae5a737c39c92fb51faefe2462d19fba60abe1649344a9c159e
MD5 989fb4d4485daf428fa7b35a14f3848e
BLAKE2b-256 c29a5a9e8c018ab3eaadff1141175ec9553f2087515ed43c5f4644000d5dd7f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06c9948d73d48c598278433c9cb6de324a898fe76dc9e401587c7306c399f2a3
MD5 e7f5e874c297c6b8b2d31f83eed52d44
BLAKE2b-256 1ffd960ca6178b883964183e5246e1e57d0c3c334d7a9006979f099670a0a2e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 85f09855ebae0d582b09091e6c19e52215733294224d27fb2bc07de84f6e49a9
MD5 c4ad462f814dbb985af2240ff8c794ad
BLAKE2b-256 d9b1482c2f259eef9cbf25f1bd7e217d5b48651ce1b31636e0668b8a5b0e0963

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 323.5 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.14.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b5bee4ae4628d292009acd6f92d004e18ec36e68b77ea6843dff146e15187338
MD5 10a363a395fd4a2dcd6b92592efe544d
BLAKE2b-256 231f2ae1b02a29c0ea94e3195b3059659e606bbcf96f5d0192efd40f8789ab44

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 365.4 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.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9f61e414c880cd0d78791c9b74f4fc0cb932e15d6fae7ebdbc4f1c734aa0abfa
MD5 b6de228bde1e5c191c1afbac56bf489f
BLAKE2b-256 4d0e78bcf2e7c5ea7fc7fee15dbd16cf01cfa4a5a850b0ef0622fc8acfb747be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 319.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.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 93c385877fb3ef7324c4631d64c1fe302830329f69b2426982c6d0ff007adac0
MD5 e58fc75d69905a6c839f1b281f31d2c3
BLAKE2b-256 88f16792838ab428b4e17625deaf9664b42cca1ab2114c0b073aba42a130832a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8ffa314d10acffceb003b03cf5e716d1b8253e19e7bc4f88d4e8a5a092fc59f
MD5 0d14310902312afc37e3fb837aba10ef
BLAKE2b-256 117e7191b4b923642d74e834ccfdf5af442b07909c0c429358752795cd6516d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef16fac0f81687b452734fd425a730d0f5b4a6006581fec1b84c57dd84cdc328
MD5 c2a03b4959dc2d5b7c082c0b453127b6
BLAKE2b-256 d9e182e9fc77466ee24c76b50da3bd7c0a9727175393393b29aac817968d3d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8403cd9b36d18c1b6570c521751b8526ff8f76515684fa290b09184edb6b4783
MD5 b0de44eead2d9fa17ed5943a237376f8
BLAKE2b-256 6c618582d8268e956982fd605af1b2aa91e3774424781d6e8a746aa26344b96d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0efb71981622ed01968c48288dba12bccb1146c982a8822326ed7a01ab768b4b
MD5 ab4e10f21974f2b7e101b37555a91f65
BLAKE2b-256 250cf4112a8d6524b2b5054759a48d2985ca872615e7976ea595459ad522a329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c127331f7db7ba52c88c329de9a0f126a57bdec71729bc7270669782d8e435f1
MD5 951bf414e1c95fbc8b202dbcd921f31c
BLAKE2b-256 8869490870f67a0c559347e9ada99c87e37b663076f9ea315309d9b39d03390c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7901c1ca342dcf0bf91fae3874b378aaa2bfe1d58191056eac9c100bfdc3ba73
MD5 6d09781a7d004af404a5a087c93a9fbd
BLAKE2b-256 f94e7a7c41b7a447c07890af5c8debf5ad7941a09d40aebb17d37212ccf353d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 312.2 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.14.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e1ac7d5021774181fa72c870890465b596528ad77cd673246813609408c32534
MD5 5cad8c4fc32ed8996e4e5cc0facb8989
BLAKE2b-256 2236bbaa47df11d6e35ebc27f422fa5a8d6d426175f715c8da179a5859797045

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 361.2 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.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a20e72d03eaa1361ad9430eededbea44b11e6ee0ab269392397f99288e3911eb
MD5 c3330829070a13b318b01b1c261c61c4
BLAKE2b-256 de01236240c609ee05e91ddaca4e1d77c8daede1f7ced77346451c0f5853d46a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 315.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.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9d75f96910ec85f9cf0464c91630bcbef768dd4e6e7b35c6eda019536e72fc9f
MD5 51ec6e98b5dd0b094c39147459367ff8
BLAKE2b-256 f24bb890f65356caf610f2d10a02efdc6568c55d6e3b273c9c7134297843dc4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4acf0735d83c9486a33f276cb6e2bee3bcb699ed986dc71e4193a9f9cabf58d
MD5 212927bcb5e1d54b836a3b3793f871fc
BLAKE2b-256 efc2edf9c567170f98d3522b8fdeb2ac92f677d8b53193b25b058750a372666d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 684cf78a7ce864ef3a785223b20caab1f0d830d58fecf79c8dbe0e26e99e872f
MD5 8de2722e1f3f09d645b515d445142d44
BLAKE2b-256 20929a1c7b0a8f11ee2fd67c90acb3169abba827d7ef87ac4c0ce1309bdfc75a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32910bd362fe2a1fbc2c79695849c94ba9b74dc86122a2dfe543bb10f37b84b1
MD5 98b521dd23ff3e8eda493f8660832e27
BLAKE2b-256 14cb6f835ed3d9b0e5de607efc8e7c85d9c6d2dd11ee1b95552edd942148ad0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03758a38fcfaf7dfd2906981df139ab1dac1d8bdaa0ea51bf12206ae6cb2c0dd
MD5 f725977252449f0e614a6abaed2ae493
BLAKE2b-256 e573ee3565d48f64162c9ffdf9d7718760f0fc89ea3dc16a66239c0beccc9bf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 482a2ff66375642825d63862990436a37c5447e650d04f0d8fda6448242abf39
MD5 536a16017adf5551e242583010f81bf5
BLAKE2b-256 cc40f949103ff4490892d54c4d24561f4a61fdfd25fb87de7f441794218a7733

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5351430aea5ec78691abc57aa455b07aa0a478e35a307d77241e00042b9bfc27
MD5 84ccfc56772158d765448f697b0e21ee
BLAKE2b-256 dcee89b9785f05391a3dd23e40678ac2b819aa0b0388419325343fb0f08ca40a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 313.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.14.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9f6d9bb8a472ba044e42d6fa8c6604e164039b536cdd36bf423836fbd09287d7
MD5 b23ad03db7c1071eaa3da5e6736edecc
BLAKE2b-256 8d13873eaf1cb2b7d01e1e47511c487bb2dc3b6efa613631b3a8eabefab9f966

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.8 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.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ccef83f5e961dbcea0296bac634d1f39da477dd8c0cd16383e27baec4e8f322
MD5 b5b030e1cdea1db7a7823a9a04fb272c
BLAKE2b-256 a58bfc63625bf93941d55dee965f990df038b00df472b1a59f867c13ee81664b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 316.7 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.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2a638747f6efb12fcc9e69edb1ede6be5d1b74dcf1ca40329fe4e2a16ae3ddbf
MD5 f0ad33a19545c2ded37361980a3d8508
BLAKE2b-256 34bb60836fc57773c8e7bec323d4b4a04919f7309d95d63b792fd3a21909c756

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f651399b6fe6d6ab3b57d0a8b1a447355ec21dc5485783f29ee22d4e031cf564
MD5 d1b1c0e2affe5153412363b438644e13
BLAKE2b-256 9beb97f92c30d7b82f50b8323b475148ed5e28ce9cb08e42faf65886d95b339c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d05934c7a30e05dc43d995b224f5147895b6245223b3cf52d8ee033ca72ad934
MD5 4611704656bb2d189fb9764ca2bd02cb
BLAKE2b-256 a472ed8a29dbd7d10fd7cbb8dbcfd0db72ac1d4c989084a76cb5dd4f90c5c180

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c45813a6f8486f293eeb7afaf633169bbcbe440eddbdfcaa327d89cdc655371
MD5 24a345a659b7ddd7bb0c3db20a555446
BLAKE2b-256 72bf117559d036b354e76bf604caa3c4828234fd3255a0fe9f5b4ee52c36268a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d86acb5d079561a3c7520c509d6187972f22451919245adc5ba55648fa9bf3e5
MD5 22481e7c5345333bdaf58d9bcc39374c
BLAKE2b-256 fa9819e035e9e503777483eb02a353cb00b2205b4dd8827d905b150fe4baec06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9d2ac626d7aaede8867a6a2c2c426e650179466e02566636a063290aae1dc33
MD5 063e461fa5b90ecb32cbd0601a305a16
BLAKE2b-256 291bbc96e20ba9dce3dbdb305c82ed6b8cbc277f9ae8fbfbc2cafe02672ce15e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 353ad67294f4026adfc16416b29dff327a017a54fd41cf2622bc43108ad5ef6b
MD5 8b74c6e967d983313e8ac2a1ab5c2bd0
BLAKE2b-256 a8f35c4cfb94be86de268d8c43395c8ceb810ccaf443d904a61f198f75594723

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 321.3 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.14.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 04d9c3299333e2b6f5a1296edc5f59b06961310034258da53dbcafa6de46f8ad
MD5 8082bb30856637f9149a121aed8cca4f
BLAKE2b-256 3c82a0f07897d9c4c65979bd8b2e630ca55fac7a503714da483a4ecda95721ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 365.2 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.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 af7f153d2498dd89d898c213a6c12201d5f6f1807f50e9b6e83af7c61aae7b10
MD5 6ba4702fc232765c7795c5fadd3c63aa
BLAKE2b-256 d876b00158d9d1cfb303a2a319cc1f3d8121ff4a8b5734f6987f34715ebb69e7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 323.0 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.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0d51d4547cd7f2f45c23ae5960267f3b678710d804f7dd10d51db46eaab7409c
MD5 307d5bad688f712228decc41156e26db
BLAKE2b-256 f533d4e3eeec53b4350e4287c098caae34151f94f602550d1139d677336cca5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9384359c965d7ae5e38112c73e53917843de4bea250289efe933cc0c67066d58
MD5 4592c7b2fb04ef161c7f2b89be24333e
BLAKE2b-256 8f568f6bd65d129454cea26d9a1c07c27fa0d8b9e2ecf194f344f2c73c494405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b7401f85990530992c283be78f97484fbbab6b1fe159a9ddf2a72fb08f939da
MD5 2c88f2e6759b6b2397b8c30e2b14aad5
BLAKE2b-256 545ff83149c85d17c8f01647802ef13e97fc3f4765cc6e14fc1f32c2c53a085f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76ce2c78ec6289988836d0b731aef06365ede45e4c69332e097d3307f733fb7d
MD5 6320717e818c335ef323129f3be6d3d2
BLAKE2b-256 6976e76894bc57501192a2682ea9b862f45a4a53d9be075be682fcd44328173f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dfd048f5bb71c4e0a820b749cd42a22d5a34482e9f2608f23d6d2341800dd9b5
MD5 844bf69cd9e02d9df8ffc62f8caba18b
BLAKE2b-256 67815cd268e89d858b7bd4784def527dfdae0d059ac8ee8dda31e91908b8338e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eb8642969d166f45f85ac599dde2a73dedcdafc65085e6c440191ac60a1eb06
MD5 b102c71423584864ca99b2466732b174
BLAKE2b-256 5805e825bbe52262a40d2f3e30f174fb3b5f37152f76fed16c1595fb11e448af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 782797e7d08a5d503315385a7354311d4dc389d7c7797ee395c88e76877f563e
MD5 f21af7518cc39c691985cf819ac5e31e
BLAKE2b-256 bee6cecec538c78a5293bff435505419bfe510571bf1c888791620d5cbc182a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 320.4 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.14.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ef624b53d66c52a75a669acf4ce321beed7214685243b62d33f7366c4f20d34d
MD5 678531489697c8fb2186132f62b63c18
BLAKE2b-256 22226663da9c5c0b42adf916f4db79a1de3dd9b4b3a264f5b344cc8bc95829f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 361.5 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.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77376b0fb020fd54b35db142d039f859d15d98837366a12115051790ebbaf289
MD5 07ab897963b7ff8040715cce9e62b142
BLAKE2b-256 3451f3131e6b15faba66ad69fe6e6f4ff4a3468faeb0e4278754161ac2024ff7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.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.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d747f1e2cf1804ec46a3cfe27d38c83c48144ecfa4300ab8df74b50627821a1b
MD5 bf187db231c5bac1bc276b013a358e25
BLAKE2b-256 1b6d07595ee70c26e87b9e2b775a097980a40c5697a8f82027fd278353156ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7339317d4fbd0240ed651dd8b0bafe07d1f2602065647afedee6df13f1f389b6
MD5 c05b10a3bce8d8add8e5a0c7f8e0778d
BLAKE2b-256 f4cd81e56b5525849c2f5a6dc5a13d4d20b17832109dde9219989db182719ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3455b0e50006768a47e9d03c5523dfe353210d35d837ca51a2ffe3769a326c46
MD5 efd1119381246fe86f1ddd1f36d807b4
BLAKE2b-256 8f84435adccafc44f6980cbbf50d8741f021a890a1081266e7d6236e07d7ff20

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bda64a01f1204f1f286dc7261a9aab0c006d5c46c93886fd53804f5530b3657
MD5 f44d9731e34479368b8d8fd5771e20cc
BLAKE2b-256 1f47bfa75089b376e065666d9404e8138b6609d05a57f20ba5827ade668fbf8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 91caf79f41b966ad6445364912ce38cccd65628bae13101451d6a4dd689613fd
MD5 5b8fbc7566bb508af53146dcc05f0c94
BLAKE2b-256 b3bf6b7f75a9bf68dcca0398e57e30ead4365f285436f897f18a6dad8fb407e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 824df0d48e931dacf0f7805dee440bb243a4f11c03471fbb5c14cd6cc63d29d0
MD5 6f510916bf5c663171cbfd3c5e9a6e5b
BLAKE2b-256 e89606261da3724e97d8993bd1a7fef9a6f48b77e468e0db4c7d5dca411c910e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 665b26876e489921200e4f5cfc3ccdd3d3630faaae5f291b9a81fc73d8db5746
MD5 e38a2e973c13b5a2e63afd1b8ea221ba
BLAKE2b-256 76d85ac5fdf56ad6698f83b497d63cbc44f7f72f566a1ecb1d32fba06589d057

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 321.6 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.14.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 80e51cc61e58985acf570f1b7e5c58292afb8cb55c242bd77c7de04b843acffb
MD5 cba4505c1034e293629371e3b61ad93a
BLAKE2b-256 a5d3d562dfae4e24a8fc3f0c51ce65b20a22eb549a74b8dd91731aa05a17d1f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 362.9 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.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b05651fe5276ee390727734c7fed44882129fd6f134e9ea7002b06b908ec0df1
MD5 3999fd9d87dc2c4e588c6185c15ada6e
BLAKE2b-256 cfec6ef658d0f7c24cfc403333d55d7dcd31854ba3f108162f10463594f2cd79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.14.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 323.8 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.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 77c0df6f8115d349065c4f0a5fe4da682eb4a6b56712ec3a0324736e787cc766
MD5 8918401dbc7237fcdc36c0d49c9a8d77
BLAKE2b-256 7b83a3098db59038c7359b5ac3e8fdd8fcc44b9f35440c859dccffc57bce9aa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b75e5c3e2f632cda3f975d5d3ac0aca760d68d8e689840c2ad5cc60c130bd00
MD5 677075d467b53bfe2b42eff7e13f3778
BLAKE2b-256 84cd617f3bc48e05454914519a3223ce116011a0266e36a11c2b2ca86848050c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fdf6d0f18aab50192066d58dbfd3e14a5a5ca9c647be3c90a697784bdd5caf8
MD5 6464f450f4d49cb31b6e35f47601cf91
BLAKE2b-256 231b9072674bfeff636b2673d2665c1b5d9e0d9deac9c1a71741256bc1231e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.14.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.14.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.14.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d7b542a4d8298ed25059c6916b39f588e44fc471c0ac9e93e544c4b02e9d962
MD5 50f63eda6392e13025d1bff26d2c0f5e
BLAKE2b-256 88114b2b5b9ddfdf0258ee7ef51f6f548ed6429f13eba42b55fb55fad0e26ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4b4f8a34d3eacdb28a3072e60fcb8f7e604f0e2cc5daa25cb01e5d96de255234
MD5 93f601ed66a2b4ecde9d594ad5eb643b
BLAKE2b-256 3e8452341ad31970d3ea4ad4ac50b3d49878b2bee2f6f8960d51eb2e875056cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f21765461d182506ba2f74b674328566c3994ed59b4145ca3b30d86701971ba0
MD5 c5da440e982a6b92aefff64351c9d6ff
BLAKE2b-256 cd9f0ef150dc3410dc24b4cdbc68a4045d893b6a3d27a3ecd4ac4007d942f299

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 844c1d815d1e019c8c0af27bda1ce9fd212e43415e26fb807d11045ec69750de
MD5 a5db800d26c51ec636fade69bb50cdee
BLAKE2b-256 94cc818553abe1c3eef203ba3729512549c69802275730a721094ced3e56aab0

See more details on using hashes here.

Provenance

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