Skip to main content

aiofastnet

Test status codecov Latest PyPI package version Downloads count CodSpeed

aiofastnet is a very efficient C/Cython drop-in reimplementation of asyncio's loop Transport/Protocol layer. You can use it with your current event loop (asyncio loops, uvloop, winloop, etc.) to improve overall networking performance.

There are multiple ways to enable aiofastnet; the simplest is to install it before calling asyncio.run().

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.

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

Speedup

Source: examples/benchmark.py

In these benchmarks, aiofastnet is up to 2.7x 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.

SSL Threaded Benchmark

TCP Threaded Benchmark

Source: examples/benchmark_threaded.py

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 not 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 on Linux.

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 directly and avoids extra memory copying and unnecessary Python plumbing in the data path.
  • Kernel TLS support on Linux. Enable native sendfile for SSL. aiohttp can send FileResponse more efficiently over secure 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.

For TLS connections, aiofastnet has two SSL engines:

  • Direct OpenSSL engine. Used when Python's _ssl module is dynamically linked against OpenSSL's libssl / libcrypto shared libraries. This is the case for pretty much any Python distribution: actions/setup-python, conda, pyenv, system Python, etc. Calls OpenSSL functions like SSL_read/SSL_write directly. It is the fastest path and allows to use KTLS.
  • Fallback SSL engine. Used when Python's _ssl module is statically linked against OpenSSL. This is the case for Python shipped with uv. The standard ssl module is used instead of direct OpenSSL calls. It does not support KTLS and is slower than the direct engine, but still significantly faster than asyncio's and uvloop's SSL transports.

You can check which engine aiofastnet uses with:

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

If this prints None, aiofastnet is using the fallback SSL engine. TCP and Unix-domain socket transports still use aiofastnet's native implementation.

If maximum TLS performance or KTLS support matters, do not use Python shipped with uv.

$ uv venv --no-managed-python --python python

Asyncio Compatibility

aiofastnet is a drop-in replacement and is expected to behave like the corresponding asyncio API, with one notable exception on the direct SSL path: aiofastnet implements its own SSL object, and transport.get_extra_info("ssl_object") returns it instead of ssl.SSLObject. When the fallback SSL engine is used, get_extra_info("ssl_object") returns the standard ssl.SSLObject.

For the direct SSL engine, the following public methods and attributes of SSLObject are absent:

  • do_handshake()
  • read()
  • write()
  • unwrap()
  • pending()
  • selected_npn_protocol()
  • verify_client_post_handshake()
  • session

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 a 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, which leads to huge CPU savings.

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

KTLS requires support from all of these layers:

  • The tls kernel module is loaded.
  • The direct SSL engine. KTLS does not work with uv Python.
  • 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 check if the direct SSL engine is used, aiofastnet should be able to find dynamic OpenSSL libraries:

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

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. Sometimes Python distributions ship their own OpenSSL libraries, 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.

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 outlined here.

Check out aiohttp_ktls_fileresponse.py and aiohttp_ws_speedup.py for 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!

Download files

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

Source Distribution

aiofastnet-1.0.5.tar.gz (698.4 kB view details)

Uploaded Source

Built Distributions

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

aiofastnet-1.0.5-cp315-cp315t-win_arm64.whl (488.2 kB view details)

Uploaded CPython 3.15tWindows ARM64

