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.13.0.tar.gz (270.7 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.13.0-cp314-cp314t-win_arm64.whl (344.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.13.0-cp314-cp314t-win_amd64.whl (400.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.13.0-cp314-cp314t-win32.whl (353.2 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl (465.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl (456.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.13.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.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (449.2 kB view details)

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

aiofastnet-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl (411.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.13.0-cp314-cp314-win_arm64.whl (323.1 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.13.0-cp314-cp314-win_amd64.whl (365.3 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.13.0-cp314-cp314-win32.whl (319.6 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl (458.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl (441.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (453.9 kB view details)

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

aiofastnet-0.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (434.9 kB view details)

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

aiofastnet-0.13.0-cp314-cp314-macosx_11_0_arm64.whl (384.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl (401.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.13.0-cp313-cp313-win_arm64.whl (311.8 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.13.0-cp313-cp313-win32.whl (315.4 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (456.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl (434.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (451.8 kB view details)

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

aiofastnet-0.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.2 kB view details)

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

aiofastnet-0.13.0-cp313-cp313-macosx_11_0_arm64.whl (382.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl (399.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.13.0-cp312-cp312-win_arm64.whl (312.9 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.13.0-cp312-cp312-win_amd64.whl (362.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.13.0-cp312-cp312-win32.whl (316.3 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (458.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl (436.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (454.2 kB view details)

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

aiofastnet-0.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (430.0 kB view details)

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

aiofastnet-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (384.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl (401.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.13.0-cp311-cp311-win_arm64.whl (321.0 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.13.0-cp311-cp311-win_amd64.whl (364.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.13.0-cp311-cp311-win32.whl (322.6 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl (460.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl (442.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (456.2 kB view details)

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

aiofastnet-0.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (436.1 kB view details)

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

aiofastnet-0.13.0-cp311-cp311-macosx_11_0_arm64.whl (386.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.13.0-cp310-cp310-win_arm64.whl (319.8 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.13.0-cp310-cp310-win_amd64.whl (361.3 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.13.0-cp310-cp310-win32.whl (322.4 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (459.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (454.9 kB view details)

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

aiofastnet-0.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (437.3 kB view details)

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

aiofastnet-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (386.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl (401.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.13.0-cp39-cp39-win_arm64.whl (321.0 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.13.0-cp39-cp39-win_amd64.whl (362.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.13.0-cp39-cp39-win32.whl (323.5 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl (461.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl (445.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (456.8 kB view details)

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

aiofastnet-0.13.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (438.4 kB view details)

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

aiofastnet-0.13.0-cp39-cp39-macosx_11_0_arm64.whl (388.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl (402.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.13.0.tar.gz
Algorithm Hash digest
SHA256 45b97dfefaa66f0a9a5922d6054fee139f97a1e070c472999c67e778300ad1e3
MD5 b963d5da191a4946857838226492d7b2
BLAKE2b-256 13b74e3e1f1822f62b9ac16c64329c18cf459eac04d6dbb7f4b3f22b62d5277f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 205c7ef0f8b3d243e7bec61a6f30a8753f25f047c28b6d7a6eaa1f7c94aad7f5
MD5 43a69543df5c65e34197a2759ae9cf69
BLAKE2b-256 43aa8bf7ace8f7346587644ab307e272b0b60ea12e5103f144006292e5ba9f6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 85a83193b57752d717b749b32904408cf872e4780b722f20e0ebb8ed0274d303
MD5 8a5ecec92b84674197803c78d7daacd7
BLAKE2b-256 b86e737ed57278ada37c6e34740708b6ed55ec88aaa79bb2d37c8d9280afdcff

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 353.2 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.13.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e3d08cd987aefdc99095d64608fd68147fd1fefdeb932551276c28a66d4627d7
MD5 de00735294ef0a1c4949b305a2af71d3
BLAKE2b-256 fe878ea1cb7b4eb6375f112005fa2f3593b195c184b55c27c4ae2f4bdd9cedef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f87601656321b80811c8e94652c68255a678b8d65c96a729eee751a025325f3
MD5 a7759d92a26fea4324120277146b6ae5
BLAKE2b-256 a7155bbe14a87b4898484ce44210755abd3ba11b12e081861321d30bd0abbbd0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53007ba22e7b19c139984fb1d321d7ceaaede77efc81faf3601bd1056bbeab90
MD5 9de36aedfe35c7b5aa13ce2cc0c5a701
BLAKE2b-256 71a692b4419b00e2a8f2a4fd6071626bd80100f88e34dfe263d29d3e55210d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 282de1ef5086b75d87312af84941a9fa58f91784ea6309165146df5712c00a42
MD5 eb5e8e031053f421545e4a06fcc64d46
BLAKE2b-256 70dba29a55e930a9d73b50b3f8bf5e5689f8f247678ff7e7d29215a4d492b0db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fedf1e8afa13d24ad26332cc38bcd756701fcb25d140a6b27a5821417eb11433
MD5 e171c9ba5607420b0287759733fb0b1d
BLAKE2b-256 668f8d335906b6197a533c8e3d45b0b50a81c976b248449832e81d9250243ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75acd9cfc1616e0f7407d85f5da73f01a98e117798bab689d2380b768e0eb223
MD5 e6c050a496011ef86696833c1846edcd
BLAKE2b-256 2cddc501b7d172c07510065f2cb33b41e9e9a10d3ea32c809d3f22a9b207f50f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0a870c546bcb05fda7376c315cf67fc327c6e8b06afcdf63dcc4a6d844785cf3
MD5 73d3c434201d8b1b7a9c0c457c3f194c
BLAKE2b-256 0c13aef38187a3bc7ed25ca772c81fe579dc060df0f4903b7a20eeea965db795

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 323.1 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.13.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 58b0c21c9450a427e3439790d8513cf1ea262d9b8a228ac6252287cb83fe8cd4
MD5 788ad7123671251d7f155d43283e53b3
BLAKE2b-256 7fe0c203f4efaea6e2fe068935d8654e3256619c6d0719adbe36bd5a11bd5257

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 365.3 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.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 25394daad3ed94b8b63149127b4207eac38e8e8bc81787f2e5da00c7cfae64f8
MD5 f57fab41882291d97033082b7e908511
BLAKE2b-256 9bf55b8dc410274b5899a1187252b4c87a23d9bfdef2d09e1f3fd87eb4b6cd2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 319.6 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.13.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ea1114b88f0a53056ca91b5fc6f16c2ab262f823385905579d7bb80305f6fb3c
MD5 f69094030ee8ec4768f9df7b871807c8
BLAKE2b-256 e774d159f29d0fda93b34c8ea58a1c898b0189de7245dea23ec820cc3c7f150d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a678d6a2e4cef7435b493e6ff560ef18a3a493c82ccf11b354be4713dba64089
MD5 60f3d57fd45265b5012be86cc552ea81
BLAKE2b-256 2fc72200f3a165dad3f7ec3216ff2cc71789311f3a44037d0e931b168aae3868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bc3d27a0d45adeb38cfc31b7b698f4ad38b4434a88f30a1e16d791e8bfdb749
MD5 062a1bdb5ceeaeef5db0b552f3b9fcf0
BLAKE2b-256 6d070a302ccd89a0f379212cadbf90075b09e293f885d908b312e2aa755e8fd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3192ec5e845ed42ed8babd3182011cb055651c2d6ad2f3d87b6cff69c21d3192
MD5 ed74318d5e2f0d2345680b79eff8c7f1
BLAKE2b-256 d9d2b67fa399b70da25d952039adb2b37bdb517a7d7b170d24e35d7247636339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84314b0b911f5f1daefeab2e508471cb987a86145ddd4ea3c688fe890abb5417
MD5 c689a4cbb0e6e14ef62ff10cd9ee925b
BLAKE2b-256 29a9bedc6a47c783009851f54988f28ed2f26cd393e94b86d0c910ee212e51d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55d3023a532eaed8cd6c73d1295fd08d0c148669b8ea50c612a6fb9fb122488d
MD5 c36981f907ec730df1c08607b081dabc
BLAKE2b-256 e6b3adf3ee52241795fa7c57a0d841dbd7713b46cb772f50666ff30905a489e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 532fb31d149cd0ae54263915ba2c22af35543f2b3136811289577d234e8605e1
MD5 8db769cb2ffc85d9a972e93c33d32bf3
BLAKE2b-256 a376e72e6c9acddfe3c7f2074983c46faf316d81ad595fc899d41788862378bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 311.8 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.13.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 318778b96072170abdd69b1f997054b86d735c6680a641e0cac076a96070e0dd
MD5 e7b203deb97295747d597d3dc68df179
BLAKE2b-256 2742721632d368690a0238c0ee36d43814398bdfdeaf739eb8597a464351fbee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.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.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 455841e2eb7eb67d7f95c3287296d16a317b323d7b386d6a4d761cc0401d357b
MD5 74156cd2556dfe3a3e3eb2f5dbb5f5d6
BLAKE2b-256 86bee50d5297cb930d69efa3b1b8f8bcc1d02e1ba40ab0f37c1585c5925fad3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 315.4 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.13.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a967fada50b2b9ec9e1a1cea8da09c36db80916296e66cdfbdf37342a9a56076
MD5 27577f15535a4ee3233dfee3cf72c50e
BLAKE2b-256 0ff111048df3951217615f128dc3cb1fed072fd6f3e3f0c7875fdb4b3a4ee5b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f520dbdaf159561ad99f91d886760c83a8d08dfcfc4a470876f1853db13fc0f8
MD5 d0eafd360805c5d8fd8ac103c78921cd
BLAKE2b-256 a24b8e5ca7a850a280d74d9ac43ef9c2351e51510282df70ad2c8d69a7afb00f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0e62843852becc96b65c24283be824ce0776c75eebd64eafd011c74c4a2a3ba
MD5 3c633c3b7d5dcdf43e3a0681c77f9c75
BLAKE2b-256 e60a9a7080d4b580270a00a958783f0d8ea7beffbcd090f9071e6eeea6123164

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31637214047a63500803cacff18aacf7e1e0bdda25d6033749a8dc8fde16cfa1
MD5 f65e5079eb2eb4a7095ca14c23955f08
BLAKE2b-256 e9bacba1d8ef66f3d2d662c721a5a53a8098f0c4c3a0761c2e1ab076fe4aad5d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 385836a4d770fcea5d478a0db45df6b45efeb9288973079f47f2294f9df37512
MD5 8f0c9bf3288b24b4f6f50c904ec0ff99
BLAKE2b-256 4805ec6908486d24b6ce3d782d9c65716c7a716efa9a2293262c2909cf684543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b287a61009485883584f97703f4a0e3818fb681cf65bdd617a8278b260fa2add
MD5 edd414b9ed76a8e0ad2e05f38a62135c
BLAKE2b-256 e8fcfed4438259070848d09e790d1a9abf755d5d9ebf2283329d08a41cf0dc0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a42166fcd6a906acd05f64bc66b1e9df67e16c43f141de761be8af8c098982dc
MD5 6f739192b148bcceac8ec0a197a02fbd
BLAKE2b-256 0cb709e2f79c6540a8eb3ecc8eb7733b0836e4e896263bdc453d287cb671761e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 312.9 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.13.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b1262bd1fa4bcd446ce0dc8e942a2fc1411f3de8e81cb9f838615fafb71fd37d
MD5 5eb813a08646b1d76db956bb5cfa8301
BLAKE2b-256 6b76ce52d7c97a1e375c1f9efd1e06048e15fdc8ba1328fe0328a1337093b22d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 362.7 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.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7ab6984e4c63c2eceff0229238ff295a4f3ab0de2895a23bf00f0e53feaa4ef
MD5 72c2a673ec6b45f39939acf242e4c71a
BLAKE2b-256 2427206a6a774f84129632fb7a3038199c4e5502d9580ca0cbada67b2a9c3018

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 316.3 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.13.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bd4cbeda57d201fa77799b3062a6f3e8984f9e05670dc92c94e024658dddb27b
MD5 19392b476734f572d1d423d622650177
BLAKE2b-256 8a5be3eb0539e3fb1e0a46a318bf12519fc0e8b3db2d2afee6e79fe1d6eeda14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b24576cd77958f613ce8cbb01cfbaf2332d69424c0224a915ab5bc0a72f7aa6
MD5 43163b7f4cec5bc19bd7ebf330440912
BLAKE2b-256 3d6b2e865405b81af7ebe8aebc68337b79ca7f78532e0b8a434993462fecf0a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef29ed3710d4a943fa84aaf97d35550879695d16007e3c92104d08d6f1b37b19
MD5 19f2f177e992214bff2d4e87a4e11775
BLAKE2b-256 40169a3e34fd8ed4120e44d354f3776acc40804e53fb91d500b227fe6fc8109e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5afac4e15deec52ec2b817d6fc90a353e023095e71b9545319413e460693326b
MD5 7b1c943d245966ac053aa2042bc2c278
BLAKE2b-256 0115a846b8733ff20c4557fa216ab0c3627fc558c4b784fdde4627a7eb3b92de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d947cc7ec3e667f795cb66eaf266d11921bfd675436c7346b7e1e49a6a881b31
MD5 43e33fbd0c01f43209470bf230b58a8d
BLAKE2b-256 15e875bf851b213f03f47bfaf991baedeff5453887cc0f5352f89d5f3874c83d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ba647614ea2cb4e33b9bf6114dc43c6be37126af3ad83b9500bb8abe5a15a31
MD5 6908f985de2d195ca3c5e6789445a992
BLAKE2b-256 fce9663497a9379a67a018f39b66a74f3cd5465e1e106cf7eedeae9b26109e57

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 50682b4d4c4c9f49a5911a4bdc21a4f91f3f84a8457029cd54e16d75fed2a2b2
MD5 d22cb5171fcdd012d0dbf0621250225c
BLAKE2b-256 2056948a1ae1661405171faeb49e08bb718dba95e706204e730a8b3a7a18dba9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 321.0 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.13.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b6570273a913ca2fab1e45cb27b735311a07a2c50767bfe64a30a9ad77d7355b
MD5 434243f84119aa69894c65d08b8668ea
BLAKE2b-256 f7bd039b1882afe1131aea9007dbaf1ca4a51340ed95740284803d07c1fb5e93

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 364.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.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8776f08f99c68623f83bfa833ed4aaf069f767374170e3ee87af32e43aadab17
MD5 9e808d50f0f758289bc946d16ab25e26
BLAKE2b-256 95c3c3ad6c4a707e9e2d9a682b56e62d369a1890ab7be1e4fa5640a8a3a4f28c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 322.6 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.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 26bcf7ec2ce019f9c2db91361e17868e58e7b926c68fd0050104cb6e09259268
MD5 a69be2c5e33cd66ced6f8c19c4cc8636
BLAKE2b-256 a8b3b06798aa9268ff8550b7401495bf7c0c6c98523f58cb73d84274eaf908ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff8e736a68a37823bd5c812b3335dc24db3d2ee0e75149591c915473666c2528
MD5 e9094c7603d751071c1a0a9660c1b26a
BLAKE2b-256 3fbe953ebae145168df6b124d33eed28d2a235c336a903846d60aa663f707e36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23475532cf9e7ef25e6ef3f8c0a1657cf284574e36734be1b9e746cd39770f59
MD5 86c97a7d25ea4ef2208deadff1828adc
BLAKE2b-256 2fd628ef7331c23a7035531d1dffb8fc92d44bfc416e2e3eb42670dd10e27f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfca1d3a223f4c34d6f5a700b3fa25d21f43cafff4050da78b49b496f92ea8b0
MD5 0c9e09771136e51d947f0a588beee061
BLAKE2b-256 d15e7974ef4a2beb21e7d8a8d7b36f2bef64fc643165bc11c0318504ed27bae0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ae5511f3123df48a8cb10665e67318fe695cdf1acdde644a128735b238cec87
MD5 0ef7a908c9820307fa61c356fac24620
BLAKE2b-256 3168a86e67e8033dd0b4016cf816394afd97035a575646774c2576a56359e799

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5657250027b6f0a0ce5899c34fa4c9de314504c627b6179bc55caeca3522627d
MD5 40f345d41145967d8b543e264c3e8b41
BLAKE2b-256 691d5b2f7c9748fde5783c6fd5de9535e974a38ff5371d3d0421465773fdd3cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9d75bdb41d7d334e6f9cde87eb13ea2dd0aa7f45bc4c27525a0f34c5426a32d
MD5 c9fa83c79975404ac7f763a6c2e1a56f
BLAKE2b-256 f54c436f9b2d606741869b7700ceed449d9499db5385b3a0b71fa2f62044e7b4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5e1d9e02dceef2af93c0595fb5a0d834468c1a10d12b3043ce1bd18ae73b6991
MD5 9d262bad8d1ebc88899f2c63b18a2f8e
BLAKE2b-256 7915242ca0c1fa650e6ca492deb2b31ee3c4ea8b5a9c18520ab7c1442a91c4e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 361.3 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.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83710c5c21d7536b561d88846a42f240ff2f7608d0bff81d71f3ae5f91e6d319
MD5 ff6740c54a72ea9221d13afb10399c56
BLAKE2b-256 2b3dfabf4029363f51316dbb3119242bb37576b5b5b4eba3b96f884ac0938313

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.4 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.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c01f4bfdace57cbaf4db21a19201b048bc1a4eda10fb7b00d38efcc526593422
MD5 23d4a4e12312733fcb25dac9d06d56b7
BLAKE2b-256 b12940fa6757be80ebd82c3d185206ec59612dc8a048aa1bc8ccb507774726e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 238edc109040fd2d75916fca6ff561a562d3db8ea44445646bf0e8bd076ffc42
MD5 31fd481dfef54724f885fe9ea4dc57fc
BLAKE2b-256 7c6d5ec430ab8a5c2a71165ee03b4f9c88a6d17fc1130ef2453fb3271edcce9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 445c25e987e09a55814cd3a82622a843e34bf3ca5e2de487e9ff9f815ac59711
MD5 72e1c968b8b692c92b382a4def9b2928
BLAKE2b-256 165dc7fe7b6ecc373a17b3646c0947557cf54b91c806e3da02bf6581d5342db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5bc3b18fbbb48684f30bbe090f1b3724923d768536bac9097c62f15abe87f94
MD5 e6e3f9ea17892ccf499d02769af3af67
BLAKE2b-256 7d41b03e88b71e03a908ab91b3317c86998858143730f5a0a8be577759c17acd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21f46e120482607fc17e37688bbc46f2a0cdb2215f71790cbc4a31f2873918b0
MD5 7e7d0daacd10800751cda77466d1befd
BLAKE2b-256 3926d233d4cde411118ad66be4321cbe06c6c0f2d9996a86a5d607de1fad6d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2a0abd54e2a32042bb88c0a218d102921ce35ca5138543b7e93e96387d809bd
MD5 16f3a110cf774ce8e655614e635abe1d
BLAKE2b-256 a8c29d258495d0b35984208818c1b423fd439734dfa215cab705a3a60052945a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 512f853c3cc943d1ca102bc7281ca64fb594bd492d94d1979891580b395d3607
MD5 5e34b2c5b74535f7a557190187cc0440
BLAKE2b-256 5c33924cdbef442542de0de15f6d862f27c3e17d3591962fefe8d29c8ff7176f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 321.0 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.13.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 facdbc6a85d35fbfaa4a61062947144df976ac09ac531bdb73c76eb8fa991c2a
MD5 eb2739e1ea7cd860980206696d53227b
BLAKE2b-256 baee4ab75660771dcb804ec8fd8dbc2d813fce32d78dc072864bbde949f8d974

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 362.6 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.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0d2d5f38f8546e06ab2a4a8e4548a32a019f0e1dab31244a9062f0a885aece90
MD5 ac681de20e0bd2f6f499fb0a5d5dcf66
BLAKE2b-256 39a3a9df80b70c7b8914068a60ef3c0573da6bcbc1ecab7466415b2e65a24374

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 323.5 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.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e9988e8d655eeb93693d6785f4fea16c1b2f7f11246c2efa93e2d5aa3ce35085
MD5 7c30ba51666cc198a20402c49ef7d5e0
BLAKE2b-256 dd3f3b41c1dca915af0a0781dc8753767433bee99a38b187414177421f10ca15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 922bd76c5c9326bfad9531edec837fa509ebb967afe5e5e57c4a91f461f475a4
MD5 3378bb20885036ff45a9447ee0ad5a42
BLAKE2b-256 d4e1c83d3c84aeb9c2199ded282e90477172245f0b9b08bcb5a2c37a36b950dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b468172d452903efd618f561d2141c9246cbbb49f35a18e61e1b3c332d6414f
MD5 effb5e4c8402962f7b713e88c53e1ebc
BLAKE2b-256 18d4b96e49aedb5a3abd3dda77f036fd659b5e38a5bbda5270e1ab60260dee8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.13.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.13.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.13.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c1c5556b8a5ca9d1b2b0ef45a6b82596f323c08faae67978eb3f8c402467bab
MD5 ebbbb9300a7ab6fc45398534bb528ce0
BLAKE2b-256 51865c80907896d7064734b708a0524e33125d9561e68c9407c59f9a15b01ce1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8891c9bdb770a7536870591e00983f44d45e7ac860cbd9ea1e367cea3c58674c
MD5 1743dc530646c4b55171cfddd1e42e66
BLAKE2b-256 716799bb5b66bf8e63e8e9b18a5a8c07c022eb6f434ebe90ccbb725bae6ce30b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf07cda183a0d8a4c8cf7800df62933f071f1381feb124d585aaf369bea73b78
MD5 ffc02589aabf40577751e70326749ab9
BLAKE2b-256 90d1cbc082d503a695b5af05360948d6bc585a9a4ec2dc28ca7ed8f3164627f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.13.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e3151fb2f1ccde60983c211dba480d29158c867eb7a40e38f869062b3524a00
MD5 7bc10ee536a10e6420db15c818aab409
BLAKE2b-256 eba3054053a87d3906a4d47eb08bf11ee3c97d8ea5a12b219d66e216898fc896

See more details on using hashes here.

Provenance

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