Skip to main content

Fast transport/protocol networking for asyncio

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.10.0.tar.gz (263.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.10.0-cp314-cp314t-win_arm64.whl (338.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.10.0-cp314-cp314t-win_amd64.whl (449.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.10.0-cp314-cp314t-win32.whl (382.5 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl (461.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl (452.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (456.1 kB view details)

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

aiofastnet-0.10.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (444.5 kB view details)

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

aiofastnet-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl (407.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.10.0-cp314-cp314t-macosx_10_15_x86_64.whl (421.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.10.0-cp314-cp314-win_arm64.whl (318.0 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.10.0-cp314-cp314-win_amd64.whl (368.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.10.0-cp314-cp314-win32.whl (317.2 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl (452.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl (433.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (447.2 kB view details)

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

aiofastnet-0.10.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (428.2 kB view details)

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

aiofastnet-0.10.0-cp314-cp314-macosx_11_0_arm64.whl (380.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.10.0-cp314-cp314-macosx_10_15_x86_64.whl (396.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.10.0-cp313-cp313-win_arm64.whl (306.7 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.10.0-cp313-cp313-win_amd64.whl (362.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.10.0-cp313-cp313-win32.whl (312.4 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl (450.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl (427.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (446.1 kB view details)

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

aiofastnet-0.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (421.7 kB view details)

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

aiofastnet-0.10.0-cp313-cp313-macosx_11_0_arm64.whl (378.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.10.0-cp313-cp313-macosx_10_13_x86_64.whl (394.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.10.0-cp312-cp312-win_arm64.whl (307.6 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.10.0-cp312-cp312-win_amd64.whl (362.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.10.0-cp312-cp312-win32.whl (312.8 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl (452.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl (429.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (447.7 kB view details)

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

aiofastnet-0.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.5 kB view details)

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

aiofastnet-0.10.0-cp312-cp312-macosx_11_0_arm64.whl (380.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.10.0-cp312-cp312-macosx_10_13_x86_64.whl (396.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.10.0-cp311-cp311-win_arm64.whl (314.8 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.10.0-cp311-cp311-win_amd64.whl (361.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.10.0-cp311-cp311-win32.whl (319.5 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl (456.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl (439.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (451.6 kB view details)

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

aiofastnet-0.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (433.5 kB view details)

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

aiofastnet-0.10.0-cp311-cp311-macosx_11_0_arm64.whl (381.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.10.0-cp310-cp310-win_arm64.whl (314.0 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.10.0-cp310-cp310-win_amd64.whl (358.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.10.0-cp310-cp310-win32.whl (320.2 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl (454.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl (438.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (449.3 kB view details)

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

aiofastnet-0.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (431.8 kB view details)

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

aiofastnet-0.10.0-cp310-cp310-macosx_11_0_arm64.whl (382.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl (395.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.10.0-cp39-cp39-win_arm64.whl (315.4 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.10.0-cp39-cp39-win_amd64.whl (360.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.10.0-cp39-cp39-win32.whl (321.4 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl (456.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl (440.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.10.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (451.8 kB view details)

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

aiofastnet-0.10.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (433.6 kB view details)

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

aiofastnet-0.10.0-cp39-cp39-macosx_11_0_arm64.whl (383.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl (397.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-0.10.0.tar.gz
  • Upload date:
  • Size: 263.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.10.0.tar.gz
Algorithm Hash digest
SHA256 96e0cff5cce5d51c1f1b65e8519b2bd6d13d2315364e96e387bd0a21c2a243b2
MD5 876985aa3f236263b59c0b7afe1dfb9c
BLAKE2b-256 09cfd8dea62966dd25be5395f5c4ddc890f2da01d5cde4df90c1babd17a5c668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 17ce2f4d4c6d61a98b9e2615749950a88575be4967b462fb4d0857655c65dde6
MD5 b7b2c99b3cab077d07fc3eba66ccd7dd
BLAKE2b-256 69bbfff084b30668e9e34b9abf8ed8dd769584c60bbd2604275cee7945f415c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e3afd5dc8e820d5125469382db7441928cf3784b60e72134386f7bac19cd8ecf
MD5 b8469ee8d9b81190f12adbd0adb03321
BLAKE2b-256 e81d48ff1ff9a9006ceb1611503706bc0063e2fcfd63497c7ff6cae43b0dda5c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e5f5970488f6d0f7f60b4fb419a9d1e970e5c005366d5a883f7912dcf97ae65b
MD5 25ee3ce9054b6fa22d63a4de501ba693
BLAKE2b-256 2a28f9e4f19cb99cbaa136680bc7a07d7a9512ca3defa08b2343bae1a1c853f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8943e04b434a748910da19676bef89f21b59bfe8ce89f2a980567919b8c6e090
MD5 df0e6763336fd670379cd00f9f4a36eb
BLAKE2b-256 94f507d674a122dc3f5b20454f2d4b8b50efe8494255fb4e5e11f229cae47570

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dc387b82f4c6c7e877d54b9f864a16b558e9cd8118965ad2339fafacad1e055
MD5 fe36d61d6a0ed5499aa0f0b97b02f978
BLAKE2b-256 7798c602f36b400de3b5fb1cd738fef8ec58cd08b0c6d617002a08e68141d8fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 627854ead62af85a7f60c2deecb81ab26085eba57921febd0039220a6558d0d5
MD5 9ad2fd61f9720d24757e361a568064f0
BLAKE2b-256 daf2769c74d123c7c751af37723c068168d4d96a1b219768567a74679de7b1af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1228f83ac603201c631281963d9eecab9271d9baafdb67ced15eeb29c64fd8c
MD5 f77adb2f37134560fc55370be67d4911
BLAKE2b-256 cc125a363a895e4a556d7cf9abc5ef8d8b0ca3e316bdb6b4d9dad56240e198e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 827f7cee73609f7064f83ede97b10cf9f6c4f38ef4bab2c32aec45b1d260dfee
MD5 36dc78f43e04983d5868898d1458e213
BLAKE2b-256 444312c173b928f2cad8eb4c8d1a95ad94eb2ed92e197cde69c65d95170faf16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 26deb74a14a5db1659b198b454d56463dd1de0b89a50b86d851c52aa792036b9
MD5 394cab8082768e8f65d771a4cfcd3c5a
BLAKE2b-256 4a0bb966b44d79ee051592e9d804c631b55bac4bbee14374473d8c4d15c85ed4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 318.0 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.10.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d1fb72f0dc123dfab49b95c23bbd0aeef0b009bc32275b10e2796b97257ed80f
MD5 c27569dc76fdcc21391459748c84668b
BLAKE2b-256 d75eb9c6ffdd4d8a37d0acf88e25168fe394da3de6514deb642040b93d884575

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 368.9 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.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc17ebfcc91d5a8b62290139675c2854499835402877d5975bc2f6e4ae36cd08
MD5 175114d6b4ebabeb2db9544fcb95a7fe
BLAKE2b-256 34d3eb93f787318e03cd7231fb1085b032ece237df4d42519628f5fdb614024c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 317.2 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.10.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1ceb2787fd0a21ec06dc710a71a18d949c1f8e43f22761206d272fb524b4b084
MD5 1a9e07061725db8b655fdfafe7bf3fff
BLAKE2b-256 f85a2c7e2c43add879bcd01d77a6c43fd691bdc56a9336b749e963696b760a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c76ca48c1c60d26e04c41c9bd7cf8296311f8078308723ac89834b69f37c46e8
MD5 dd9a8a7fb9cb1d9dc260a6817964812e
BLAKE2b-256 611e318b5819165fa10206a013579d6977007667eb5c2a59c79dc36ce8e06f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83eb4790d77e45fdeda91d692f50510ad4d23f693c9855a5320d8fae5890bfec
MD5 ec518d96c35650f5ac2b501f4b48c054
BLAKE2b-256 e6fef3f2cdeb71d54772f408f919dca8b315dbc4565de084ba6abc8404be8c98

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 908a3cd2f9a74921b296a1d1fab1c88eacec8ed876d3ae2b230b3e534b7c55a9
MD5 330fdeaf1ab4c65e2469324f36dd675c
BLAKE2b-256 498673ebd4bfe03db4c04d9f9e2e02da96533fcb033c25f06392cc5351150b1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29558f41e6a9eaff651ada28cb85dd1f217bb35cf8f537b1f79347e6c3478ee6
MD5 ad93584b30e9920da67cb6e09b02bb86
BLAKE2b-256 ac87b454d6b4c145d3787f48e3aac956d7fd2941c9506e276b68015c649fdc47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee12fc88778d9483769fec1fff157e8704a0913c4cb29725aa3477f6f7d33b10
MD5 3611ebf0b7b8b026204d920f10c79162
BLAKE2b-256 7df54c7dbbb208b356211510a0e5532abc1fc27d64f5535af76220bc249d02b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 919b495ba7c7b1f6fade3eafa8312e52e17ec55f25e2b61bd73997385be758da
MD5 f8bae6d357841373c30f75344f98b74b
BLAKE2b-256 e9a5c6795bde28e19e3feef9d79ef5ac52d1fda163c76e6fc25b937c46413af6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5f077cc7e840552bd11718cd15c882dea78d93ef934ade1848cf530abd047dd9
MD5 e1b1b97a9f49fdf45854876b9a5142eb
BLAKE2b-256 3c74b41df9602c3ff3fac04cdf1a4c61b591083490011590f6b55444f6988957

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d7793a7dd30e8609fadc8f24cdc37c7dbbba5e120796e9abe20375b111aff40
MD5 9834eec090ea9bcb06fc05e08856943e
BLAKE2b-256 94049bc8fc7a7fc7fc790fc879b2886909aa54e60063faee0fe59f161cac9a43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 312.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.10.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 80607a662c527f206f6ffffb40b0dbedacae7e0439ac32072fb8e70426f1ab23
MD5 b63e1e63528be617bbede8efda2186f1
BLAKE2b-256 cbab87ff83f5ada367235d92da307e8e92afc8fd841fe4720c285a7dc3829992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6517fd58fbc6bdc3dd71d544ee442ca33a996c9990c1219fb00c4f7af1d0615c
MD5 9ff64ec9f0e1858cb86ad6b40e31edfc
BLAKE2b-256 3cdda14e914d04b4393c8740481b148cc8ce1ab26513aabb35a36e783a19c243

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32159bf4ed726d49ada543d2ec780c75a482ace426eb4c3e30d8274aeeaf2d59
MD5 4ab2fd1ac8abef1470278e85d3a17fe0
BLAKE2b-256 4aefc03113db3b6881e58fdad11978bee5550511ce01a8491609e824342a98e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc2ee9e7b184cc2488303c4cb2ae15d25eb375dbfa9c8d6d5b5caabd3ef400ae
MD5 3970633c166c3e310c69446392fa1ff7
BLAKE2b-256 b89df94b41c7425e3c57e033251040a2c7d76acc06135e726760ff83a6918ce3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec28604952f1bb10c800a16245613e5d26a0c775973f9601c62b44ae8877193d
MD5 8cf0a0389402a8d1b453ffab9b2671da
BLAKE2b-256 3757552a152b0a0190101f956666e69a243c75d097c81473ad5a94ad65c0eb1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7de1df2a770ee20efa02208bf1a160a1cfe69012250694ad94b02bcc2163107
MD5 2b4123382bd35728582432490c56d9d5
BLAKE2b-256 7d30bfb70c737ddfcf65ff09cff6e585cfa8d11b4eb35b042c257e77e365e1bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d70caf7fbe83d6185eaa520e693a5b47e26e4f037c09f07d4d309016ce5ef33
MD5 53ef70489676add0225cf934ec7ad918
BLAKE2b-256 236998bc777f8db8943412ae1a355b0488921edfb2afae9e8b403d1d6680b5b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 307.6 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.10.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5093ab6b36ba9315dd3504e9b68d46c0701a2eb26e81d913bd9bbada38fea7d6
MD5 effb8e5824c64e37d2e64c8076c16ea9
BLAKE2b-256 28b4630c36eb792022d784e40d3a5dda52556934cebf844141d38f21d3c42cab

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9a1b8f3e64052dfd3aa8ac56fdbcf5de88ce01253a52e07198f5ef39f1d9db5c
MD5 00b7380393e3d7c2de43a5c7c93033a6
BLAKE2b-256 fac8726f6e162d00d8aa170ded92606f3cdf6d32c021d6012ba22ab1f9e4b321

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 312.8 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.10.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2c79eb5ae719aa37d1364b617d00c8f73325850f0a938f3a314f38cf8f4ef266
MD5 f1010b0a901ec141a8fb06d65d5a0e32
BLAKE2b-256 2623e33c87a0929b30a2a7c27e3c9d7fa10c152d547209de69133b12442d94d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5342c5b7e1bf539036583207363a2c5720613d8e10533e3630b9e413824bb19
MD5 f87fcb2d475c52c6a081e290819b8521
BLAKE2b-256 c01504aed43e3d6a84f63b1016c22aa01d82a8d8d7bfb613f1cf1dcbfb8cd48f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2dc0648217831b3c227b410793ce33a68049fcd8bea53f8d3868df1ff08ab951
MD5 ee9dd05453217a6f16e700bf668e73b1
BLAKE2b-256 594aeb3f247f76f9943efad4c53d939e6e6562c995b1326ee6c356b4f84abff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 299030d8a905220aeb0bc13fb2ed371b0aac2190c85a62ea6dc3b629e05bb572
MD5 8e97b804577dc80aadf5e5063cc75f68
BLAKE2b-256 f4083b3e9fc3c6f945a7f219012e88958f35b54943c702b639a9bc5a25b1b1e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec22af3dcc30441a3be3aeb59fd2af446fad0a9788f652f127a80d52e2a2fd95
MD5 9d3814b671f48134515979e982f8f99c
BLAKE2b-256 eab78d719b5ff62c5f8a7fb220c8c2b568aebb8cf97176ae3a97f84139e3a588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17e5a4829125976e0fe12039d8fac36fa3c9dc751419c5efc7e3420dc505d8d9
MD5 caaab50af7ee88fb7f2e78d58033a5b0
BLAKE2b-256 461d86bab0f151c7e9d8d940ade87ec90382fa22b2410692aa8dc73b9e7f4740

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f948082309cf13fff8d86667de44e119793bcd93b8da2ba28d1a4416b8f8fa24
MD5 e8c9e50404f15b40d8b0487f72acf3cb
BLAKE2b-256 6ec77de7202f84ebfc731e447e5fc9f9bc592e195cb1b32550cfa2f1c530781a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e28b12a3efa34997b60eb8bfc31bd60ab4e3d2eabe5b8fbdb5b7273019d84324
MD5 6c563f0c94f29498ceefe18bca7f8480
BLAKE2b-256 fdf4ca1ba92b9ffd2f6c6cfbc79a8751734a3776e1df0939db2b0cbe6313060b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 361.6 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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bcbe7858af1996362405c3f1e5b56e054888645154827532b81ed932db4f0143
MD5 43174be41a8e5a1d4d93a6aba3c2f857
BLAKE2b-256 de4e21b561e584569ee1acdf47d86fe19f6886120be030ad57f27c19ee24a8c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 319.5 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.10.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8c43fa54b3d95e9115fb2e7d085d40e913bedca005aa2d123857751417ae3faa
MD5 b6343afc446da2d7b3366e262ee8e003
BLAKE2b-256 460c12c8d39d8240dbfc15ec33f7b91bd21f9aa40af34351d99504f653dbfa26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa20b70d78f4e603b116cf9642675dcf129d4ef0d9a317b033dede90040901fb
MD5 07f85b30d1bc7d1227eadaa094f986bf
BLAKE2b-256 ea44c83b594b5936e8711946fa66022685c681a307af1ff90e2b02e30a451aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a334b40ce0b90c1cd54009967c5942e7211ddeddcf9d980468ee4bfba7c4c4b
MD5 b646773830c46542a3cc37765805079e
BLAKE2b-256 39ab2b642a82f746deeb0af1bf50467552615ea7e6cfc4ad4d63447b0f87b21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ae112697dc8818d4cf7375f34c9d23f2de90cb239dfd0861e2c0d86d2b15f75
MD5 a7114193f6532a1f44261ed22260aaa4
BLAKE2b-256 06a9d4233988d56a86d6e61d9a4dd577cbb0185721feb9c9d3e8d8f2d9933f0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dd24cfabd3e18ca32a24de7fbd6ed6965b8ffd0f31abe0c518930536f9a779b8
MD5 702282a2d33a6367c085af54d52b1997
BLAKE2b-256 37c7682e174f2adf4db40db27ab2de9d782723f8b58f7c09f681108fb44e8863

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed6a2b0a3d67cf03c7abed47ef86cffd7ce120edf76a26ecc6ae584d2fa13f4b
MD5 518057830c862221005c8e39dc5c31a0
BLAKE2b-256 2faab1fb43b66629859938a33ef7e5484cfcde15b55d72c02c11ac323470c31b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 661210bbefdcd583c7aad4a4bfd3bf45bade224e1ac4f8b839c3328ea117c18d
MD5 670634350dc1f3a75bbc492a5629e5ac
BLAKE2b-256 1bb867560a33295466b773f945117007e36637c0a4cc4220a1b9ac62c4239086

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 314.0 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.10.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9e1f885d89e83489f3be199d8d4218c8d2344c7e1dea29766fb31c91f4a1c96a
MD5 9812c78a0c918d4ca3012b0792092321
BLAKE2b-256 241ea9eecca82369b6abbbdab8fcee2a99b23cd99d7d2ae15aaa2bf818e9f92e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 358.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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 19b973dfaa725c2d08a62d37fad5077bdd57106a16e41a762a3913857bc222bc
MD5 77dcaffc8873263f7f295e5394fa62a6
BLAKE2b-256 99be541597e15970025a595ae7f9ce893e83d7e6138e984725b8593a2c06093d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 862accda81a76ff88f6aa0f3b6c03d517f5eeea677641aa35177b79c6563992e
MD5 84e2912eb6043f5d2acd5f98afe3d2d3
BLAKE2b-256 eb91b3b2add2fdb9f0734b9afd2d09f1a4f898bfcad180c05fac837b83c97b42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92a3d8ddfcac2dd7ab49cc121d977ddd9f2aac3a8e2c7822873f0ff6f868edf5
MD5 5295515ffac86543a54c3a25ec5b0186
BLAKE2b-256 dba222c7ee7926168a0f11e33341c1429a4eca51bda7967f1772147e06188292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a59f4724fe6eb9bd2478be2c718cbefc15e120ab8b73a92a5e78a8b1359b62b
MD5 101265e128904484f0f7837670ecddab
BLAKE2b-256 89e83f33141fd5cd1d4b45289068e51f180976ba2c531f10641d5295a626469b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 95ccd1f3e8e8c89d452f2d1b1e59279cdc9924a061431b0490589fd61b2be368
MD5 d656d52f354c6305e83c1cb5978ee012
BLAKE2b-256 154271dd5c64c60df9a456968f0cc82bd3b0aa6d62eeb07faf9ae9e9ff485616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b40f7d9dd41a13e878863696fc57cead43aed511a6a4fd55b3b5b90bfbcd517
MD5 2acd9b6bd67f5edbc48ebcd339a953df
BLAKE2b-256 c612ec49432dcda6ec4910c8e4bad6b2ba676908f3ecf85d14f43189d13c472a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff737a93eb79e81f522a7662dcf0d8e2cebaa90be2ec009c380522eb3ffb3341
MD5 ce5a1fc9b9066f5eda5c71aaefa07a14
BLAKE2b-256 0678c223ae8c269270e26ad2c4211faf005931fc3896603d54446c197a04f5ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d7496da7379fb983ca74d2a5882202190439365d76b133d25ea8acc37fd71cc7
MD5 f8e0fb0e52cf12584772a9c3e5c6550a
BLAKE2b-256 d6f616fc7917d627f6f4dd99886d341284f707d1b534b1a8119e4b04d81f03a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 315.4 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.10.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 fa08c8a9c6c186974a3b7cc92d7d57ce22d98de366bb84f3587c32513821d705
MD5 6b0bb3ff70051c4a10f09b8fb569db13
BLAKE2b-256 7940d158e5baf8fe98c94a3ef256763aefcf004f244d3c2791ec7863b7e4b83b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 360.1 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc2386b36abb1cd76d7fd2d9de5ca02b015280ffa613a39f95943dbc8ce09e6c
MD5 7f749e6afc25ca5a0715babef858bd14
BLAKE2b-256 29b789e9b9eb598ca36bf0c4507da7e9424179b7f32b71aaa04fbe00dccb2a9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.10.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 321.4 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.10.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 40b313c6b59f5d755df7fac794d546445f89033565067e4224c837671849443f
MD5 2804e227da7f110415399f9254c9e14f
BLAKE2b-256 43253c03098bfa51cb2a28d7d900a3d4d12fc15bf4f7eaab8bc34329e6831ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c988e3382e537ee499dfe7f2d048c3c787d260e98f61e34310b17e0f134dec23
MD5 c6906cdc731ca11ccbf5a9050f257151
BLAKE2b-256 0ce02c1849cd8886f6cea2400f1faf139247cf96e0e8decee82d07681a3e4367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4114169d4e136d51354fac398d05627903fe1bdbcfe414061a2331b36d51de17
MD5 a09755cb971a92e3b701b4557e04d447
BLAKE2b-256 5fceb5c7dcca155ff7b34651bf25aaaba17c3305b69021cdb5dd1d949fbfbd16

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.10.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.10.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.10.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26b98d979472e36739e9235d1d8cc41f0f1ad4857dcb5eeaecc65ac7b14d4835
MD5 b89cf665f0d0ad8a015176bad4537f1b
BLAKE2b-256 5fc9530c2983b019be6b131bc127e20d7207877143f4d955570dffd2f8b683c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e4090c608160b733faa76da536763fb715727f25038e2b3966309f555092ec9
MD5 0b2f94cef453f8137978482c59bfeb1d
BLAKE2b-256 add3f71a320e95874fc8a7526a4debbd38abdba32dad86fdd1648ecd0dfb6fcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37b710a7aa0be97efb6691b56a3af8fed73619441cc7d3550d5e03438a72820c
MD5 76a0ff18840f551c333455e95b1b801f
BLAKE2b-256 3c94e32d3c3341d8d2a8ffeed09b4e886d53e591da147d036551e27c58412d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1bf582a93e566fea09888edd1b02f78f35bda572bd53954ab54515827b0ca8e
MD5 9721b46735f71ace7b1f9f9df6b4c3fc
BLAKE2b-256 cf9cabf239bce59219663f20712d55b1a4078a232d6f60b263b09d6b3754048a

See more details on using hashes here.

Provenance

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