Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status codecov Latest PyPI package version Downloads count

aiofastnet gives your asyncio networking application an instant performance boost, lower latency and higher throughput by just adding two lines:

import aiofastnet

...
# Call this before asyncio.run(...)
aiofastnet.install_policy()

Are you using aiohttp, asyncpg, websockets, uvicorn, or any other library that relies on asyncio networking? They become faster if you enable aiofastnet. The difference is especially noticeable when SSL is used.

How is this possible?

aiofastnet provides drop-in, highly efficient C/Cython replacements for asyncio's:

asyncio libraries use these loop primitives to establish communication channels. The current implementations in both asyncio and uvloop are far from optimal, especially for SSL/TLS connections.

Calling aiofastnet.install_policy() replaces these primitives with aiofastnet's efficient implementations. From that moment on, any library that uses asyncio networking will use aiofastnet.

aiofastnet is not a different event loop. It works on top of stock asyncio loops or uvloop by using low-level primitives such as add_reader and add_writer. It has no background threads and does not use unscalable tricks such as calling synchronous recv/send syscalls from another thread. Essentially, it provides the same kind of internal implementation you would find in asyncio and uvloop, but with much better optimization.

As a cherry on top, aiofastnet supports Kernel TLS out of the box on Linux.

Benchmark

The benchmark below compares echo round-trips over loopback for TCP and SSL. The exact gains depend on workload, message sizes, CPU, OpenSSL version, and how much of your total runtime is spent in transport/SSL plumbing.

Benchmark

Source: examples/benchmark.py

In these benchmarks, aiofastnet is up to 2.2x faster than standard asyncio and up to 1.6x faster than uvloop for TLS connections.

aiofastnet is fully compatible with free-threaded Python builds and scales as expected when multiple event loops run in parallel across multiple threads.

Threaded benchmark

Source: examples/benchmark_threaded.py

Why Use aiofastnet

  • Faster hot path. Transport and SSL internals are reimplemented in Cython/C to reduce overhead on long-lived connections.
  • Drop-in API. Keep using the standard asyncio streams or transport/protocol model and familiar loop-level networking operations.
  • Works with the event loop you already use. aiofastnet works with stock asyncio loops, uvloop, and winloop.
  • Particularly strong for SSL-heavy workloads. aiofastnet uses OpenSSL more directly and avoids extra copies in the data path.
  • Kernel TLS support on Linux. Native sendfile for TLS connections through SSL_sendfile. aiohttp will be able to send FileResponse more efficiently over TLS connections.
  • Safer transport write() / writelines() behavior. If the socket cannot accept everything immediately, only bytes and memoryview objects backed by bytes are retained without copying. Other objects, including bytearray and non-bytes exporters, are copied before being queued. Unlike standard asyncio transports, this avoids sending corrupted data if application code modifies the underlying buffer after write() / writelines() returns.
  • Better SSL backpressure semantics. Buffer sizes and write limits reflect what is actually queued across the stack.
  • Works for library authors. WebSocket, HTTP, RPC, proxy, database, broker, and custom protocol libraries can expose the same API while giving users a faster transport layer.

Quickstart

Install from PyPI:

$ pip install aiofastnet

aiofastnet requires Python 3.9 or greater.

For applications, the easiest way to enable aiofastnet is to use an event loop factory.

import asyncio
import aiofastnet

async def main():
    ...

asyncio.run(main(), loop_factory=aiofastnet.loop_factory())

If you use another event loop implementation, pass its loop factory:

import asyncio
import uvloop
import aiofastnet

asyncio.run(main(), loop_factory=aiofastnet.loop_factory(uvloop.new_event_loop))

For older applications that still configure asyncio through event loop policies, install the aiofastnet policy wrapper before creating loops:

import asyncio
import aiofastnet

aiofastnet.install_policy()
asyncio.run(main())

Event loop policies are deprecated in Python 3.14 and are scheduled for removal in Python 3.16, so prefer loop_factory() for new code.

If the event loop already exists, patch it directly:

import asyncio
import aiofastnet

async def main():
    aiofastnet.patch_loop()
    ...

asyncio.run(main())

Library authors should call aiofastnet APIs directly instead of patching a loop owned by their users. The API mirrors stdlib asyncio: pass the running loop and use your existing protocol factory.

import asyncio
import aiofastnet

