Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status Latest PyPI package version Downloads count

aiofastnet provides drop-in optimized replacements for asyncio's:

If your library or application already uses the asyncio streams or transport/protocol model, aiofastnet lets you keep the same architecture while replacing one of the most expensive layers underneath it.

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.

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

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,
    )

    await asyncio.sleep(0.1)

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(transport, fileobj)

When aiofastnet Is a Good Fit

aiofastnet is most attractive when you already rely on asyncio's transport/protocol APIs 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. 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.

Kernel TLS Support on Linux

On Linux, aiofastnet can use OpenSSL's Kernel TLS support for TLS connections. Kernel TLS 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 Kernel TLS will only slightly decrease performance. CPU cost-wise it doesn't matter where encryption/decryption happens, but the kernel tls module has to do extra bookkeeping. Also, aiofastnet can batch data and reduce amount of syscalls when Kernel TLS is not used.

Kernel TLS 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. Some other useful links:

https://dev.to/ozkanpakdil/kernel-tls-nic-offload-and-socket-sharding-whats-new-and-who-uses-it-4e1f https://www.kernel.org/doc/html/latest/networking/tls.html

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

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.6.0.tar.gz (249.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

aiofastnet-0.6.0-cp314-cp314t-win_arm64.whl (361.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.6.0-cp314-cp314t-win_amd64.whl (481.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.6.0-cp314-cp314t-win32.whl (407.4 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (495.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (484.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (489.7 kB view details)

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

aiofastnet-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (477.6 kB view details)

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

aiofastnet-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl (428.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl (439.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.6.0-cp314-cp314-win_arm64.whl (339.1 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.6.0-cp314-cp314-win_amd64.whl (393.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.6.0-cp314-cp314-win32.whl (335.4 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (482.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (463.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (476.9 kB view details)

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

aiofastnet-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (456.7 kB view details)

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

aiofastnet-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (401.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl (415.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.6.0-cp313-cp313-win_arm64.whl (325.7 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.6.0-cp313-cp313-win_amd64.whl (385.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.6.0-cp313-cp313-win32.whl (329.9 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (479.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (456.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (474.6 kB view details)

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

aiofastnet-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (449.1 kB view details)

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

aiofastnet-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (398.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl (412.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.6.0-cp312-cp312-win_arm64.whl (326.8 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.6.0-cp312-cp312-win_amd64.whl (386.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.6.0-cp312-cp312-win32.whl (330.5 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (483.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (459.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (479.4 kB view details)

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

aiofastnet-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (452.5 kB view details)

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

aiofastnet-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (401.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.6.0-cp311-cp311-win_arm64.whl (335.6 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.6.0-cp311-cp311-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.6.0-cp311-cp311-win32.whl (339.6 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (484.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (468.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (479.5 kB view details)

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

aiofastnet-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (461.5 kB view details)

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

aiofastnet-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (404.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.6.0-cp310-cp310-win_arm64.whl (334.5 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.6.0-cp310-cp310-win_amd64.whl (382.2 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.6.0-cp310-cp310-win32.whl (340.3 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (482.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (469.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (477.3 kB view details)

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

aiofastnet-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (461.7 kB view details)

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

aiofastnet-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (405.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (418.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.6.0-cp39-cp39-win_arm64.whl (336.0 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.6.0-cp39-cp39-win_amd64.whl (383.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.6.0-cp39-cp39-win32.whl (341.8 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (485.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (469.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (479.8 kB view details)

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

aiofastnet-0.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (462.8 kB view details)

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

aiofastnet-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (407.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl (420.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0.tar.gz
Algorithm Hash digest
SHA256 ba42dfa534754bc445e9f01a006c4c5a51fbb6e5f1dc77c0c72dcd6b1a9981b2
MD5 203d98f0df603950ce4be126e3da540f
BLAKE2b-256 fb060603a6dd144a9f7fcbf57c81a203863d776e375185b9f71485e541470200

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 85180c756f2cb6d14ccb19f1c6ac33265c7d128f0d67e9ed2e8c5d035bcbbd3e
MD5 565eb358b05a994512036962855af493
BLAKE2b-256 418671741b241c836fd77a67908d7deba365240258dc3ef3edda5022a6cdfafe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b817dc01329b03ed1d7ebf03dfc4269d44e6ea0c658fe95fdc2932f09d4699bc
MD5 b43f79a767d72e45c741a49ac0cbd183
BLAKE2b-256 cb27577c8a3eebef33ab8f83bff6208d1c479d3a4d8596146bd3938079014c56

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f5119b054e100d2ebccf7bef3c482b77b459d57cba83946460940e6666672fa1
MD5 4427ae299931072fc8019f3f2fbc4924
BLAKE2b-256 f28743ac3de28d433df3a7da27456e9ccb72c77a805e54696b71644269207c1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5b388d605845e39e26f950e11e990dcc87a4e1b098dc6cd2fc28ca76a8d31a1
MD5 c43ea8ccbd3f4dcf290e461f6cb5148a
BLAKE2b-256 37c78034cc65240eea3baf3ab5519594146a2e49258c7f79907e6571a4ab8016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7ed20f638d67bb20a6fb06d23960085d2b107fc2dc7d7876d4f185bcaf00fa5b
MD5 834adcc18e6790874924daf8da56bc12
BLAKE2b-256 4f1c337317d3b6c85c391d22beab2e4c87ac3d4d1d1284b2e4a0457390baffc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ca6dd0f45eb1518e0133e262717f710f657ed59638a77330f9b82109204fd654
MD5 b89617e6f004764913ae10159f3c0454
BLAKE2b-256 cd2a4622d319d26fc5ac50cb174d83c458979c2c6a50513d3baf9bfd3a3c02f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03919aace2ad92b7a7a48b0e4151fcb765b2f56539bb57ef99f0ee716e405d84
MD5 d2370d0b9aeee40f3946e6181e897811
BLAKE2b-256 c4c032e4b1150411e9623c6e5a7058707fed05e7ed4b836a13e5822b9056174b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cacfdf14d7e7b28f34dcbabaf06045005f3c7c1443ef6dae9df3799119421aba
MD5 b0647381478a6f37dacffdefe0366a59
BLAKE2b-256 485e4659ca390f1180380497276842a4de0fd60faed77afe94894e8bbfbce2ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ad67930ec201229fc2447f8d2ff34bfafbda67b2aa545eb7e8f7c62546c79447
MD5 211313944e404c7880c5f1d2db83771b
BLAKE2b-256 9573c8284f582d1f9fc9f3f396368fd75f15e3f5e152f9c057902d8052dc03cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 339.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.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 26e4511f025cb315772dc4acb133ab73750d032963b016d31458afb95c223a06
MD5 b4c2d11622cf889e1b84724c991e8320
BLAKE2b-256 caf15d85e1dfab635aea75f17bdae2ec764d9fec0b1af12a62fa81089f4be84c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 393.8 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.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bff76d16f4517a987c6c6e88a90a947fe130c0c9c0fd159118ad5500b082b7b6
MD5 8c74bf00271272576e5967995f5178d4
BLAKE2b-256 8dbecd4a5569757eac3996ed30b6fca8440b8a3bf0b8707e40434c7e9299d831

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 335.4 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.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3e0826b8f43f782294a59c3072cb3cd90db0e25b413c498325ca449b922a6e05
MD5 7217c1aefbe72ab9d3901f6a5e769ab5
BLAKE2b-256 251d9864d7c6380ce41e9a80d78db2a8d2d7b360604632894bf8c8d2eefc47e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6d738d3a85581b21be86bd0a29a738865465e138ac06b1680a33733d6c67977
MD5 bc5cadab6b2fdd6179f7f3e55c693b5a
BLAKE2b-256 dc563efc218df681a5e3717bf12dee588f82825c46291c369ea76ca728a2d6da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05d3d6419c0a12e840b00adc89b53ddea25b6af6e76e8c387d7b6f81aadbad1e
MD5 a4bf393f8c841dae6ba9f43835072e6d
BLAKE2b-256 24221412bd85f0566d89bd5f7ee0c4e876075cab965397418f658c65d35f81d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1cb7b533343d06fae8f125851a21fbccad763d8f10f52a9fceea458c18c0a4f9
MD5 a4a6b59ef7597edfc63447bc1ef76bed
BLAKE2b-256 e2c75db271d66d609d943cbb6dda97b851ed50d9df8f3ab79ab4ca347ca71437

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad018685916ddbccbb9d80592e90829978d02f11878e6e8977a1f38f313af0bb
MD5 7b96ece38f332246f2e1b61b9fb42a76
BLAKE2b-256 0c38b5e8057f788ae065851672d3df8b8fc5367f6047346d3d843932bf5dcccd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cac9d095a3af9fd90fce107e5d90258e1ef2178ebd28b9cbdb1e865cdc91fdac
MD5 f4935d9a217ec88fb505f9848316815a
BLAKE2b-256 c199475448e9a1dba59cc6ebf6747b16992fa5d72b9b6d6b4baf18dff820b6f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d3568340017df39741f940b27509f00b600186111d81234889b6ec9909c43f59
MD5 092474349d87c92d508253447230553c
BLAKE2b-256 16de6763d275027542ce79257dfe3945152107f7012e2b7242384bd174c86629

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 325.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.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9c53ebd40bb1e88f4a6ce16c4c34830554bcddb1f3cf5d6e313667ee615062f2
MD5 d6c2282796fabe286aec4cb3df310add
BLAKE2b-256 ed85bc21991ffdc35ffa74f531a8053b708ee06debf4f252270d9e4a394b413c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 385.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.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a16400f2f0d24ebc0511f8ee9c57537eaaf5afb8e2d7f027b43c7c3e2d1280e
MD5 c1a0e78099019a9d3e469e2aac6d5552
BLAKE2b-256 83a3cd511ef269a64cf93b6aefcdfb9f63a938ed1ec7498df4e791fa886cd7c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 329.9 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.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 874b1bde8127efebfef71619b66059c985011ce8336f60ecee9440e1f1a85b0a
MD5 ce628c51afed15758e67cc6b7bb8b7ea
BLAKE2b-256 2bafa4803811923c6e73bb8d5f55fbbada92864ef6c7979a83a92c09ef8a3a2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3768faf4d8dd2e96c4e3552ed664dbf751e8c71c7aff8b803cf543e1de3b1ec5
MD5 fde03c0280e7143efcd709adef1be7e0
BLAKE2b-256 90cee52d1064ef31dd5bf795f80352ffe4c3844e9a47c33b421d39ac11e233a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58f83c318f1af0ec9ca01f726b17d5707fc410fc242b497f0c90f3fdfa58ccaf
MD5 f883976f98680a466c1babd3c7920f86
BLAKE2b-256 8643db11846e87dbae8b3bde7d528591d58335e54940e4d1e0c7c1178eead892

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32ac23981fdcd41dd4a7c91a3852cb4cf35eed5e60472eb519622b9b7f1e50de
MD5 902c646808da15f633b649431c3be451
BLAKE2b-256 928dfdae30e3f3f960e05ff95c4b8e01e896d1fcde67b1009793236d1d6b7a29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a55e148c93ad0403d308487e0728e81c52d26a70b1eae609261572e468c7b5d1
MD5 087b9716e043c3b9ac4bccc2c96cdd4a
BLAKE2b-256 773d4d471b2c3539365e75451ba0ffa87a17169476564d8ac7a0642c928d4f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b22185d7572777e3015477b68018d4eb2c92bd6b28e3cd7cdb3cd03c0f76c16
MD5 e3eecc37650a4375c9200b20bb8e0377
BLAKE2b-256 03d177f2dd68af610fc488459409249f958fad1929d7b62be3f4f7e37cb10b4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9249736742d1625254929322e0d3b8e70ddb61762290a7c346b102ebbc5d95dd
MD5 a6fb4edb7dcd4f87c6ff0ff65e100e15
BLAKE2b-256 73802b6ecbd80ed0e4a372239aff931a9851d6f582ba7f72407e482c22d42b0b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 326.8 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.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8dc609b87a846c17f1d24f4c54c2356bb18a7c426f9ea67d9c7da788416b33bd
MD5 eb2f567b4a2c66bc3faa5e668e504dcd
BLAKE2b-256 2a34a479ea72e432893de33b456a7f516af9e0450de4590439f8ac23877dfb94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 386.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.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4cc635576083107f7afa3015b0ef352ff1de66841279cddd1995b90374af9e7a
MD5 e8c7306822118cf70cf69f0ba71375f3
BLAKE2b-256 6e15bc6bfdea80a0cd862bad6a1a96113c69a3a5703839c314a8fcb36368d685

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 330.5 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.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13ef0da0ff831311318be05018c00c565eb2f5b26d6edd1989956bbbb393c784
MD5 79876564223e968dab8e5d4cb7a68140
BLAKE2b-256 d919a213007cf73470eda7e7c1b993b160b4a84bd9fe9caa2e49d9315d7a27db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2373fe48215bcbd4b87ffdb0298cd3d45154c1f050d0b8a6438e2ce375764c6
MD5 39940f0f8c6189b999851851dd091988
BLAKE2b-256 66c5ea180468febe7f54d57904f975c272ead74408ed588dd91bf53d9f36c4e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 050084151a851d99b0a1ef5d7d84ef0a364cf18d7f0a1d3e31401f9d8394ad19
MD5 b72206e201469c658e91e8239f344a76
BLAKE2b-256 fd1bc03f473a16159a9a1d184b80cb001fb9a9dcbf077bb52538d9c8c9c80b1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6f6ae34f2cce184e873c4e217657e7472cda24abc6f53ab9ea28ebf42db0200
MD5 2991c71908bfa7b2231c9e4c87ffe243
BLAKE2b-256 7237c51782bad74549fe31e062b45e989f3439602ae89e8c0ae89c934e7b9b72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad342738af7b42bdd017ecefe265f0b20042deeeaa8e59c3b9c1c959f34b3125
MD5 54ac07313b2fb4e23d5a0a3ff6c9ba07
BLAKE2b-256 b8d5e8d61985e072d2fa0a10f6c74a2b75030331312bbbc65c041fbf4ed5d3ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23a027252e9d4d1a7ab7a8e3c1dd3888583134fa39a9a41fcadb32b3930a1551
MD5 567baf1cd5ccc632864525ba7a339f90
BLAKE2b-256 33ede0711354a90ff903b3181ac10c44a2376a1391b24bca2b45dae30a1356af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 56862739b870711ca0c83ee7d78f1f714ab9c89a3b85380f72503f31caacd4e5
MD5 b26265e274dd689cec55c61276b5b892
BLAKE2b-256 30bc90a4a8583f124836ef94d3fb273feadb83b8c4664f9a0515a994d06d6982

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 335.6 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.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5ee67d495321b6af2a2b1d0b15438d022d1905c522d7bc28b208c9ac60f246de
MD5 114f9ef364376fd54430359ffc5127a2
BLAKE2b-256 150df68b6b9cb59fee85c56c569d51055e0a0186dbe92e76ae8ae94825f30769

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 386.1 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.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 92b6ec0b8b9e4132deb9d7f219ab7342e934821e5baca77b13104302e13dd279
MD5 3ac8ca5ff92e592065a67890a80472e4
BLAKE2b-256 c67dd39554a85e526e77ba705b9ec916adc6d36cd6fe1ad43c8ed2407f5af74a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 339.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.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e24d3138e9b4e7bdc83f025f6049bc7c6d523729295acdb8e30b790209e93135
MD5 1c53afc09d7a07182ebec0d8ccc4f162
BLAKE2b-256 f93286a5ab25a3663b0eccbf9a3435217e754e30e028c978fe71fb189997404a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 105e08a829c2d39838d8af6774af19852df92cd05e5d0d960c7726810b805a94
MD5 4cddf0eb0a6dac8ecd15e86cb82b186d
BLAKE2b-256 1be3591b8eb139c5550822fe3661432b5f0a1f807f803862b9bdb3b96a0b0134

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f31c73c318a325538f521fdfb54679003e8ed0f6a8f9c6c9f2cec9bd1fd1f51
MD5 ae8cc194ac85b36f59750bdbec174bc2
BLAKE2b-256 316d1755c4c953b8ebe8353c63d13f17df55de11713d905fb7e4c417a85ab1d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5bdbef082954a19efd488501f1bc91ee0bcbdcdee67e1d035e910e4592fc2239
MD5 a028cf1eb71e177f98231e6fad24a081
BLAKE2b-256 8678b51990d1d27e91d271b6a0532069fb708636f353ca437f82cdbd74ac9aa9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 667d6180c0e2e4ea1edad257dbe14a3f38a7ca677b47ec6a7cd99e231e1b3a0a
MD5 56bd19376f83bc1a70b9d7398fe4dc54
BLAKE2b-256 2f3231031f8023cb970717857d65e26d60898cff7ceabb2fed2476cfe4ec747e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b06f81be6b596415e0b43efd2cd1a556a204b46048af3cd570ccb30bad02971
MD5 ede8fb1de1d81250ef6ca38e694810a2
BLAKE2b-256 53572aa8c6a137f49bc1aacc7cb6ee0ac192c65ff2a3241ad45e6a7beeedce78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77630de507ef6150172743412b929aa1b538f1bede91529e3535cf5809d1f219
MD5 30efa8fe124253bd823fb50be7502ab0
BLAKE2b-256 f7d9ee9169caaee1b09d47100032e8ed2d1ebb62eebad66eca0233e8b48d547f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a8d08181b4fa4ba137a32e9dcd221436b5508ff63951990e6c2b2e4c4a2dd96c
MD5 d016aee4329ea25922d23e34d264d9a3
BLAKE2b-256 e12fce48f9f3e51b5f84382ce4c24ffa17f3d933e34048a2687d6fcc36b9d14c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 382.2 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.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 233d01961c4c364673642598c8198fe9b0fa22f2cbeecc58350fad8ffcd94fc9
MD5 ee27e4206f5b5fff9669c6acb3a79b3b
BLAKE2b-256 e722af12c9267cba110bd813d3170377d9921cf2371b56456b929664541977d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 340.3 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.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 eea4cdc5e2b4eb3ec3bd46dd9414c12fe4b5d43fdaf01769accfbee3aaf6727f
MD5 796452e709b7bba75e1ba02915b0794d
BLAKE2b-256 7f2809bb3bd554f6470441db11c6c090eafc2f7182d8556fa96235f6f3de1101

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c261e7fbafbaa768e8fe9e46008038e933a0354aa9a04e10a9a17520e2ce940c
MD5 b40b2021923faab1533d38caef994d82
BLAKE2b-256 aa5a8f6e9a743acc80fcb67d4a0237c847e17d142aade78dd622dcca22a135dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe40deab8acaf158d3b4b1dba9e4be9a3f3cbcc2a85a5da69094cd589672b293
MD5 13ab2c63e5fcfa30de8a8215c8db3f22
BLAKE2b-256 c3a70a4539b036702ee69fc1e43a7db92b3b6b043a7fc1b479d215c8b6974433

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e747c1f4be84ed6c9938d60b9fb831a4cd535b0848a7feed4e19d867a8d00c7f
MD5 48682e599e5e3fe98dcd9fbb3ccbda36
BLAKE2b-256 82fb8206918585fe7d87f542f34379be9c9813c0b4b4a1bdde6f18d990085391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ffa81a41e268eb30f35044abf611dbbe36230ed9d436ab05b412a39f193269b
MD5 f104f49e78cf2733a29ba9b6f67d4124
BLAKE2b-256 460ae8c87c38053184c2e19da14574c42836bd229aa1f4f577bcbc05dbc98c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c99422fc7bc8da69c8053fb34ca0b16c244e0726e34b1c58b0ce1db06f591dc9
MD5 5d23ea20e2fc238d36c25fab1acd6e38
BLAKE2b-256 fe65351ba5497a5eb1cc02eecee8ad8119ef3bd9f76b28b84988cd7bfdf077f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0afe27bb7b6141e192e1218c7d34354a19c27f61b84fded511ac0e8f5178031e
MD5 d56079903a5befc99bffdbff9cfe76e6
BLAKE2b-256 85e5215c0a8c1d97ced2407bffc2a8d2bb428686447bcca603f08e5e05d897f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.6.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 336.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.6.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d06d2570c265a3069a69f944a04ac88efa15820ddbea9e9d43ef89b75ba9e021
MD5 93244cfebcdd33b48d6f9f073e971120
BLAKE2b-256 e28fc4936ca2166f809cfdeec08ee9e9281d08eb037903df7b9e04f7a28f4c8e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1712ce1f00ab550c244f5148355396a5a3866e6a38693531daeae24a38e1d784
MD5 cdf104bdec0e6b713e4a2eb076e87195
BLAKE2b-256 4dbb3b178e42970ef93efcdc47be7545290eb2c64be767d40498f5b8ead8f4b6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bb658a169c4e7c70e67e37833867cea465b6e320e2e1ec9aa723c378b22729b2
MD5 373053542fb574751185c91fcb9e7de5
BLAKE2b-256 e1779e8b84be7838f4fde5e8176364c004a42e7d31d3b504cbbc2f2131b1a663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e48c05b4ee3db4a421c97a68923771a0f1049a1c086d7e693688e71e44db2b1d
MD5 df43da6b746fc5c3d784f3789a53cbce
BLAKE2b-256 118947e35f4ec1d188264e26be575a3eb3a677149e5378987b5d8c861d7e7a75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afbbdf068b3219b394cfaeef62b3ab07401f4f8f4a8262f297bcc2749fc0d383
MD5 babaecf4d5d4f472159bbdaddacaffec
BLAKE2b-256 7510ede85fa7c50191deb86bcdbbc1a6ae4c7b20e1000ce68a717d84e67ea5cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.6.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.6.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.6.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98d14e5803b0d6eb5ded1644f15812858514f61a4207cfe98423a0df27f60660
MD5 4cf681735c77bbecb8b40c61d3f99eb4
BLAKE2b-256 2ed29e209bba754e9e62c44560330dfdd367836a43878b410791256e159b6018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a061ba2f42d84b1c2c8feba76415d98bb2c94d4a614278bc8d0d4e11a4ee020
MD5 7de7d393e63b1a4968b7151c57eac14b
BLAKE2b-256 52c3d4276fd6484d8c2c401217ea2449508418fc7379e83970b32ef4a2638c7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 536b19bce4838640dbe1a9854aefbd8574a1445be934fe79d89c88e1e337f1b7
MD5 8a99f76abab1d14d392b02e8614d1cee
BLAKE2b-256 473e2beff0015e1b4d934327b74455991768fd41b586e8fff52b426ca9bb216a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16682d26cf784db9add780798c20f54370e9a1df181a4eff84d459f2f8fd1218
MD5 c75125812f1daeec6923cb965ad5d26d
BLAKE2b-256 35bc429f5c698a68e97588eea44fe0c8aaceaeab9349ff0d6a24d7ab1e0635f4

See more details on using hashes here.

Provenance

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