aiofastnet-1.0.5-cp315-cp315t-win_amd64.whl (561.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

aiofastnet-1.0.5-cp315-cp315t-win32.whl (495.5 kB view details)

Uploaded CPython 3.15tWindows x86

aiofastnet-1.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl (654.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp315-cp315t-musllinux_1_2_aarch64.whl (644.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (646.3 kB view details)

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

aiofastnet-1.0.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (634.4 kB view details)

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

aiofastnet-1.0.5-cp315-cp315t-macosx_11_0_arm64.whl (571.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

aiofastnet-1.0.5-cp315-cp315t-macosx_10_15_x86_64.whl (587.1 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

aiofastnet-1.0.5-cp315-cp315-win_arm64.whl (453.8 kB view details)

Uploaded CPython 3.15Windows ARM64

aiofastnet-1.0.5-cp315-cp315-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.15Windows x86-64

aiofastnet-1.0.5-cp315-cp315-win32.whl (448.2 kB view details)

Uploaded CPython 3.15Windows x86

aiofastnet-1.0.5-cp315-cp315-musllinux_1_2_x86_64.whl (635.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp315-cp315-musllinux_1_2_aarch64.whl (611.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (626.9 kB view details)

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

aiofastnet-1.0.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (602.1 kB view details)

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

aiofastnet-1.0.5-cp315-cp315-macosx_11_0_arm64.whl (534.5 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

aiofastnet-1.0.5-cp315-cp315-macosx_10_15_x86_64.whl (550.8 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

aiofastnet-1.0.5-cp314-cp314t-win_arm64.whl (488.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-1.0.5-cp314-cp314t-win_amd64.whl (561.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-1.0.5-cp314-cp314t-win32.whl (494.9 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-1.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (655.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl (645.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (648.1 kB view details)

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

aiofastnet-1.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (636.2 kB view details)

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

aiofastnet-1.0.5-cp314-cp314t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-1.0.5-cp314-cp314t-macosx_10_15_x86_64.whl (588.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-1.0.5-cp314-cp314-win_arm64.whl (453.9 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-1.0.5-cp314-cp314-win_amd64.whl (512.6 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-1.0.5-cp314-cp314-win32.whl (448.4 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-1.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (635.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp314-cp314-musllinux_1_2_aarch64.whl (611.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (626.9 kB view details)

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

aiofastnet-1.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (602.3 kB view details)

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

aiofastnet-1.0.5-cp314-cp314-macosx_11_0_arm64.whl (534.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-1.0.5-cp314-cp314-macosx_10_15_x86_64.whl (550.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-1.0.5-cp313-cp313-win_arm64.whl (439.4 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-1.0.5-cp313-cp313-win_amd64.whl (504.2 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-1.0.5-cp313-cp313-win32.whl (441.0 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-1.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (632.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (602.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (624.8 kB view details)

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

aiofastnet-1.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (592.5 kB view details)

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

aiofastnet-1.0.5-cp313-cp313-macosx_11_0_arm64.whl (532.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-1.0.5-cp313-cp313-macosx_10_13_x86_64.whl (550.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-1.0.5-cp312-cp312-win_arm64.whl (440.5 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-1.0.5-cp312-cp312-win_amd64.whl (506.3 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-1.0.5-cp312-cp312-win32.whl (442.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (637.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (605.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.0 kB view details)

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

aiofastnet-1.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (597.1 kB view details)

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

aiofastnet-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (536.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-1.0.5-cp312-cp312-macosx_10_13_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-1.0.5-cp311-cp311-win_arm64.whl (451.2 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-1.0.5-cp311-cp311-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-1.0.5-cp311-cp311-win32.whl (449.2 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (637.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (615.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.7 kB view details)

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

aiofastnet-1.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.1 kB view details)

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

aiofastnet-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (539.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl (552.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-1.0.5-cp310-cp310-win_arm64.whl (450.3 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-1.0.5-cp310-cp310-win_amd64.whl (506.4 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-1.0.5-cp310-cp310-win32.whl (450.0 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (637.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (615.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (630.1 kB view details)

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

aiofastnet-1.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (606.5 kB view details)

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

aiofastnet-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (540.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl (553.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-1.0.5-cp39-cp39-win_arm64.whl (452.1 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-1.0.5-cp39-cp39-win_amd64.whl (508.3 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-1.0.5-cp39-cp39-win32.whl (451.7 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (639.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (617.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-1.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (632.2 kB view details)

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

aiofastnet-1.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.5 kB view details)

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

aiofastnet-1.0.5-cp39-cp39-macosx_11_0_arm64.whl (542.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl (555.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: aiofastnet-1.0.5.tar.gz
  • Upload date:
  • Size: 698.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5.tar.gz
Algorithm Hash digest
SHA256 1296d2ed877a4bec0f0e6004479d0358421ae0ca6c9a288bfe5af1c12df80724
MD5 b0c13cc5f2b5ece72786cdcd74d3aeae
BLAKE2b-256 1a57acdaf655cb266393883a679eea5732d4adebe11c7476f760fbe2c7fb6bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5.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-1.0.5-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 488.2 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 73749419fd0e4a367c7baaa58385af0e031f09ab1caa8c369f042ba9849340f4
MD5 361021460e19964fd4d56a89e403938b
BLAKE2b-256 a607358e1766a500025c3f19238b2936c6739d39ed3921be45c6b3d89efd3fbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 561.0 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 25d630cfea48c44583293265da9e0c28de2af128d232dabef4f2422ae18f35df
MD5 5e5764a041cda76a5afdbcc05903e142
BLAKE2b-256 3b80c74ec57fd3964d89c81759509f854b75c7ad899e2d32f240af909903add8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-win32.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 495.5 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 c845de6d3f78b33083372a9d4f2ddabbec50bb02aaf0aa69837f824b17905aaf
MD5 4b6dc3ceb42a0479d0e876ad42a37ad3
BLAKE2b-256 ac5dd4051ee1f91c73f97f48d5797547df233949b9cc3a2a2c07d46b77769be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c915fc25a7057d41a6ba89d8f5c162e9954d91312f7a0f56738aad8fecdd8a89
MD5 eb74c46c98cc89d9b0fc1672fa195dcd
BLAKE2b-256 05038a6cebbf019542868718a8c4baba66632930e66d4ec734c250572848e9ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d4561510f90f9b5f4edc6c103c45a37575bb8cafde00d3de97b2c430c8bf25e
MD5 b969801cff8d3b70cede54f2c708f9e4
BLAKE2b-256 8b885690b86de27346a9b45fa37cfbc20f6524fa7494fd282b397f23a26cac66

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da1af34ccbc27cca5d76847351233fb837a9600b7e1764581aea962cffe51791
MD5 492434a26cf904cfe910630f96b6f32c
BLAKE2b-256 9c2bf39638f3ed929adf177dd6d81be8bf1e82313d613ae5ab55be8940592fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b950e23ad3d3923298ed2cb7f6debf2b50b7fed311ada46e4bd1729704fb1142
MD5 77604763a171b1ae1cd7f38dad100c09
BLAKE2b-256 366f29c12fef37241e99a5ef9a3d071ee781cc8242e28a0c106f9ecc381b7d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 302e4665b50dac38895398021f04a87d13666ae1d6ff98de016d419fa665be3b
MD5 fd98924788b008d276561ace90d0f247
BLAKE2b-256 0c2d5d0ca4220d8ceedcb7066c7a6998a92818635490cc4876fd2219497cd518

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7186373eb68081596f88a783c0eab92b83adbcdf1e3f0af6d05c7be500197c43
MD5 dd7b23b48b819dd82666d9c910242607
BLAKE2b-256 74bb03bed6ded3fc04e79038ee478faa90bc837ec49f5a306239558e7caaeebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315t-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-1.0.5-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 453.8 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 edd83d814c2bb1e7d6d9bc1f18d60c1c5f103f0d1f226af862e773356c03d863
MD5 51a17b7791782c05b24dd4946179494e
BLAKE2b-256 0f1f4cd6602a24b77986963f696472e59ed044e4d2a515921eedbc1bf7f0513f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 512.6 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 982160766e1c32950501d9dc86d525f0b36311a73929881db41adf304df89fce
MD5 ed5b0112c9912a1d49a3120606811466
BLAKE2b-256 0d5973f62ec8f639c80f4c98a274354df2b06c1006f66dc7bd84ac43029bd59c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-win32.whl.

File metadata

  • Download URL: aiofastnet-1.0.5-cp315-cp315-win32.whl
  • Upload date:
  • Size: 448.2 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 65016bbd9f487dc8af3db23e3856afc548b5f5122187f324b31b48f39ea9ad12
MD5 2a83ed6bade98aca826caab37db0fec0
BLAKE2b-256 419504ef7fdd47a0bbc9ad1cae22141692bda24b1684be5548aff5dd82d080d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a5fa46042357aa7be7d2b0c8ca6c68134db98665b792b244dc2f4c705d8f246
MD5 e341d8efd0cca0dbb849295bb76f4995
BLAKE2b-256 319fd0dfa8c279e858602b5d54daf2fdfb58f67830a21aa4645a86e90897e3aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9721e3dc1138597c94823188fd0d1c63e2c2f751b27c6c8f06c86b4e55f33502
MD5 acc687917f3494188e69cf714ab53018
BLAKE2b-256 18ac9b3cc358e33419ed5e70d1dc5119601b6138760c736344ef9169860638a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74ebcc94ff1495c9d29554982622a84b8eacec0e4c59b5fc78d7fa38ae59113b
MD5 e530bf353ca1cf2dd878d83364dd3d7d
BLAKE2b-256 311494bb2f4dfc81139c401681a81ac73caa7654b411521b32fda46cb741a345

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8144b8613f0a3380639497299226126f0ce9139493d10e4914d615ec8b90cb07
MD5 328ab44819eb35c2cc1411c01a8edabb
BLAKE2b-256 e68c2652cfd65f3f37d9ef5cdbada26943f01da5d0eeec890226b7eb52080a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d449ecf78347896b2642adb02436b83bc9ecaab217a59f468b507ade234cdbce
MD5 2020b79eea0e605e2ef7b0d0bd70f36f
BLAKE2b-256 85e2a8792c38f586dc7ae32a0364a5d8ef1652362832c2563f365a1d663ba803

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-cp315-cp315-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-1.0.5-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8c9a79967b99627d5db055aa0794fd141ef79133668f35a0122cf6092636d3a6
MD5 66de4afd8bd2b691c59b01938037bbd2
BLAKE2b-256 af5eff4b657942ba0e7b07fc972530cf603f9599eb1a019612557e2195395c48

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 488.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e202408f941e35d45b2c206b4b93c568334888210a229767db67bd60f1d3a63d
MD5 ad3bc3985fd5927c76b89bba76091b59
BLAKE2b-256 735212ef8c93c42b97388b919ac87f0d36d06230c5914bed1ce7e709b7575d22

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c0cd48f3495bac634055387fb3168edf54b2f91381040c31bfdae9426cdb0465
MD5 e3fa339ef970efd9d6683cb0ad79c60b
BLAKE2b-256 cae7142a846cad5b58db092ab3b8195aab49a1e914dfadc76ac2e7f04c3fcc3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 494.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a9ff41e7a2289497eb0d1aacf128e0fcce28415771ee216f07e0e9fa24284fa8
MD5 eec9956114f2a2cd6379a2d81592c1f9
BLAKE2b-256 1ae784af41509caaa9d17eb67b94bddd27093d61fbd1210f539c5bd4afaf7ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a572df64c6a1a1a38fe4a2115b3c11536f7e4053c5617d64c4d7977f94266bf
MD5 024751768a0a9dfaf41fa5a795fa9099
BLAKE2b-256 9cd3eec710b249b360f6dc882f3b064bcedd76f3d1f0fa324325bf4d781c0b4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61a4a116b150060a8dd48796fa93c7484371d362315e703b27d47177157f6b49
MD5 636aa7ad88ac74b5b0fdaa7716de9be4
BLAKE2b-256 ee0e7f2b3a739a35b996604e8e635ea3cae7e5f31d1fc21eff2b3cc3694c09a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b4b42e12ee424d866aa8760688fd6367630a1b3e7a8977f53491a6530b9f9b6a
MD5 f20b3e4ccf471bf847f9a971ac74cdd4
BLAKE2b-256 b0b5cb49daac245a267f9832c577045e1c06c0ca973655a9554a1f5038c043d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1caffacd13e7239e31ffec90894d2712eda3219971c7185a608cec0507852f8d
MD5 5854a848d07e7c7f7d9b8a8c902c7ab1
BLAKE2b-256 8d48bf6835f5d1d1c24512551d49f2d276100ba5c135a5c4c84ee5ee99ef6342

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d86ac2c7ea0fee5eb493a4f859d0ee1eb75b251e04181e3a23c74b4fef32c1e
MD5 25fe3be8b80d0d4d32978ed8266c0902
BLAKE2b-256 e2d658cec6bf9ecd3114940d751326d720ed4dfd48d8958595b223fb49611859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 424ab3cff475e6ab93e5adc5c6be9fe8d7f3220712cf3f4d53e928539afb6dd4
MD5 114464c22d77a8847c2eb43643be29d9
BLAKE2b-256 8c1348445385823a7732878071cbcf71c555f4be0eef69590a62e3ee0fbe4c4f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 453.9 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 039f6e146a1fcd3a29c11af6c4ee2c2bb449310d3a1b20c91963edd48ed1f7a4
MD5 ee6faffd16a6b1968c97ce4b2c0f0469
BLAKE2b-256 cba2e74db7449c903c6ba08628703471fb70d190e0101aeed62e3ee7b4cf8fe8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 512.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 25b0314dd0ba7799c5d9ee379797b0ef89df5b533e4a94faac003a324aeaf8d9
MD5 b13235d8eea3e7a88578484940651001
BLAKE2b-256 83e0baf34f59be838be0d775996c7877efc81784d77392254db3f66846b5605d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 448.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c444ba8aeaea3a991ba13a35246e327ee0deaea904ce2b817f2c1005c7a62b37
MD5 1f5cd31e20a2ce3731530619defcdf34
BLAKE2b-256 4ba242ebe4974e8c6d00fcbb661a4db3d6a4e7c06caf1d2ac4b5e3c4d3cc5dc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec72f59128ead56f887db964f247e1224225035622bd28a54e291e2d56d4b34d
MD5 f27096a649d68e339e50034f0b6eefe6
BLAKE2b-256 d5ffc9cef9b844d2d429ca13c32035baa0798b01c8458bc61f2e1875f913048f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b794f48733e5b065c751e462af42e34406d95636c192e935edfa0434099127e8
MD5 91abbe09674a05ab5748e2d58a21b4ee
BLAKE2b-256 69589d253e9f011c4875de2277f609349407df0c9ad93c05a86bded6d9b29649

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40139fac01b4001464b8e845c5d5d201e0ffb45811eb546d2760e8dcf23f96f6
MD5 0845bfed95a01d008da604f26479e5b1
BLAKE2b-256 54aa6d109133f19d13d84b20c69fb2bbb394099fc37aa182930061a6d8508213

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 412ac16c1c3f4d2217afc4e48723908d770376081a46f1b6a863033dfb696836
MD5 6e279e0dd3c1d4617c20f3fa7d249c90
BLAKE2b-256 c88cc795012781fae8831d3d9452b5c58e53a82770539a4ac7ee83f2dc5fca48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff1d6c5c3848d0dff615cbcf91a471a43cf32609333046be14c01013d4b19a27
MD5 6861fda5cfabff0b43d089406cf76e5c
BLAKE2b-256 32e184732e07e5dc3999599ee68aa0b3c2498dbb034c37503b7a32fcb9bd8fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dea6814c12c89d0436d57b27ba48f5758c50840afdd637cb5273cc9dad988d27
MD5 e33d63d816d7804594dd7cb54f35a15a
BLAKE2b-256 b92b3de48da6b45cfd7ce2d98828912ba3c0103139ec0d3d6530c4b238762faf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 439.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 23373f9a731943675d0d96abdd5ea734466fbba8741355a62bcabbfcde00e88b
MD5 4971b1746dfc4717c479ef4404950055
BLAKE2b-256 f7557c22bb4aa7313bd3e0edacdcac8ff24597b6f5328f42e8e31491f5dbc83e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 504.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 65053875f41bf60b78f796fbc56b85812819eab5ce59e7560795f104a580aaec
MD5 7dd75138a70699c86400872d10bc5f94
BLAKE2b-256 08d429ca83172f9214fc50e2e77bf9b6f93d7399f4efdf3c45c30ab448652101

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 441.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4e139776120ceffc0be0c72c5e1735e071d74a24bc0ca6e60b5e7a33eb29d5f7
MD5 ebec0a8ac1006310dc47a5a3547eee33
BLAKE2b-256 320a2ce28623a263d7c9f826d6ea68e4e081bd8ea8967d2bbf75cb5a901b2de5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ec000991da36d5251ea4f1aebb55842bd55e6252cbc3c850c9062007a13b330a
MD5 2a9af443433dbd3656290507322ccf5a
BLAKE2b-256 5c4b2cfa0860d14c7d8c5644e47080c238ba49d27c5db12949c35843ecd8ad39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad1897a6c46e4dc850010ff6357461fd08b989caed111bcb29f734ad2c107fba
MD5 628cdde93cabab7b5fabce3a2cfacfbb
BLAKE2b-256 77b1d83958383917ba60040b1a2f7df75b084b5b06dba59dcdebe0429e051f9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff9c9dd1a85958ea91cbe1dfb1e9c96ddf50bfec6cfa9464738b4b3d3b4e3edd
MD5 efd0f0fe4c6214895e2ce061724ca1d7
BLAKE2b-256 49849dc7ba4ed2116b49ef055979f303954a328164e4f3f1dff60b698ffa6fb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 086ca837a9d46e9210916e85cfc6ecbbf5181c2fbc7fec12d4a147b41b997ae7
MD5 542d05b0551381ebe6b721d5cd059801
BLAKE2b-256 e1ab8cf10de7240cbc01087983fed3d6a2d488f19fec13ed810ccaaf8fbe60dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da78c83d2be5c10b7ac641eb9fbef44cb2cadd1fdf845c031c3a04f5a155c323
MD5 358f39f8a2ddf026ed720e92713e7c6e
BLAKE2b-256 b9b8a5f23063c59fcd4d79c458e9e1da70517be5065dc8d8738f37fc941cd255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7b444f36b8fe66edf983312477ba4a3d40217649ddb251276596279be9f2c3c7
MD5 235fb0198ee6df1dae23f39b93970536
BLAKE2b-256 6def02a897d7de1647911feef6e463a0b28531a6bc5b9eb9e5d100b790eecad9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 440.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b7be2b52876cbdf42cc44184c7d1d4fedc0ca01e08856d17df4a03795f3e8e5e
MD5 06424f48a63fd3d22b40c37360009c95
BLAKE2b-256 fe9df1c4aaa5df5e7ec69f42b93a27476c8663eab72b6045ddad49d508e79d30

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 506.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 95c641193613a48538d8dfdd425928d2b2572ba829a0cffce26f6a59d6c77856
MD5 c804c761c55cbd869138afc3e5ece975
BLAKE2b-256 eb7480d9722eb76a5ece3f97f1554e32dbd0028b078b89d2893f867a3ec42c69

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 442.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d03a032704c10e6458d6c958c83c6c75c80c9c2540acdcf108880a855e121b9f
MD5 afa757c9542f2ba79d48fd7f1696b4e5
BLAKE2b-256 f8d405e64bc26c7815c15eb7f3655bc609876bc9cd59809e7d5d1ec2c36503de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10628f12471a16816bec01cda7e2b2ac7a2141c270c892961f0e7828d5401ccd
MD5 88ab71682c1f02be4b2b9e2b9c698393
BLAKE2b-256 38d2e5af8ecf22585a72cf5eade90010e1702d23b4999ad28dfaf509fdd48f82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28dee20e13b555c059d232f24ce584e4f8046683c22b36a1f06cf95af131ba2c
MD5 ab324ba9a35512a85565b75a280cc661
BLAKE2b-256 8815835bd26bdaa5ee89dee99c4b49f3b32eb37b2bfced7eccf992f40d5ca01f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dab3954c388641e5189cb5308592c3de79fd8488e7ffbeeb695029eb01db417b
MD5 dd82ce1271c3f8bf45435830eb2b21f0
BLAKE2b-256 1d19347a109b8d67de177919d369555fdfccda62a5afd6440b6809ae3c32c7de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35076e09b0be87921903e3de614b0f692c0dfa3ced29fd6e712c374f8127ccef
MD5 3818434a0b0d6a999c0eb07a9ab08c2a
BLAKE2b-256 1ec423ef4eb2629a60956c8b058390abf6ad9d81e84f4df1a6718b8c2133d7e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 825629d4f78ee06ec28f65d997c73601339fd6b4985ee1cf42e622975b0945e3
MD5 4398bdebb82523861f68d3feb0c62ad1
BLAKE2b-256 0e4e93298cb9fb4e24d6715db6a2fed51833b17e4543bca38e8d88c93d1d91cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 78d672fba49929ac3bddd0d551f6a55fcfe3a017dbbbb3c2d03c1b93fa079393
MD5 933036ffe00a8cb911ccdbf72f142890
BLAKE2b-256 0fbfde159d8d1034e730fa30d9cb6fb4ede4c6cea5ff97385619e8d68f46ed75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 451.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 31c551b40f27af63d16a13daa9e732842dd1f812facb238327c372aad5c8c912
MD5 29b32e2d9055cf6a2cdccaaad5bb425b
BLAKE2b-256 2c5ac093b09a91f20f79b36ea508225d067a1e39ce726746b7ddf2e887506df9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 510.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 374638f8537d644f42d6f613e0593fef20cef95563b571d1f7abbc9e56d83ab6
MD5 3bc69db11e75fec80c60e95380352e6d
BLAKE2b-256 4e43bcbbb4402e69be3cb1f3e14401146371745f54c2229c0a9061fa3645a94b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 449.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7eeb7d8c7b7d74dd03ba844e8f9e189a1fc2c7b0e251a54d557fb1e9933b73ff
MD5 7c496ec9af738c19fd6fd0d9326a3ff8
BLAKE2b-256 d1202d5073051611ea9d642a4b310e7132e7ca848021083143701b801c84df06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c52fff56429195e0c629c19aaf87f51fdc18ff8a36e00c5b5f914a80071fc3e
MD5 cde7dade5215e350002acfa545dd6e58
BLAKE2b-256 835f12040fdd4e0d117b67b667b3b721bb37855a9b6361d1784714d682936580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2b45a0ba79fdf5bb33d59fe501fd17d295784f15cca7ed5475e3354b1cfb3c1
MD5 cda57ebc4b693806d5e44f0e217a354b
BLAKE2b-256 3f24f43e2174e9821e09a19cf456cc0d9041dc7e1ff09a1a0cfed025bdddcbb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64543a1d526b6c8d71fb422e309f0f264f261d1a4487f8344f7d54e3616aef55
MD5 7b6756e43aaeb2c2e39db1a83b4b8908
BLAKE2b-256 52e630f9e786ae7a1b8a6ee2ef65f811d284714e3ede972261eb3ad7798788b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 caf2bba42ed15055479714310af49a4e919168e0d6175e972c0d693b80a3c458
MD5 1134789f30cf1531b4b4e973e9909145
BLAKE2b-256 0a1979e874701d9f77a75f21249073837ef075a2fcc91b7be1c7ada4faf4f78c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1ecb53e023169f06a26bb4d3994e786c527af6435ba248d286368f7b5df6d36
MD5 3703fe5d08370e4ed054620ceb0dd69c
BLAKE2b-256 292bffa55f12961b05f267f8d5623366015d2abb8689e5ef9e5d3eaf95c45831

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e00c90c0a3c1a2fe3ef9421b4147d9bf92e7dbd4546a77860a79c8f53b8ad2de
MD5 aeae48b3a012c8fd583b59a814563d25
BLAKE2b-256 9694eddcb0699936b15ae037100f9b63d5013d2d3240204947924b4fc731218e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 450.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e4c431c560431c164517262cfe2c2b1799480f95d62f6f3de86f4373d63e38cc
MD5 24f159bd164a478c8f257161da9ea657
BLAKE2b-256 092402a452fbb7b19ed8da5fb1c0ac6411a19754822cdb56a4474932b04d4596

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 506.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c06d670416875fa7968789a46fab81e4e3d8887cbaf8ea3a09c16495e2979b80
MD5 40a3e22205234db71c5b46490cae21fa
BLAKE2b-256 f9fff32679a991f9b2a720b198e1bcf7d0312f7cfaafed775cfc9d5bddac13fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 450.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6b777bf952635b8df4f76bc2c9af7dc6a8649c5cc175e72cc453a7e95e2c637d
MD5 c418d291523dacb4702b13e94b96d1db
BLAKE2b-256 abd9d132209a7016041e314e6b356f2157c4ddd2d55eb474dfb1fc940b989006

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d6fb4598e4a64a5cd8c3754a69ee89178abfca728aabf5313df87238e7da80e
MD5 16f3e319ba5e3c8261f27cecdb6c23e0
BLAKE2b-256 87c72a96bf81fcd5bb1f0f7899a0f8df87884b63831e27c45285bb2539193b01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d67abf4aff237af83eca630808d65dfa45ec7216a9e08435bfad4d64b3c953e
MD5 a12df58937cc7762ad9001ee447178a9
BLAKE2b-256 52e0222580c16abad52033839f5412d3d6b8f686556c589dd43fedb579ece4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 350c548f3741046384a018044ad7f99a6dc31525f4c3ba4f9bbb09ba8876906e
MD5 5eec2cfd4c04e0e6cd8bbecd71074cbe
BLAKE2b-256 fc6abbde00b8e9db650afe5f3fc7ec4b8495d1fef5d81487e482a8af3fed0699

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2af0707e03a57dd6a79a5eece57063104877694a3131474781bf3928595fc25
MD5 95f246018857f3528b02f885f5cb0d95
BLAKE2b-256 a1ecaa076a1bd9c23a8663b849069d0dc38ff43312ebbe844efb20ee04ad884f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68277cad7dcf6df45c25d8eb0ffa7f815805abffdb82b5ff967341539b8fb8d7
MD5 e84255ff7198804c352cdf8a1bee691c
BLAKE2b-256 cb6d7c978f8d72e983fe7c52b5bbb3cd60c22ee1fbb6dc3a2e5899fc02bf0697

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4876dff6452efce9ba8180452f66ea00bd387e0290e6153a540a4ae38e6d8d7
MD5 cce1c6431c68f122f23d17e8a7d364f7
BLAKE2b-256 4b5823666ac5109c3178bcf3b84ff5cc66dcbb8d434b0ab3b85255f0eb529733

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 452.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6f5a3aabdfed60df20253cf3dc26dfe230096dc58e5034d231906f23e6f19796
MD5 bea41e191944e8b00560115baaac10bd
BLAKE2b-256 9c1adab91c0d983b19f16c5515bf399d29472333af800229cffb315403eec282

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 508.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 36aaf7212e7daab48300450f37ce9f6674716da23376f360c2452a53c47bf892
MD5 be0ee613c6777a5aef0a59e65a163ae8
BLAKE2b-256 ae3c72ec2f97d5a88f9a37d72203b489ce2be9d20ba18b899d4a4b0663808f43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-1.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 451.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5c9534ab4115a9fd458820a551d9c02ff531ac820da5661cac6d4cafa196742d
MD5 d4247e66083a319846815d82a9070a62
BLAKE2b-256 f120e66cf21c99301a67c99c7ff32d8d38210bcf368e86aa2728862854fa02d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1273d34931fa5292e3053233f172044226e4493cd8f549244f9151e75defa5af
MD5 fafe0bfda48a71c64a48fd3a7a138f0e
BLAKE2b-256 b97ab0e7b9cc273e0dc4a871ac8c901d203f95fa1886dbc357350650e4f1318a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c62381cba78afc307b0244c3fce13ebf6676381e3f25b7308247b75357fb374
MD5 45e3db64270e41d0a10294816877a3ac
BLAKE2b-256 472f4e7763b1b4d6ae1396aef07c6b14c844d31c9409f90bce60ba0ee92ba04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-1.0.5-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-1.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07e4dc7e4f3723e94f544beb923048aebb6e732d2b2553c9f14a371080b0c61b
MD5 6aa4d69f17b5bb785a9cb1e98d2b5011
BLAKE2b-256 4b242a532a85b8c74cb1e83d9449a6f7d6d813d429155a5d1c18b96e6d93a412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4d05ce639a72d0cc4d620d6759f160e735fd2bed851ba2d9b12281b63383314
MD5 8391b367616efb3dec8c0fc739a872dc
BLAKE2b-256 27fc895ad99d45480c2f40948c245baeeaa3614ca22d3ff3c451cc01f5c3fe4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 625a62b26ff47e0174e1121c44f33bea335a8ac87212a55ea9ce38efe3b66a34
MD5 18f533c389386642c1e324edf4a2727f
BLAKE2b-256 ca0a47a42d65ed6b606992d2b4f5e6d08f259c016db413c287245197b3b0842a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35a6be12b8def22160345ffd0478febedf255bc357da23c4b79dd74512819219
MD5 1d04a14fde68c116b8009065834d07f0
BLAKE2b-256 a35aedbd906440a2be31fdd4f7b4ba83ba40dca1f38def2fc7a83932954bd3fa

See more details on using hashes here.

Provenance

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