Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status Latest PyPI package version Downloads count codecov

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.

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.8.0.tar.gz (260.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.8.0-cp314-cp314t-win_arm64.whl (369.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.8.0-cp314-cp314t-win_amd64.whl (490.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.8.0-cp314-cp314t-win32.whl (417.2 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (505.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (496.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (498.1 kB view details)

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

aiofastnet-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (488.7 kB view details)

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

aiofastnet-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl (442.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.8.0-cp314-cp314t-macosx_10_15_x86_64.whl (456.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.8.0-cp314-cp314-win_arm64.whl (347.0 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.8.0-cp314-cp314-win_amd64.whl (402.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.8.0-cp314-cp314-win32.whl (346.0 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (473.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (486.4 kB view details)

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

aiofastnet-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (467.1 kB view details)

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

aiofastnet-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (412.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.8.0-cp314-cp314-macosx_10_15_x86_64.whl (428.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.8.0-cp313-cp313-win_arm64.whl (334.5 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.8.0-cp313-cp313-win_amd64.whl (394.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.8.0-cp313-cp313-win32.whl (339.5 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (489.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (465.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (484.6 kB view details)

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

aiofastnet-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (459.1 kB view details)

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

aiofastnet-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (410.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl (427.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.8.0-cp312-cp312-win_arm64.whl (335.3 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.8.0-cp312-cp312-win_amd64.whl (395.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.8.0-cp312-cp312-win32.whl (340.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (492.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (468.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.7 kB view details)

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

aiofastnet-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (462.2 kB view details)

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

aiofastnet-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (412.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl (429.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.8.0-cp311-cp311-win_arm64.whl (343.5 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.8.0-cp311-cp311-win_amd64.whl (394.9 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.8.0-cp311-cp311-win32.whl (347.9 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl (495.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl (478.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.4 kB view details)

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

aiofastnet-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (471.2 kB view details)

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

aiofastnet-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (413.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl (428.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.8.0-cp310-cp310-win_arm64.whl (342.7 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.8.0-cp310-cp310-win_amd64.whl (391.2 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.8.0-cp310-cp310-win32.whl (348.8 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl (493.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl (477.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (488.4 kB view details)

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

aiofastnet-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (469.7 kB view details)

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

aiofastnet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (414.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl (428.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.8.0-cp39-cp39-win_arm64.whl (344.3 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.8.0-cp39-cp39-win_amd64.whl (393.1 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.8.0-cp39-cp39-win32.whl (350.3 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl (479.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (490.9 kB view details)

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

aiofastnet-0.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (472.5 kB view details)

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

aiofastnet-0.8.0-cp39-cp39-macosx_11_0_arm64.whl (416.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl (430.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-0.8.0.tar.gz
  • Upload date:
  • Size: 260.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.8.0.tar.gz
Algorithm Hash digest
SHA256 37d149406a039522e28450d434f4ff6bdc4dbdbbc7e3e3c7c0cd9bb961bbe4b4
MD5 38a5e85c4b8f0b433db00f8610d7094d
BLAKE2b-256 8559e7f5cdb9258ffec5e087fa9509a183f5d366eaf248896f5427a7c3ad071d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 369.9 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.8.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 446a58571bf3b70f8cd3ae47c8ba03ff7ebd3ec393ea1a9014c348dcc409f364
MD5 07d6639d5dceaad52dd3c1da213e341e
BLAKE2b-256 8a7800bf39145a5ac6e397f9c0ff301fa2476223a533b7d5e46a4bdfcd9e5836

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 490.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.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2d48861c3369f618a7676f8314aa34515ea45f3284465e0d50306dd8bdf87e4d
MD5 30df26f141f2e3281a43aa4097119129
BLAKE2b-256 f9deb1f577665b3643f10c4a36ec234ed19ec6ec2a1831224a089cc9eb5b6e5a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ba173c8612fca4608287cd8a06f4f7ad45900f4b14441c6b9fc09b7ba004edd1
MD5 68b4956d6cbe3790f755b678d77b2740
BLAKE2b-256 6774f44d54858c261b870eb72814fa4ea5b91b5b6e5f82888ba714bdb91a8ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 762fb1154eeb8a0316f14a5ab90683b7db7b94f58dff3a8d38798e2c814e128d
MD5 7b8decc4620e3c3dbb2e9279b41f17c1
BLAKE2b-256 546ebe19ffc1578186f918ff4167527029154f664a2b90dc4144c8ef77ed993f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b060a46ce0542a44b2118aebbe88405dccbd3954293a38bbbc5fb1d69e4de8d
MD5 eae163010e8f3791e9325480b43a6afb
BLAKE2b-256 59e0056769ec92134ecf5df14cb1cd32626ec2c49500e04e9a1e5e37f595fc80

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4248711c524db0d6576ef7088f22d55ab899fe085137719597e62311edfead19
MD5 79c5437e23c706e7c1c7442bf2c1d612
BLAKE2b-256 69322929d21ec840338cfb9d1513ffd7b22b37d8500938b22976c2b721a96567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a06bdaf2d64e9ae4fd00f1f8a789b31b087dea50adda1c7d86d9f770e82bd91
MD5 20ffab12a4dcdb6c54687f287aec672e
BLAKE2b-256 6e35c0cb99ab5b26b4093bcbbe1cb9ea328bfdf841a63d63c35ce817081e551f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebd81be95faf0a3c9a2401b1b9e320a9d4f3cd99ec3358c389bf176085cb8703
MD5 f52557886719e3d25c338cd12437e9bd
BLAKE2b-256 885a0515319c36c7f8291751cc80b67a1a73fa01790301a7a0d63995cbd197fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1a7ce5ff949293f4044b7e3d65ee2d94f8b474dfeabe1ccd1893d73851c676fc
MD5 2d121775777586fe829890257a805c8b
BLAKE2b-256 38062ccd89353481c035a4f20a71fbbd24af363039606a629cb48462aa85f68f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 347.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.8.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4d5739e5113fff3f51bf1e2fcef4450b084f045f33022715ba018828f8d74ac5
MD5 9dd0ea16e7d37fab654142d2e46ef940
BLAKE2b-256 f16ded7283b9e461bbc8709c3e1547780b5288c035f87c731e6a3433d46154b1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 402.5 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.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 419de6a354678f2ea77eb40ee5efbb590b6287e5676e6dcb0829ea0fced3ab5a
MD5 ed5d7a87ebcf2be373fe9b70a91b6722
BLAKE2b-256 994f9b4933ba36e88a46c86efe5295f9187762d83c40b2306b37414a30dddca1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 346.0 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.8.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 15f909acd0c70429b042e9e06b51f8f39773d0a90b2e08f620853e1a806cb1e4
MD5 76d051ff9fbaddb90b8540142d77f8a5
BLAKE2b-256 b3cbfb493a31ae7465279d6c3e775533b3da4490688d5192e6d1619f0e6ca06f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7090fce2b921f0eca15c176b8855ae75d29acadfe598cc063d774a627ff53424
MD5 f93ef95106a0d18a95055ea7ae724eb5
BLAKE2b-256 92973ce26176e2bfca8d89f04c3da42dc5dd42d208b21d9c2a82b67059c3a761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 307bb78847bcf098e80b7a5407ba8fc50448f03166647f453a63f0acc0e90ee9
MD5 ceff7fb5853529fb82fe20dea31b8ee7
BLAKE2b-256 e76f1ec944a785426f9a3f2e55a8ce4dfa4d21e47444bebbc02379e7728ccf72

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 554c5838ea322c3d88a2940b50487ad8394f0230f09fd9064eb4eb6583e73bd9
MD5 0255b189c01ac71a1766f02dd3a724f4
BLAKE2b-256 b48f88913871c50d55cba1357c9e467ea8754e63b1d85ac8e8d6532941cf6fc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77ed4bf6cc6a35bc6dc2d93bb953bbdd9511d7fbac01952eaa083039f2b972f3
MD5 f9f12380570dc78fdc26034e167dfe9e
BLAKE2b-256 023d2bd816c0595d4f8f93c45857f770e8b53112933833864e92ae2f151fb124

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e4a18b4b1a866c13d94e5780b283505fb9f89e55cdec1089fba5761e9958157
MD5 48843de2ea5ad539574e2a22fb4dfe77
BLAKE2b-256 b551b8f95ef064610bc98c981d185721aa2dcd702920643e60a0fa54f7664223

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2af5b52d6cda09115a8849dc5e19305e18db5d13ce7f8fd4ce8d7fca0d374b56
MD5 ed42e4cd9e4a8b9cfdcd9d32b2221c29
BLAKE2b-256 7bfa6f07b127776ca957d86ce0598681654545dd9033183f35ee00148b3dacc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 334.5 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.8.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0ed56c0fd5c91d0b797e3fda866cede69bc17736c9aa5acf8b1a589f7864bf98
MD5 77c0405928e29d8397d39b3050a1ec4a
BLAKE2b-256 1811f253d19475d43af9eade80c7854ec79e1f367646cc85be1ea8249f0f9c1d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 394.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.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3dee8cc4e8368f56b5d820aa571d1028ca85bcea24d655c29c95be3d370d6402
MD5 915f473a07d73936ffd4a7db5aa55c0a
BLAKE2b-256 f64738253222717141154027cf32f67b82470db4daecf7b69f2fcf79bf1d05fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 339.5 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.8.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ddf14bd7506d5f2cd9f4a47aa401c90fa8c5f56a564fdfabc865b7d7b719e7b7
MD5 586434c7a3f1c427921b304e0a27128f
BLAKE2b-256 291821194c4af3b916386f8493f6804ab0ee2282ab25507466c7f6efc7387ec3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee2be57aad71bca7cfdf5b17a6e9a0f724914977dde90d050fec8241bc20d460
MD5 9362fd95def7eb93fbec6a71d5540da8
BLAKE2b-256 ad3ac9bb2e9aadf6989a422b6507faee6afaf11773c3e39658321144382e824c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58fd18d5e6ebc07154914dfbac761c86e5eabd7836082f2127f9bfe183a8cea8
MD5 6c06de4da0ca7193f0d072946f578494
BLAKE2b-256 7cdbeafeda47c51078941e5ae72b9988d4734726889c80acce71fd61cb31b419

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96dd719b337f0a2bad55c9ae1c5fc86f09c042f0a25d0c3af0dbc426d63543b7
MD5 5af66322c0f0188a8bfa197e3ca782a7
BLAKE2b-256 c8b148bdbe81786946711031d268f20c2a80be8f83396a1601d26dead0f73dfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62932e7c4fe736d329c2f8aacd0efecff90396e559f5cef29068a9362573c213
MD5 f52b2d7177fa4a3c670c7fa0d63dee4a
BLAKE2b-256 095edaabbd025d2a4d7afbaad3159af8982cef0256992c6539eadc00c4a5fe48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 075c58d48986b618a91bf4054cba89fa11796d241e2def8695d4fc40e26c663c
MD5 5e5a5b34914350e8f6fe342fec9c1e84
BLAKE2b-256 9a98a188409e14ac8a442d90e906067a90b45a1f10650e28bb5f201b24f85f1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f8516da984229e63f68b063a33547cf32dba3072fb4b40335d1e64b5a68b3ff1
MD5 cb68090a4281a9cb47f60f25ff5316b3
BLAKE2b-256 14e5efcdb3f8810e377323695f47a22d20a40762933557042963bacbbc04ce2b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 335.3 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.8.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 44172390070d776c4a8b7549e0d3af16d2cbe58ca081304da826c6de49aff27c
MD5 3cb7a1a7f32d64d513493a0f514e0db8
BLAKE2b-256 6b38df5d4d326824366ff4250ec141e1fc3f9c0684c50679e2af00f0ddaa2927

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 395.6 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.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0e60a97535c9c9dced45c51479c5a463590ce3c7bd9217b6d925b7aeeb15f2aa
MD5 0be801a2ecdf13c9c23e161c267c4dcc
BLAKE2b-256 2e93fc410f0bffb0f210982ee78b97896196638ec114f6ca9f541967ada1f3e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 340.1 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.8.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3dfe6268cbcc78d9f660359367187f515c99aab0b96e18da226b4b7fac95d42c
MD5 76a51d24eb5f93c7c997a6180b47e087
BLAKE2b-256 f72397c9886156f257bb6d452a8cb3dee45231b0b86b2ea78ece9c5cf2809b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5276d0c60a78b446a547415e2346f2040b5b640337ad09a3802335de093f4cd7
MD5 c9abf902a1fb830cbcc9af34ef0b5afd
BLAKE2b-256 c485f2e2bc87f022d4e4e92e2a67e1c9e08e7f21b066b363487e823fa25d47e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f8dd383d1ced517d67330b41857b75087e2ba21bdda38cef285dc4a094e9177
MD5 e225dde747aa21e30b627fec458f7fa8
BLAKE2b-256 e0270f7ae614c82f597acbff7abe84c03a02700cd886cfdf90be19ac73e96893

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9282203ce139f400cc5a146e111991184401ff9c090355fbed6fbb546454b517
MD5 04367dba325c297823d57a5e5e50445f
BLAKE2b-256 dec358143394d05d33af2fdda9cb7fb3d0f0f01765fb560514a69910543eda4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6758369365a638e8cece0fd2ca3bafef741669485090c7448012528a4cbd3b8f
MD5 a09dcb1a908b43d1baaf5ff93a300740
BLAKE2b-256 00cc2ed62b10f3ce5b6336557a797c8bf913dda1d05794b9a9c81dc527467311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 450660b2c393f6beca355833d02ecead8291c67809e632f2a2cca4d04982fda9
MD5 617ed34e31ff390768c6be7650c759d0
BLAKE2b-256 3e3201ba060c9dde4e87c2772093cb1e1b9ec7385ea6adcdff642d93cbade6d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c31ab83d37f0c1ca3bbe4b534bd62a05a55acabfbb866cb610de20682a4e1b40
MD5 47153db34bb30403d4d86529f8d97949
BLAKE2b-256 a9ae8e067c17e58136caed6b8520b5dd3e88c5e5f4156c7edaa43e9cb4ccbe87

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 343.5 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.8.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 142a92dec09b6e230e33c7e901d0a9996afa94aca95a13a7be96faa6e270208a
MD5 0dd85836a1f810665aacaa37b0066dea
BLAKE2b-256 8f8106310050878333d2221edbb35783fc0f08a48ec2bc92964b7d5f9eef5dc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 394.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2d7c6fe8e5bcaea8c192b6f632b99796bdbb98b7173a5b13c440f6a496c37b60
MD5 fc3b6c5808704c3baed5a98f9f18ec07
BLAKE2b-256 da26ea9380102693065be6500e8db404a8c14769fd3e947de7c69a325bece04d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 347.9 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.8.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6663fc2a0e92f4593ade2790b526549835505f8c295eb2a079301dd8adce1071
MD5 aace5532307617c9e1f77ed18bf7fa42
BLAKE2b-256 907779f25923631c7803beea771c51a9cebba3ab1ca7176f4cc50c7eb48c5bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27e0ded710d555ad2705217380746a19e2957a2e558833249898147b95f9f85b
MD5 93fa5ee4dc8d16ffcccdc91d2b89be87
BLAKE2b-256 9a64c49f7505a627835d01827cf05b87f3b69fd216018a6ef9b6ee63eccedf69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c582243dc3708ccca05e83e8cbe6d30587d12821104f39f762da56bea2d8c81
MD5 b41a5fa1b522bb6cbbee8e9766850e30
BLAKE2b-256 fa6935332f2ed5f233046ecf37d6579ad65154a6f26b668bbbcec5f22bc4cb44

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 917f8d4bf40c51b7c0169ccf90ebca4196aae80a701888c7fe63667d65ce7c66
MD5 ad1515fb5e674bd0c7da1f231fb098b7
BLAKE2b-256 0b7631fd7aad76c323676747b91349b7cec174625597ddd59b5134af25f4e9d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cec0d2a386e600d60b9910328f2e7ae27faad087e0b2472c3d3f983b50bf0ea7
MD5 14498e005791a29821b622edde67734d
BLAKE2b-256 c376452ddd83de9d72281449d6e09021459a279cd6e21d5453db0ef9c5c4aeee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0a6a50629250c6bec92536ee24b24fd3f8b44bdca5f10ca030f63eb61d84d54
MD5 a9d1740a35678208841c5e1912ff6e91
BLAKE2b-256 83333c049d6e1b61869427e783fd3e94f3b781047c1089251f190a843fe28ded

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4df4d7e01597e6f9c6d84cd787c2bfcc39f9e56b87e8b99fff6f51f894f7ac5d
MD5 31ba7b09b1b6b836139a1e735d7ad1f1
BLAKE2b-256 e55d53ef6847d38a6a3934ae971038a92d8136796a1597f0baf95033f26c68c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 342.7 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.8.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6e6431b0cdc9235ded21335ca87524644e9b9d23faa51f53849f0d99face7389
MD5 f006b51fbe5efc0bd73dfe0daee82bdf
BLAKE2b-256 a67d9b22d770515bda53767e60d4d99340443917bcd94cfccc6b6b0c6009dad9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 391.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.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 99ee0f6459f744f3d4375fa4ba12f3b9abf2523a02625a3b3b6be7e76bfbc862
MD5 310722dfd0334ceb521526284def0ad2
BLAKE2b-256 593363667a2681bb3efe0175f813674d7d9d32c2f2fa5e3035c37e70f6f3d243

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 348.8 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.8.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b99f4cdb69e965f5e2de214d80ac4db77eaee735f51915ad3965f8807178bc59
MD5 9ab00ddc105274aeecbe2caabc5f0a19
BLAKE2b-256 59213e457c2e22ea89da1313bae9093cdb1aabecdaaa9003b9e718b42017bf8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e9b0115113dc3b1c5b7090f75692dc98f77d00f5645eb73e87dad11cb9f11a3
MD5 e99a94e8c2cc82e3d037a87234884b1c
BLAKE2b-256 e81fedd2d886d2dfdcbe9c216e39f309787efe605b6346e157f069cde37eb8d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43b026ac4b9a10116955852f8703ec03880f41e37952b90176767fe25f17227c
MD5 8bbc6748ab07c7e44d02636887600e64
BLAKE2b-256 bba74ea1cade74d9f989c4385d465cda3908e15a451b92b9292b5ef3049141ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cba00a981beb23d27f1258b4d0892e93c377d7a83c9bef5178998712881d8d33
MD5 d27d2ff4f5e0ad46c1faaa7d470f6aae
BLAKE2b-256 618974e68a8897218e18e179c3aad4f01877c098fe344682f6a0762482e2c071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 196ad6f2b0041f0782c1754240f38eaa641e8c558c293a4614ab2a9bb4960594
MD5 becb99ff38e10af9117d54dc7f9ed535
BLAKE2b-256 2e6d78b27d9379049c4a699a14171825b7719d855ed144ddf89fe834392b71a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6db3204ed3b1123ed07a2b654e7b2b4771cfb66c3c9b5c9975558f58ba969977
MD5 6026a97e32c86f66f43e9a6979b65c39
BLAKE2b-256 5d67868099efb8d30e472607063701f4d300ae74ef1b8322ed4e5a5ab3bd690c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 61d8f8946ae6fd52e02a37ad54ee0966ba315b0a961de6c45dfd15e3aed70e48
MD5 c6a241ac8331ead68cf6106dfff8cb83
BLAKE2b-256 55186229da2b7063b755953848b8d798ff98a25452c9a7daf3a350a9f17bd723

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 344.3 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.8.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 51b28d0be144f72bf6d2ab4b13ee622f25e032fe70b71fa358bea43177d95343
MD5 eb56b1ddb97319d2cef114fd9a0ad503
BLAKE2b-256 89eff115d850587ae96eee402d2c689c913814e916b34a07a48d987b2e564ce9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 393.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.8.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0842f49930e89992600c4667a7536b3224f7eb41079122c670aca173ca5f20de
MD5 5c076e42577d0590621c3becc0e86087
BLAKE2b-256 87fa64dd0ed84cdf1dad07c1ad37d0f4ca933e4a7f5542c120283254f10096ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.8.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.3 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.8.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 952a2b2aacbd14677fc45eb1ea48c6045d4cdbf9d42502811f8b1a4d8f08dfc6
MD5 3f26351781cd31d6ab168edd1eb94ea8
BLAKE2b-256 8bf54b54c27a17effcc19b284f2deffddd6c43e135f6e0f7dd8643ea69e8d0eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff6dd0f05c0fd876b2213ddedf48b6b92bbee51c96016d520c65360054dc353d
MD5 25de225576ff91fc95f7f185e9ca4dbc
BLAKE2b-256 482de13d469cb963cec5d21cc799b66f655f8d7bc4a8fe9b07e88da5da586f64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9cbba6f86d561df9874f7ed20db864556c17a46826a0e5690dc526c00d82f6fc
MD5 12c5a50277f03be26849e4225a72270c
BLAKE2b-256 60ea585020b1e8a91bcb86699078da44b6bd9e96923bcee5e7069cc523dc81d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.8.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.8.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.8.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91d8b43cae9e24593db85116c472a64cefdd96c166678c07b1efe5cbb2506ed4
MD5 1fad584595ce970887a6977a5d88b8a7
BLAKE2b-256 189bc49e461576d456918f1861d24c46f84be192e80f1c2757e20c1923f2393e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0bc03ddb70464d929b2316d06e4651b2bc6ff7fba5f84d1ffbadf1d326b03fe6
MD5 885a5817b64e5c3b8b638091f0a34fd4
BLAKE2b-256 2295309d01323b5ca793c1f833aa03ced8370b233b6162ca4d3c30535caa5b46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8dbed09ffc7eb96081c0cc71d5fbe1327d78d2cd88ef06542b15a93f765c86ea
MD5 26b53157186d92aceaca03dc2f06eb0b
BLAKE2b-256 5ec0cae946ff6911a1c318118fa8c2998fc0f8addc8990b7c0ee4995e68b3105

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.8.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bb2421956ddaf1c217a7e10ad1cec211f88184c146bd3d8124ceae64d85156c
MD5 1a88a14fa4ea58522ea977c0d842b832
BLAKE2b-256 4669e522aa55b14005544a83fb6112ad0504f2fe14af35314e6ce9ee0410fb51

See more details on using hashes here.

Provenance

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