class EchoClientProtocol(asyncio.Protocol):
    def connection_made(self, transport):
        self.transport = transport
        self.transport.write(b"hello")

    def data_received(self, data):
        print("received:", data)
        self.transport.close()

async def main():
    loop = asyncio.get_running_loop()

    transport, protocol = await aiofastnet.create_connection(
        loop,
        EchoClientProtocol,
        "127.0.0.1",
        9000,
    )

    ...

asyncio.run(main())

For servers, replace loop.create_server(...) with aiofastnet.create_server(loop, ...) in the same way.

aiofastnet also exposes start_tls and sendfile:

transport = await aiofastnet.start_tls(
    loop,
    transport,
    protocol,
    ssl_context,
    server_side=False,
    server_hostname="example.com",
)

await aiofastnet.sendfile(loop, transport, fileobj)

When aiofastnet Is a Good Fit

aiofastnet is most attractive when you already rely on asyncio's transport/protocol APIs directly or indirectly and one or more of these are true:

  • You have long-lived TCP or TLS connections.
  • You run protocol-heavy services where transport overhead is visible in CPU profiles.
  • You maintain a library and want better performance without changing your public API.
  • You care about consistent write() / writelines() buffer behavior.
  • You want SSL flow control to reflect the whole buffered stack, not only part of it.

When Not To Use aiofastnet

aiofastnet is not the right default for every networking project:

  • If your workload is dominated by very short-lived connections, you should expect little or no gain. Currently, aiofastnet focuses on optimizing the data path after connection establishment.

Platform Compatibility

aiofastnet is built and tested on Linux, macOS, and Windows. It works with the standard asyncio event loop, uvloop, and winloop.

On Windows it works with SelectorEventLoop and winloop. With ProactorEventLoop it falls back to asyncio's native connection and server implementation, because the proactor loop does not provide the add_reader() / add_writer() hooks required by aiofastnet's custom transport implementation. For transports created through aiofastnet, a compatibility wrapper preserves the documented write() / writelines() buffer-safety behavior.

aiofastnet requires a Python distribution whose ssl module is dynamically linked against OpenSSL. Some self-contained Python distributions statically link OpenSSL instead of using separate libssl / libcrypto shared libraries. In that case aiofastnet cannot load the matching libssl / libcrypto symbols, and import aiofastnet will fail with an ImportError describing the OpenSSL dynamic-library problem. This is known to affect uv-managed Python installations because they use standalone Python builds.

You can check what aiofastnet found with:

$ python -c "import aiofastnet; print(aiofastnet.OPENSSL_DYN_LIBS)"

Possible workarounds:

  • Use a system Python, actions/setup-python, pyenv, Conda, or another Python distribution that provides OpenSSL as dynamic libraries.

  • If you use uv only for environment and package management, create the virtual environment from an existing system interpreter:

    $ uv venv --no-managed-python --python python
    
  • Use virtualenv with a system Python interpreter, since virtualenv does not download its own Python builds.

  • Build or install Python so that _ssl is a dynamic extension linked against shared OpenSSL libraries.

Kernel TLS (KTLS) support on Linux

On Linux, aiofastnet can use OpenSSL's KTLS support for TLS connections. KTLS is beneficial if any of the following is true:

  • Static files need to be sent over TLS connection and sendfile() can be used. In that case the kernel can read data directly instead of forcing the application to copy file contents through userspace.
  • Some high-end NICs support hardware TLS offload. This leads to huge CPU savings.

If you only sent regular data (not static files) and do not have high-end NIC with TLS offload, enabling KTLS may actually cause a slight performance degradation. CPU cost-wise it doesn't matter where encryption/decryption happens in kernel or in userspace, but the kernel tls module has to do extra bookkeeping. Also, aiofastnet can batch data and reduce amount of syscalls when KTLS is not used.

KTLS requires support from all of these layers:

  • The tls kernel module loaded.
  • OpenSSL built with KTLS support on a machine with suitable kernel headers.
  • An ssl.SSLContext with ssl.OP_ENABLE_KTLS enabled.
  • A TLS version and cipher suite supported by the kernel TLS implementation.

To load the kernel module:

$ sudo modprobe tls

To enable KTLS on Python SSL contexts (available in Python 3.12+):

import ssl

server_context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
server_context.options |= ssl.OP_ENABLE_KTLS

client_context = ssl.create_default_context()
client_context.options |= ssl.OP_ENABLE_KTLS

The OpenSSL library used by Python must itself have KTLS support. Python distributions often ship their own libssl and libcrypto, and those libraries may have been built on older systems where KTLS was not available. That can be true even when the host running your program has a newer kernel.

Check which OpenSSL Python is using:

$ python -c "import ssl; print(ssl.OPENSSL_VERSION); print(ssl._ssl.__file__)"

If your Python distribution bundles an older or non-KTLS OpenSSL, one practical option is to locate the bundled libssl and libcrypto files and replace them with symbolic links to a newer system OpenSSL build that supports KTLS. This is often useful with Conda Python, which commonly ships its own OpenSSL libraries inside the environment.

KTLS support by kernel version is outline here.

Check out aiohttp_ktls_fileresponse.py and aiohttp_ws_speedup.py
examples showing how you can speed up aiohttp (or any other asyncio application).

Some other useful links:

Free-Threaded Python

aiofastnet is compatible with free-threaded Python builds such as python3.14t. The extension modules are built to work without forcing the legacy GIL back on, so separate event loops may run in separate threads.

The repository includes several free-threading examples:

Transport objects remain thread-affine. Methods such as write(), writelines(), close(), pause_reading(), and similar transport operations must be called from the same thread that established the connection. Calling transport methods directly from a different thread raises RuntimeError.

This matches the general asyncio model: loops and loop-owned objects are not meant to be used concurrently from arbitrary threads. aiofastnet does not add internal transport locking for cross-thread access.

To use aiofastnet correctly with multithreading:

  • Create a separate event loop in each worker thread.
  • Create connections and servers inside the loop thread that will own them.
  • Keep all direct transport interaction on that same thread.
  • If another thread needs to send data or close a transport, schedule that work onto the owning loop with loop.call_soon_threadsafe(...) instead of touching the transport directly.

In other words, free-threaded Python lets multiple loops make progress in parallel, but each individual connection is still owned by exactly one loop and one thread.

Building From Source

  1. Clone the repository:

    $ git clone git@github.com:tarasko/aiofastnet.git
    $ cd aiofastnet
    
  2. Create and activate a virtual environment:

    $ python3 -m venv aiofn-dev
    $ source aiofn-dev/bin/activate
    
  3. Install test dependencies:

    $ pip install -r requirements-test.txt
    
  4. Build extensions in place and run tests:

    $ python setup.py build_ext --dev --inplace
    $ pytest -s -v
    
  5. Run the benchmark:

    $ python -m examples.benchmark
    
  6. Run tests:

    $ pytest -s -v
    $ pytest -s -v -k test_echo[uvloop-tcp-buffered-6291456] --asyncio-debug --log-cli-level DEBUG
    
  7. Build coverage report:

Building for coverage testing requires enabling line tracing in cython, which significantly slows down extension modules. It is disabled by default. You would need to rebuild specifically with coverage support.

python setup.py build_ext --inplace --dev --with-coverage
pytest -s -v --cov=aiofastnet --cov-report=html

Contributing

Contributions are welcome!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aiofastnet-0.11.0.tar.gz (265.9 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.11.0-cp314-cp314t-win_arm64.whl (340.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.11.0-cp314-cp314t-win_amd64.whl (451.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.11.0-cp314-cp314t-win32.whl (384.3 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (463.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (454.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (457.9 kB view details)

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

aiofastnet-0.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (446.3 kB view details)

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

aiofastnet-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl (409.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.11.0-cp314-cp314t-macosx_10_15_x86_64.whl (422.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.11.0-cp314-cp314-win_arm64.whl (319.8 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.11.0-cp314-cp314-win_amd64.whl (370.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.11.0-cp314-cp314-win32.whl (319.0 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (454.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl (435.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (449.0 kB view details)

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

aiofastnet-0.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (430.0 kB view details)

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

aiofastnet-0.11.0-cp314-cp314-macosx_11_0_arm64.whl (382.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl (398.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.11.0-cp313-cp313-win_arm64.whl (308.5 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.11.0-cp313-cp313-win_amd64.whl (363.9 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.11.0-cp313-cp313-win32.whl (314.2 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (452.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (429.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (448.0 kB view details)

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

aiofastnet-0.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (423.6 kB view details)

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

aiofastnet-0.11.0-cp313-cp313-macosx_11_0_arm64.whl (380.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl (396.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.11.0-cp312-cp312-win_arm64.whl (309.5 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.11.0-cp312-cp312-win_amd64.whl (364.7 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.11.0-cp312-cp312-win32.whl (314.7 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (454.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (431.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (449.5 kB view details)

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

aiofastnet-0.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (425.3 kB view details)

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

aiofastnet-0.11.0-cp312-cp312-macosx_11_0_arm64.whl (382.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl (398.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.11.0-cp311-cp311-win_arm64.whl (316.6 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.11.0-cp311-cp311-win_amd64.whl (363.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.11.0-cp311-cp311-win32.whl (321.3 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (458.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (441.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (453.4 kB view details)

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

aiofastnet-0.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.3 kB view details)

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

aiofastnet-0.11.0-cp311-cp311-macosx_11_0_arm64.whl (383.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl (397.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.11.0-cp310-cp310-win_arm64.whl (315.8 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.11.0-cp310-cp310-win_amd64.whl (360.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.11.0-cp310-cp310-win32.whl (322.0 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (456.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (440.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (451.1 kB view details)

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

aiofastnet-0.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (433.6 kB view details)

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

aiofastnet-0.11.0-cp310-cp310-macosx_11_0_arm64.whl (383.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl (397.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.11.0-cp39-cp39-win_arm64.whl (317.3 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.11.0-cp39-cp39-win_amd64.whl (361.9 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.11.0-cp39-cp39-win32.whl (323.2 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (458.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl (441.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (453.6 kB view details)

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

aiofastnet-0.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (435.5 kB view details)

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

aiofastnet-0.11.0-cp39-cp39-macosx_11_0_arm64.whl (385.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl (399.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.11.0.tar.gz
Algorithm Hash digest
SHA256 bec1761d9c489ce661f27c9efec78c967aff07040c89e3ddee680c2b45767370
MD5 38533626e630944916766e3863ebb57b
BLAKE2b-256 a4fe96b110436bda8d897cd96734611ca45a517e37f74dfdc79e1258e16d5c1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 814dec02438fa9ea8d3942a765a1b6f2b0f58f31462ae8ab48902e80f489ab23
MD5 52ed21ea4c9f012d9c5723c68c3f8cc1
BLAKE2b-256 173981e951dd7f3cef5795d361cfee18643d256c1e7cf6753ccabef416535846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0ea25bf88c960af63b8cef354fc31635504f877726ca71a1e0ccf93e9b650f7d
MD5 408c54a352a943b52839a4dbae6fc385
BLAKE2b-256 3da7e8b2695a7223b8ec4e9c8b26ef3b790c4580cc168b4c67c480cea4984ef9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 384.3 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.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 038b99a7a74fe3d58e13523eb71de11244886e0adaa1c7c0aad756c9fa87b2fb
MD5 83e4f73f29a4fc55d337aafb625cc7c4
BLAKE2b-256 13dec5acab152250746104dad651f353424e4f2841a44056326feb4bfa9336cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c77f8c0ee79abe0a56a957ae438fef3187b8d44efda2c3543b807b99433e7b8
MD5 086c8455c944165a36eb27a363688c50
BLAKE2b-256 50e2ed229704257b55759cd4175b4323ef1bf4f2a52ad94ec39e40e39960f2f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f10f96c3ebc08933df8cd541c8eba877ced762672ad5b53b9b767d6dfe4e4f13
MD5 257de4990a8bd01fecdc247481ab17cc
BLAKE2b-256 e023bed93bf1835156e093638cb701cebd5a351483253bc27765103d6289e638

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16cb3afcbf74e9b156d4557a9db2ca46638ed1d7d46bc00b8cf7c2fc7db4e67e
MD5 5ff436e2a4e77ce793a1057741052e8a
BLAKE2b-256 2ae4afe3ccf1181820017acda4b6c141975c1285bedd370947a6042fa5745982

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3b164b4441ee1b2f3cfa4b3a1f1f0bf67ee3b9d8fc2c1945339869e9a51f962
MD5 71baf98cbd382759f2ea707387ec17db
BLAKE2b-256 c862b481a4fb20b02af127a9ac4cdb20853561c6319cd6e69e330a1991219e45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c1da46b6f9ba0dfaaa34af394585924df91ed8bd93aa5718c8db8c22d59d78e
MD5 313e75017a2de21d20e5bb27027222e5
BLAKE2b-256 cb573ef2842dbd1290a0411a0fcc1ce4bfb325e1af195cedc05327cd6ae67843

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c888a562a4ae219ff65b11cb37e5cd7eb4805910a50f243710e36dcc24b7f6b1
MD5 548042374e11d269009026852ca15073
BLAKE2b-256 a0e27a5a5948a7488f29b742df08914a8c8028a38c55a3f6b4e09da545d90a83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 319.8 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.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 04d68280992a131ef7dfa146dd30131d4f25ac143140e8337acade26153c71d4
MD5 03ef41e17ca174f780fbe7e0e8e8e0fe
BLAKE2b-256 d8a3a8ba9371796d375ec5f574ab83a887883f51d1d24d726b9878701f570980

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 370.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.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 44363603dc0d3fdb0b2376a355c3a9d4a516a45a8a4d352df2615c9098008a33
MD5 c41e17d5bd508a644995b97d704eb2c5
BLAKE2b-256 79dbab01086f7b2fe577c662bc4dbd55cdceba9caca7ba001b7703836a9d36d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 319.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.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9323fd4c79692b7c329c6138c362060adb2255bcaf6a17521aa3fa6ee3723e78
MD5 f353b544f718cdb036575c6a84810390
BLAKE2b-256 4d4fba3abe9607fdb4775ac71c661cdf511df34ca8e6e5d6f03f4b25ae2e5702

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e8e130d40c1f1446f95eb0b4a9422bda0abf488e19a2c9e4be43be50cf2abaf
MD5 eeecf9079a005047f4b4377ad48fb5e8
BLAKE2b-256 4dcfae8fde09f4273ceb2d81106fc89813b1e8ad4812e01b37c404786d461996

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71db10c06437ad5aa2dc065c2d8a5e1e9d7dfeb9d04ce80721f4a3a89f18c129
MD5 3c01f924333483f294dba7b5f0fee3a1
BLAKE2b-256 020b8a8905399506fd74bd24913474e59126f19adb0a5ca71ee19c5b52da8739

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 606c5895cd126564bf26dbef26f7003af95cc5b1e6e3c67e166fae3b6a77574c
MD5 1f036d9d2c935dcff31c848a15f9da00
BLAKE2b-256 4f8027c5f3d987aa899ccbeeb56338278356baf8d5aeab37d420c89a14c8bd84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1436510a0eebbf623341b0e9406022e096a57b8d3f9b0e326954d55e53fb0153
MD5 25fab19cdcae83ac120a317037cb704a
BLAKE2b-256 f4d185598a9322f1b8614262c157eed2edd7e64834aee75235c832702fd47b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e860b3f8b3926052eb80c0b0528c80241cfc70b2b98b6b44f00003f9d7316d57
MD5 51d1f9b6ea3693ee857bc0de087c5984
BLAKE2b-256 111c17ca4150dd2d5ec5ffd6476f57e1d471834c53dc02e8c9845c273545ec4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9281400703b712e15da53759b83a2003f574c10d2dd455e9b551aaad00ea3e47
MD5 cd48ae321043d0acc05e1c8e58d7866e
BLAKE2b-256 79b7930fa146366bbdbc80e429bae7edf2f5b5995d4884edf73c7657d42a80fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 308.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.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ca54610ca214213b777431e8d25fd24a8674c0131762d236476d2e416a5402e8
MD5 d926bb643949c446fec24e08661dfeeb
BLAKE2b-256 534ec130265ec7b9ab1dde89fd82563a8f9eb4cc45313602ddbc427edb0e9109

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 363.9 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.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b0c29ae87fc46eaa7cef538665fd381e134c38b599c07e80074b6bb12672d2a
MD5 2a5407bb62778a394068c226f096494b
BLAKE2b-256 3c0582bdbaf1a562ccea671f1165b2ea77db82ba9af784ba98400c355d6d528b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 314.2 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.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 06e8478ca22a22044736c4707d68deb444450c953713f44293453c0b3f98d5c0
MD5 825d5f83758401586569c6700084fdc6
BLAKE2b-256 1ebb1566804b11769bd0a29130ee0ce540148c47f7eff1960c74e621984fcad3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6e0716700e941314db53876aac3d7a51fdc8a8a43548055db7627b3c130ae5e
MD5 a866356c5a7064d3c39aa50143f66c26
BLAKE2b-256 8873ce24171039954b5f7b473f622063a7802254f3824152bdda45f8139d9a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d524331125992ffe572a886492497ad59f37ed6df8c2aa23a58bffd129df3020
MD5 3a3839cec08ab92e881a6d584df94c13
BLAKE2b-256 f756a7022104d7e760d4764b860d657e58162915da614fe7442e737953640300

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1fab908c898b1b778e1d07d01acf308e8092d72d18724e13e68e2ae0d7f3deea
MD5 aeda917be58c29c6008878d0e63f6fb0
BLAKE2b-256 cf5f01661b50fded36dabcbc5c0104114a103ee13d90327b430d5667b9182998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5abf471d3882822a60382e6155dcc2b33228fb6b05bc2b44944fd4764e0327d4
MD5 7b00e83ce2d3b99e63c571d10e7ccf90
BLAKE2b-256 7b45eb93fcaa9dcc22787c51047c161f023eb716a24ce6e226f4c68a63fed340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eafa1fa42ba8b38c2ffdee01dfb392c250433c8258a7f51fd5e7a5dce0f32c1a
MD5 e36e7f202c259ff9e6caeaf25e7acfdc
BLAKE2b-256 964be15ae8fde31d9572755f4d0b77f2f89c9f9ced4b93f26940b3d577e6d1d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90a9962a37b15108ee6144b373d026e099565bf8e0a708d0de103659717b4620
MD5 465cba2509cc1691c9c6bea017e58fdf
BLAKE2b-256 51a6158d894110409596ee1e9c792683d4ee0bf0155d69298cf02c0c0440cbb9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 309.5 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.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 83e44db6c1b85fc26106c755967325c7f5f155043c157c24c59d3265c7a76f2c
MD5 b79b9193d45bd82320f2413de5d6603c
BLAKE2b-256 e5d82b1af2928cb4933f0e32826912534ef8062d3a9f9b9da94ef527c0d39b4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 364.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.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0b466cb9a1594354a705d819ced3cc2614e226e7c700c51bec2ad99aa81d7e2f
MD5 73cd98a17380e2f9b96371205f829cd1
BLAKE2b-256 c0ae1af027feb747ae5277559a13b48ce42dc60cdc89ba463e0c679f85d66b70

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9e791778332342f6cee253438a06bb6e6e665b2bce15e868d6cc4a7daed4287c
MD5 e10be55b56dceeea1a498575f4e8c097
BLAKE2b-256 ae4c391ed0232c882f410904405f0c66ff5e489a0efb4e80340c787531c17286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00e325ecedf1b7e6e989f925d9bce0edbde9dbf267a420ac48fc5d8681c41a72
MD5 c6c194d4fd582908effe609fcef259bd
BLAKE2b-256 2aef2ecadbd921efdd2e8577bbfebbc0ed125f82b3b245b74dac8f959515662f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c285b81da9589595ad834187dfcfc7b42f5af37067237c56c99c764ce0574065
MD5 efe2574a05b290ea5426ee686b9e0758
BLAKE2b-256 3d34e63c47805c2d32d8e2035be4d8597f7763c17a4e3fd944e54d62eb7ffb2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6b3a09f82458254c1134d151f535b76ef26d769c588c1341fb554abe52e24cd
MD5 6c0157d94178909459759d156bddde76
BLAKE2b-256 e90f0e8d544438148c719374caa81196285f490860fe65d595ecbcdcc1ad8b69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f2a7cc0d76a5bd6893eb96def07095965219618bbd8484fdac1c13c47118a9d
MD5 d209b925786b06049e3ec76ab7a3fff5
BLAKE2b-256 edb05c1b83b35ef9a658dab4546bec33efc61bdb1c094b6573387472d0989188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02a417d4ceac12b799b8450f72f396755ce9ade0c953c6804f87eb81035facca
MD5 94f44ebee4c917d089a74a4700e9cfc5
BLAKE2b-256 fa4ab6d6b9afbe121d9f45edf5d2dafaa5927c3d7166870bdd2b7b04be4d05ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d91710afdb3833df226ff3bdcbdff78c7401fadb862915bdffbd892f18706d90
MD5 a8fb2515ed1d0404b208b5e7d39e696d
BLAKE2b-256 8a96f806a6d9801afa618ebcc54a904d089af0ac9a2a5015e64e223db426ae76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 316.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.11.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 744f50da04f4dfd6d2659af22512fe18821d638e4ca867737ebe25360109d7bf
MD5 190dff047723530ae44b060f3d29e5b4
BLAKE2b-256 1a7bdf2693988340921e7e05e2e1cb0aa8901be615e002c1d2d377e3f4aa2c17

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 363.4 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.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc1032ab0a0dbe4d003591235615e3c722b4dead38fe8a2dd53b3c210766db8b
MD5 abffcf3e0985da7b991a75af63e7c8e3
BLAKE2b-256 0dfb2b7e2e998f971eefbd88bc0667d5b719b9b9b91cc75123492d03bf2410f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 321.3 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.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d6457026344bb8a2431c1de5fe4b2b4c6d676af2b72d7804006dc7eccc5b087
MD5 b579b14c5298b542a2aac159570e7c9a
BLAKE2b-256 f4a5b097475182fbf669fc587c359d3c19d9b4b5a206941ea2830a8a183a39da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 797c2eb82234a56a63ab62df23d356996ff27bf6246c64043a1cd3aac3345129
MD5 0236bd9146d548daca9f6d0986356d25
BLAKE2b-256 1ee9b47e2a33d6f05c4b4adb4ecee69e57dadf971db18de3c6a09da1395e929f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec91b6502dff31a2c7c4c3c6bd449474fa3eb9fde0474116620bea2cecafedf8
MD5 41d3513be16f7802d6d3727eb2a6fe7c
BLAKE2b-256 be4d68bd03fac3851bf2be2e6b8026e22d346f9f0ff7de43fc0734145fa6eb4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 39e0dffca329a6f9334b2dde323026654801ade98c83df24f03244bf412885d2
MD5 042da2c089f6a43f43e14ab916776de9
BLAKE2b-256 ce185e9551d6a7de1a7a404a353321cd18e46ceb6b83388e92b9fff3d19829e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23787be7f091088f882c08f4b9be2f9e49f041e0d0a004b86d3160ccb0a34239
MD5 38ac640bb823c2fe9893524be7f67471
BLAKE2b-256 5ec5e61e0bf2d1aa72e9bca7913ae1994083f5911f4b67c8173775b575a26628

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab29b2f640072883c5bcd4411ea45135da50e74e47da98bd49faf37a56fd51cd
MD5 e31c6e8a6a5c4a7e7ed243a94c630c84
BLAKE2b-256 df86b544fa589b664914f7fd4c703db83ea4281803385f000814f3f1fe6d284b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e168d7c4b53ed3e7b279fac10cccfba4163a33d4652bb81229dcd89510566d1
MD5 3c89241605f69d1ff3e84f5d2d14f09d
BLAKE2b-256 dd8ae52cc71e5198988a21a23a5c427518e66b6773250dffe586004bb4180815

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 675fc7ac592d6cac6b1f6a61a10442e62200a82722b90df7888dea5c79b4759d
MD5 c50ba9717020ab2e758312b24640149c
BLAKE2b-256 22c948d7f53ab2a71cfb58606051fec66f03db814090253aeeb59539b91ca94f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 360.4 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.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0eb85d40ea6fb2d4b3653090e9f9d74fca9b2c4ce95cf504272048b18ecef545
MD5 e85694c055292e51e834933e18cff10a
BLAKE2b-256 162cd035a09501a4541b8e02682911697cf1937da637855a92a8561c01351c2f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 322.0 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.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 39506e50b80a9b81327bb9b6e7581ff22132e1921537897eac0dec38098b2984
MD5 b52b2bbef3528925b4935c690fc853c2
BLAKE2b-256 fbf67f1f4a58ff6e58aa755ec156789142df26d24a8b59f8eba9e1e8c0d541f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d12dd08509355009e03e93cd6428d8c26eed94a641052e5b9bb97cf2b031592
MD5 5b242758dccd9e81cb102d20e9f19e29
BLAKE2b-256 17d8ea3adce582e73133f10f6fc6d708bd455a8e245ad42cd74544f7a8983f34

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 771814afe18aabfafcd2b2e9bad4db073d117f66f83455352cdc5db211b819d9
MD5 e096293f106f364268dd164cec384b02
BLAKE2b-256 3b752ff680281699113c24c517ad6f537a38b945a730e3c292c7878fbc625653

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 959b47b731820a761d02492a7caa519de516caf6d3eeb2db1b1056608bd4f13b
MD5 c9e212fd5a4dfc139a809b5dfb02d25f
BLAKE2b-256 cb23ee3318cdd63f38c46d28e1ef93801d045b9b0ca5abddac0a323e2e3daa2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a56a7baaa6a556743e9b48adf43c0789afd917fd9fcdc1aa1b0da875311da20
MD5 e224e7eb5432006ab8d4cdf37e917c60
BLAKE2b-256 1e4a371a2463c7e82d2a09e9a6f2508c55a160031a4687887ffbe681f0ad7af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4a4dfe9bc30a5ae370a219ff8fb24bf3f6ebf96f34ebf06331a8bbb361eddc7
MD5 5084d84fc0bb0d4e7595214d86a40b65
BLAKE2b-256 91bc7942afdc77b9d866dc710a6105ab88d55e25f08bdaf1d859cc8eea8bc502

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ac024510d0dddfd6f17480c5dea80a5df445f835a13d59c874ea584b18ec4932
MD5 b96acf6bd1aa21fe7b1df0202cb2ae84
BLAKE2b-256 2d7d7e7f83c1ea12ff508d2c3879ba3c53a85fa08114ee9fe5aa39131efcaca8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 317.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.11.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6c4f95efec4e495aa6ee0d24e537cda2bc46a2e27d07051380731474bebc2693
MD5 e2f930453857795a53263311fa261653
BLAKE2b-256 b0175fc6d3bd9d15f980ef60bc6741d2bf8dc6f0e8a988de511a4989271f0b3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 361.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.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9391fb0f88e95392e7ce39020f62a84527c3496b29ec5e9232b3bcbd47c20c3f
MD5 abe945eae70beb100693e4e0e047691b
BLAKE2b-256 d464d2de77fa7c68ad53c2f8835b7b0ca57681e8252a01386723d030f42a04e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 323.2 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.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ff1efac9b525e95ed81e5306176fa1db8e5801f9bda8c37182fc09989f8ffec
MD5 e4da153e14a027f82b6e072857ae1207
BLAKE2b-256 7fdde9913d3a2ea9859b296e6fca481006c4ef8f9d44f27c134b2254c406d895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 174526ab1701b480500ee4e0d7d8364fbd773702e0be7650cbd25972a2918ede
MD5 059d7be679e92af23783ed8165639bce
BLAKE2b-256 ceb79c924916654e98563cf87810c1e5cb5d0193a0ea4c5a083497b60f4a4543

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a94a8175c173a35a2d8a561dcf6c1a8713234a4e828901a103c28e07a4d018dc
MD5 ad3c6445948796d2b5f9e246ea7177bf
BLAKE2b-256 d500c20390ac1dedd10f2ef5b2fff4a01cf0c2f75880398ecbfad366da1a6a7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.11.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.11.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.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b36bb8ba2bb2a97d607bd92dbda18eb0e10e505707b1627685e8086eb7996e5
MD5 57c1f1d292959dd8880587c3b6f473d0
BLAKE2b-256 9cd090c4452705c587ca01abe5930a1b5f435f95224c23e77a1ca3f23599e98d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3b8e4c8b68b662c3cf340ae68a04406533f50506e87fa9d7afa674bce0596143
MD5 586624854ea13066cf090cff2d812918
BLAKE2b-256 d9513b836015a4ac0f7d0e821d202002345733c48babd9dd38f9dcd466270c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 590cb83131e5aa937dd70b0abf9228b1f75c09cce65b4388c91a35f5c7612c5c
MD5 8f886d8ef6d2651f6d8277b31f596bae
BLAKE2b-256 d0e71fa41958507740539880926003d86af86c705f00f113aea5a04dece75d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 797f5223f6e36b46357183d97cd1bf98aea70a03c198cc4f0bfece6b43ec5ca6
MD5 f3d3f170716589806d196bb40d02cac8
BLAKE2b-256 022ba61cb57c0abb681091c4422f9a1cc1a37c2fe14e0006d6cc0dc5a2b2995f

See more details on using hashes here.

Provenance

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