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.
  • Fills gaps in loop APIs. Calling aiofastnet APIs directly can provide networking operations that an event loop or older Python version does not implement. For example, uvloop exposes sock_sendto(), sock_recvfrom(), and sock_recvfrom_into(), but those methods raise NotImplementedError; aiofastnet provides working implementations.
  • 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!

Release files for aiofastnet 1.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for aiofastnet 1.1.0
File Size Uploaded
aiofastnet-1.1.0.tar.gz 703.7 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for aiofastnet 1.1.0
File
aiofastnet-1.1.0-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
aiofastnet-1.1.0-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
aiofastnet-1.1.0-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
aiofastnet-1.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315t-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64 Details
aiofastnet-1.1.0-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
aiofastnet-1.1.0-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
aiofastnet-1.1.0-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
aiofastnet-1.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
aiofastnet-1.1.0-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
aiofastnet-1.1.0-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
aiofastnet-1.1.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
aiofastnet-1.1.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aiofastnet-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
aiofastnet-1.1.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
aiofastnet-1.1.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
aiofastnet-1.1.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aiofastnet-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aiofastnet-1.1.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
aiofastnet-1.1.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
aiofastnet-1.1.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
aiofastnet-1.1.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
aiofastnet-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aiofastnet-1.1.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
aiofastnet-1.1.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
aiofastnet-1.1.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
aiofastnet-1.1.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aiofastnet-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aiofastnet-1.1.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
aiofastnet-1.1.0-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
aiofastnet-1.1.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
aiofastnet-1.1.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
aiofastnet-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
aiofastnet-1.1.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
aiofastnet-1.1.0-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
aiofastnet-1.1.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
aiofastnet-1.1.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
aiofastnet-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
aiofastnet-1.1.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
aiofastnet-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 46.6 MB

Release files / aiofastnet-1.1.0.tar.gz

Download URL aiofastnet-1.1.0.tar.gz
Size 703.7 kB
Tags Source
SHA-256 checksum
How to use checksums
beb71c7ccd5869adc124adcca812ac0bb43d71079d21d5c9122f3dad5102efe9
BLAKE2b-256 checksum
How to use checksums
e57ad96dd599600a8190f91e5b969c8c254e3638974d18e28169629c28857d51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-win_arm64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-win_arm64.whl
Size 493.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
f2fa4eca8fd22e41ac2e985f8abc4a9b8ae8c58ad91a051f68221d9cf801f169
BLAKE2b-256 checksum
How to use checksums
b7ff2e0d08810b0b2a3d12943bccbbd43b5535bcae5535e8e1c606ce51594d01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-win_amd64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-win_amd64.whl
Size 566.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ca2a11cf7160a7e6eb443fea64ddccb73c120b1e93512110e94b0d9aadeb0b1e
BLAKE2b-256 checksum
How to use checksums
40788da93ad8d474224d7118348471263f4292b1a34d2ab14188bdd8428f23e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-win32.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-win32.whl
Size 500.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
a0e68a1996590e181c7fddf4e1f41ff81521313056b888cc7a42c2855d499257
BLAKE2b-256 checksum
How to use checksums
7c9c77a8b9438e0ae8bed88683472653542c2f734e4deeab26074d51a2d9cc74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 660.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d7b87024bf3c38558f2017de0bc4e4ade7b30f2ca484173229ad00cb4a9f383a
BLAKE2b-256 checksum
How to use checksums
01a1864f99c816e5445a857b8aa982ab71b8a39a8b3e5e027337f8aa06e12ce0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 650.4 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8d0cd597a71b3821a3d324ce47b59dd8637dfdc6ddf3d1412cfcfc8229449ccf
BLAKE2b-256 checksum
How to use checksums
5e7b8f3d4b140a7043a9b4f383cb3fae290ae2b42dd4a66062b5b5f22f013bbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 652.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
903e51e376df1fdea6d8faa556b21c3b7508b16a1bba30219bdb8bed3b68fede
BLAKE2b-256 checksum
How to use checksums
68818574e83f0bfc1e18eb2a32851a5e6916c05c210840cada81eda4935a7e6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 640.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
ca61dccc8d045d1dbec3aa89b78606097f29af0d9ff83aa8f3668eeba219505f
BLAKE2b-256 checksum
How to use checksums
1fd516b2097a617f192d225f022f1ba7e507d631d6e922c1a4745f785d1ab96d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-macosx_11_0_arm64.whl
Size 577.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cb66dcdcc02b8d5f4e22e2872ef150e08e62e34d308592d1cb4e934ec1f2b31d
BLAKE2b-256 checksum
How to use checksums
285e0eb8a6ac8e9e4fdee9f974a4981077b056d00082103c1f34b8fa347f5578
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315t-macosx_10_15_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315t-macosx_10_15_x86_64.whl
Size 594.1 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
4523148f9d44c84bbc3eaf234ffd7a975e45912ba9623a1e205223fb8275d4b3
BLAKE2b-256 checksum
How to use checksums
bc5a44e26f56c33fa151d5e53ff57b332e54ad51a200dc4ea204f43a841508fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-win_arm64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-win_arm64.whl
Size 459.4 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
20d8df291d6f1696447df411b0a775a7021cd0126664a283c1d0cc93b7f392b4
BLAKE2b-256 checksum
How to use checksums
2378786894a4b8e19b7abee851c533d998df3a3c3fc4b2f0879f848fdcae1bc7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-win_amd64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-win_amd64.whl
Size 518.2 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
dd08867bcf29c5905f597085750da5927f1feb6b5d04aa70986f37fa972f7e1e
BLAKE2b-256 checksum
How to use checksums
90f1977132ebb0a6d29699546cd28cd22d38fb7a25456599b9b32e9739f8cc03
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-win32.whl

Download URL aiofastnet-1.1.0-cp315-cp315-win32.whl
Size 453.6 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
dca9b40cea47a766f4da436d781878fb563eace493c0542d1f72f3821870521a
BLAKE2b-256 checksum
How to use checksums
ecd58a96ada92dc5e677b2c1a75863db0f0098238fc4ce772a3fb248c560c0fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_x86_64.whl
Size 642.4 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7a0aabb8faa33d3b9021176981defc6092d7861d1f60704c986533a7e95446eb
BLAKE2b-256 checksum
How to use checksums
59a4b2ad161458ea4e67a94372d607735be530560a47393363e52fab4d53a662
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-musllinux_1_2_aarch64.whl
Size 618.8 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a3693141c58412cb57e546c105c5e97954bfa25f230213623f5a4220ca87a155
BLAKE2b-256 checksum
How to use checksums
5256a9ff6638cdff5988c36d6cbdf0675fcc9711d4da0189d636d71572cc718c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 633.9 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
dced05b623b0ae12df68f43cdcfbf7ffe5fce9503e71bf13be1a744b311200eb
BLAKE2b-256 checksum
How to use checksums
0fb3ecbbd5d1b4e9840d635ce14c91b1dcb64cf68e2dcbda23247e1ad98d020e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 609.2 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
7bbcc7ca9c70b5b7c77c4e4b3007af0f0aba8589c2c91ba43f1aed4c27691561
BLAKE2b-256 checksum
How to use checksums
c1477086f9fc5076032e5d918a324403bddbd8f687011ad3f8199fe5655fed59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-macosx_11_0_arm64.whl
Size 540.4 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
673195a6a5bb293154f07924f8390c24cbc6e322e7736f63914036fe3f03be2c
BLAKE2b-256 checksum
How to use checksums
c7b8ed83df438f026216a89cf2991b68d392d67db321de81666c7fec81e06136
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp315-cp315-macosx_10_15_x86_64.whl

Download URL aiofastnet-1.1.0-cp315-cp315-macosx_10_15_x86_64.whl
Size 557.0 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f184e3447062cf8ef38279a1e7748160c68e594992b9ea7ed57921a552449023
BLAKE2b-256 checksum
How to use checksums
a4f958824c793faf5d9cf41ee015bf8ef2ec9277d6b29c77f02ec7ad1e536197
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-win_arm64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-win_arm64.whl
Size 494.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
26d4b2bb5d22c45e23cd84c1d99d6f5affaaa9c6b2bb5f448af5bc5c3be258b9
BLAKE2b-256 checksum
How to use checksums
eb52689e4c7d16d2538af8cbdc4bf707f2754aaad2aafa9161aca1fea65b084b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-win_amd64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-win_amd64.whl
Size 567.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ed0d170cfdd64682c7af20d06ec2f4d8cc4da94a5bb495a2416c37e7118785b2
BLAKE2b-256 checksum
How to use checksums
6cd40be218f1d01f88b934aac9416490a955a3c5a9e16818e57e99bf3f8e2523
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-win32.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-win32.whl
Size 500.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
3ab83e1e77ad0f9071c740a22b0ecf5838bd470c57502c3901ffc38c5f7ba525
BLAKE2b-256 checksum
How to use checksums
6907f8dedbda216e20639dbd3d621c06bb6e0cd576ee5cf277ef37f308843c73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 662.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
943d6d70c1e9da2f01a5399d09b1a05422f592a95a0a2de113c4eb69fee65ce3
BLAKE2b-256 checksum
How to use checksums
022937e3d0b807404d3b33608c72a9140d958e901e5bb41c22074cd1b75452ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 652.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6f9a9a987fac9a888d1fc05e5b2fee8ff6ae0a795041653d8f509068aeca9a1f
BLAKE2b-256 checksum
How to use checksums
f2d27aadbab9fb94a90a7e9b85ea402c04e95dddd144a567e0e3f07cdd9e870b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 654.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
895e20a2ffa1d7c1db383bace427a23cf614c5023908a9d0e4bf1b97b5025dbb
BLAKE2b-256 checksum
How to use checksums
16d15608a95270ac6eed42bf38cbcf18902bdda380820eac55b93a14796c680a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 642.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
4acdef30a65adb2458e7e0b5f72435bcba545bcf2936e3933893f464bc2782b0
BLAKE2b-256 checksum
How to use checksums
6134bea43d8f39b564c5a8871212624c4c52c9b827db3503e9d0b53e093e1924
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 578.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a69919b84d8db94b5d9c7f799cb37ac7d1b128083419ad170c5203c07c4ff89a
BLAKE2b-256 checksum
How to use checksums
92e73362cbb0ae01a165d8cd66d3db95bb5f58a30aec582b07955096ec2a50fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Size 595.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
a9d4ef20a08b39230090c7273bda5a93600e665f56641af93a38205fdc24f856
BLAKE2b-256 checksum
How to use checksums
099f6276697a49e68be436d8987f4697dfd87feb1dd9de0720b9925d54858471
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-win_arm64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-win_arm64.whl
Size 459.4 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
3d27ca8a0b157e9876c079d8e67c19f4ce4d04272d0f81aa1d2fb6313c598012
BLAKE2b-256 checksum
How to use checksums
5024ea11cbc9eac29af04077c82d5716d6d9ad0189f0a42308dadae1da38c3b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-win_amd64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-win_amd64.whl
Size 518.3 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
7ad9b4d78512b8de041c77f90646f284aa3871dc5ba3fa97ca5e24ec6232490d
BLAKE2b-256 checksum
How to use checksums
5fe4d8e6125d1131b6759d9625d5efeb9669a290b98449b38ad83795e41ba533
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-win32.whl

Download URL aiofastnet-1.1.0-cp314-cp314-win32.whl
Size 453.8 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
2c5a95c9588ba433c332df4e95ab0835f6a7c2d38b197d4b92bf612bef02ae05
BLAKE2b-256 checksum
How to use checksums
2e8ad75d8a8a8698ac0d65bb39d57578de0da79052c6540a9daadb2b645e202c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 642.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
50d3c389721e7f5bb0eefd003d9ed699d2e16ec0bafe332e88c8289c66ef12de
BLAKE2b-256 checksum
How to use checksums
c6fb7d53631aa97c2fc2b9c66cc747940a797201c68cebcfdda343ccca755630
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Size 618.7 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
42a4aacd48847134624870b12dc17255710c490ac01ca5326733fa08fd02c72a
BLAKE2b-256 checksum
How to use checksums
78a56b260336870b2b565f2b34068102fc7258fb30ce0a93a372b0461913cb2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 634.0 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
39a9c8bd5e5b3decbb17401e33dc4bca5d709c891a3dce77dd6d2d360adef34f
BLAKE2b-256 checksum
How to use checksums
dd81be35fa32f60bd8517523ae005c7b5077590293ca81086d2e8cbfcdb0ecd2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 609.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0224b372d180234acbd20b9a48d1c99604724585ebcdc36bfc4abf23218b883d
BLAKE2b-256 checksum
How to use checksums
f6f110a9800138231f936a04db60691c4a6cb2374444c7d646d5c00b91f2a0f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Size 540.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9ba71c988c5aa2b130c5bd1291f0062fdec41b6a75727016cf137bb60ffb9e2d
BLAKE2b-256 checksum
How to use checksums
3c00d0fe764316b4982c2cbc86ba394a6281640a7d065661d4e8cbcaf9aa1013
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL aiofastnet-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 557.1 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
aac260cac3128f193a98384f3f3cb4f0cc222071291243563efb97ff49e52a00
BLAKE2b-256 checksum
How to use checksums
70a79c3c7b296c13cc4089e159bc629faea7c6ca16c30609a5f60d47d5078bfc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-win_arm64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-win_arm64.whl
Size 444.9 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
04856b759bdf323a9aa55077ca15dc77e92953957cd4d7af84bc4d197932839f
BLAKE2b-256 checksum
How to use checksums
dcda09a5f9d335564f84a7f5794fe4304359ca7154232d6fd63250ed1cf9b7cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-win_amd64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-win_amd64.whl
Size 509.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
a1444bf5c2b75d76f42743b8b8bdedf13d9736237697a599f15fc972d00a8a3a
BLAKE2b-256 checksum
How to use checksums
a76dcc37dcdf7411dd771ff510f46fb6e61ae4d24f82c8a743c42f91928591b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-win32.whl

Download URL aiofastnet-1.1.0-cp313-cp313-win32.whl
Size 446.4 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
3ab99088e6c13a4e74fe2407da94005fe883a6bcc269a334943125f93eac5abd
BLAKE2b-256 checksum
How to use checksums
849797429a494764c8e2ebed6f29765830295db99066aac4c48d467dad22f820
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 639.8 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
aad7c7991579acea5e32ef977aecc3b0b2e8e0441a82c2cfff3923a2df5e7066
BLAKE2b-256 checksum
How to use checksums
56ebe749b1e584f2019fa3ee257103743627ca8ecb2fe786ae9a09cc111d124e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 609.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
708c145c4ac46e2e316a4575bec9cc58c0c3a2ea13782e0d7fd774867698902c
BLAKE2b-256 checksum
How to use checksums
01f97829bcfd19a20c36abdc33feb72ff101346efbb44da57ff7560fa5d6d9e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 632.3 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c822c70ba4f22689de6e2dac2fd448b15a5ed50af9b31215f48dfb329a4038a5
BLAKE2b-256 checksum
How to use checksums
38e5860cf03d016648da6e7699ea37ada0c857a1acfb9ef96d62fe6bbd67b9eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 599.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
bc83bd831b3a5c951f30c23d8fd3a9f1fc7e2955a2913889c937609dbdd9a8ff
BLAKE2b-256 checksum
How to use checksums
3172e96e7248787dec4907148f577aec9a105b24e7ff718cecbad0fcc59e4b53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Size 538.0 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a6df49f4e64b156879387ca97d2f7596cee5f4f5c2238023947b8c1a16765c4c
BLAKE2b-256 checksum
How to use checksums
7e81f06f74a3ffb90255edeb427437c7e277e6096e547709995644238090585f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL aiofastnet-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 556.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
cb8535e4505d226bdabaf227162a3f3f9361b2103ec8acbf2f94681f3c0b0241
BLAKE2b-256 checksum
How to use checksums
e74b3f3a1a1d1cc99af4039479731c978014af9746d9810f08576e72a5d34a5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-win_arm64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-win_arm64.whl
Size 446.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
0c8375660b6dde98b5aae825a529e13b0fd791604559a1e32bdfb71ef257a1c7
BLAKE2b-256 checksum
How to use checksums
2573ed6f64885a82b0578beaefc87cd804f3314bac2733dc322e3323872f96e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-win_amd64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-win_amd64.whl
Size 511.6 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7efe50c710a5cecec938bfdc52c9ff2817ff88a4a65663b593174a2338757d54
BLAKE2b-256 checksum
How to use checksums
88621023882320413de4d80df1c98545ce3c51ef4c4fe6088329b2a5bf302e80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-win32.whl

Download URL aiofastnet-1.1.0-cp312-cp312-win32.whl
Size 447.5 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
acdc501980895a94807053a0f527d26539f2149bcdf11a2533348319c9ce523b
BLAKE2b-256 checksum
How to use checksums
b596cc8ad380ae66a5b9339a251102692b721f99b608ee1a84c77233188e81e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 644.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
85e75695ad4fe29f76d60f5ee1c9ed1c9c3dde7f5fe892980b7c5256864ebaa7
BLAKE2b-256 checksum
How to use checksums
391c8de064fac2199b67cdb445c3fcbadb9dd673b0f67e4f86ad8928f8b5ca53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 613.0 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
53e335cd0e222589be418cb105994a6ea873e7b8d31533d348da20e467b558f6
BLAKE2b-256 checksum
How to use checksums
3865620659027182ef3ae376fde587bc26e94b4d9140fcf6902985dbc36e236f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 637.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a9c69ef2482e7b5b458a2be236f6a02215bfcd39735532fe9d569286288ed3eb
BLAKE2b-256 checksum
How to use checksums
652b0bcec169ff0c1511952225cd8bb7a411a9d6f7f946e13c68bfb371123edf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 604.0 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
76f9b7c0bde0a01fd023e055399e45cdb67fa1fe437552a2032424dcfefe46a5
BLAKE2b-256 checksum
How to use checksums
16a78c4375703d218ab163572582e0fc42560c56ba0ed72f27c8ce91e1430a42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Size 542.4 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1d3228d9b263df9a1a6f4b9cd5a3b0c49ffbaab0ba7456fd1a57a9ab5f9532c2
BLAKE2b-256 checksum
How to use checksums
9c71be9503aefb95ea1930a3f7284022b99c2bc9e177fe2b45725a3beb3cb31e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL aiofastnet-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 560.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
7e252e4da947a90d45862336c37a2e0be67df83aeddea1c607cfca16077ead80
BLAKE2b-256 checksum
How to use checksums
06f625f521dfbde362317010b9a8eea72a67b3050fff9b7f952f021a8be5ad6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-win_arm64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-win_arm64.whl
Size 456.7 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
a5b43499e51b62ea78852e331374eea6c985d212163bdbda08046bc88dc36540
BLAKE2b-256 checksum
How to use checksums
7a0b615d686067249b17fa57a7a6ccf56da21230d7fec03fd370182384b352c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-win_amd64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-win_amd64.whl
Size 516.3 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
8a2a50c316ccd926263bdf251b20992cd9e2b019a75ea1fa53e74c4d22de3e20
BLAKE2b-256 checksum
How to use checksums
ba694158f45351ef6a3c113fe6197e48084ee481967211ce621e5fb35b3f1a3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-win32.whl

Download URL aiofastnet-1.1.0-cp311-cp311-win32.whl
Size 454.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
82ad6fd4b7d513825e5792eafeb50fc39cd72b5627f366bfb7313b56b7bf6f73
BLAKE2b-256 checksum
How to use checksums
e09acc4a3880a4be89bf2602cbd098991128e354645b942f6afa9f0b1c74ff81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 644.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
288e7c81ac4d1ce026bdb384b0abfc438f5e93bcb469707840bbb4cf1e5803dd
BLAKE2b-256 checksum
How to use checksums
88dd0ca246d80dd446c2d3bca60aa677a89f46a12ecb9e75b5cd85c11f8d8b59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 622.7 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e8afe85be634afa09e84d0cff28f9967588067e74e8fcb43394f76de1266003e
BLAKE2b-256 checksum
How to use checksums
192f01e628ef3712f61dc29cc6f176dcb976a2ae8215f0bab4f42b3d333e4039
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 637.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7bd736025c6e681a48df00d54ec1504d53791bdc7173f6775a200d2f025a4575
BLAKE2b-256 checksum
How to use checksums
4fdc841699560d8353225ddf7b53b750b4bc94e843afdf80cef76c58cac28ee8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 612.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
91ea553293db26969c44d7d7b5b944cb3f0d9c4d6617929f05fa663977dfc1a1
BLAKE2b-256 checksum
How to use checksums
dd886a336937ab05355d024f344ea729f119d494dcc4fabfb27857123953d80b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Size 545.2 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
aa220280f3579188681ce7feada982bc12c7e9688d5983494c5ce9fa94ad34af
BLAKE2b-256 checksum
How to use checksums
5a087178be1d36f7d4517644e8187fcce275b4f3796541cbe39162c8e473baa7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL aiofastnet-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 558.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8a1722bcde967b30a45e7bb3f5fa21e299cb5c08a8edf14c16a5bb5c15de9c9b
BLAKE2b-256 checksum
How to use checksums
e2307672588f52e0060bc08fd29bf7652116d86c09b86d17027bee92d38a09b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-win_arm64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-win_arm64.whl
Size 456.0 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
e1ee3bc5a5aed2a426af98daa42bc39ae1e8919c5ff7c93aae9b5f9a8db0f9cc
BLAKE2b-256 checksum
How to use checksums
112114e03aa11bac276d9c0bc317d314bf12a45724238e0a63cff817bd7cc3c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-win_amd64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-win_amd64.whl
Size 512.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
72593a2008ee9107b78e08025baa2fd82b7dfb8ac15ec2ed1cce8bb576d01780
BLAKE2b-256 checksum
How to use checksums
1a0302815f3c0638102de36ddad764c79a32a559c84f92baa0a3dd58d3b2b091
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-win32.whl

Download URL aiofastnet-1.1.0-cp310-cp310-win32.whl
Size 455.7 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
5addeed7002cd7a438cb8fc8ac464386e30bc8294632461260f36c1f16197f50
BLAKE2b-256 checksum
How to use checksums
db7d5e391df39e22ec01718b96d107271a7a72c125c1ca4f8b672cc0efc64829
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 643.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2851eb2eace71fd0a0e9a8070e4ba0f0fc2026944d93960d92d70e5e093d922f
BLAKE2b-256 checksum
How to use checksums
f867d9a9879dda8ebc9c6c6ffc5166306953300b47a89edfada76ffbb0568660
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 621.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
344cf3b7cf40aff66612bab311155701878ccd27ec9bfe9571f48b91dba196d1
BLAKE2b-256 checksum
How to use checksums
e7dda868f0b2d5212f623138fd7986dc5d1c0825b2644daf5fe5049483aa1991
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 636.7 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8bf959084072da065c9f1e351029a274e21e706b02c2df4e68fb94bff93e6d14
BLAKE2b-256 checksum
How to use checksums
7fa9ee9d0abf41f1ebe84272bf1f5a3af91de3f826eaa6782c0ad72db652b41a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 613.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
057e394f1c081df8a17457692bd3138e25e203557dd498c292bfadbb96bb7814
BLAKE2b-256 checksum
How to use checksums
ad44f64169d42ac090807f643d45941367a44557dbd300666864ea9e645d1903
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Size 546.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
17496e65ffb60a8cfb113e310bb89311c3d27901f0defc1ad2ae23ee723d0d1a
BLAKE2b-256 checksum
How to use checksums
d4844c7eae1c4bf63a7996f116ab557cce82b7580cf40393f657d9c7d717fd08
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL aiofastnet-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 559.7 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bc52e8dbcd0615c2965bda7d5f361ab0716e9d8f8d01dc9d490ac9907c6aa6c8
BLAKE2b-256 checksum
How to use checksums
84d331329a7d5a8436d20b70a7a20a4367ec28a7800c23cd623fdae1065fb1a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-win_arm64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-win_arm64.whl
Size 457.7 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
c9baab08c5e9b1c12777a1b6c3e62cf84bab171c78045f802a248d8fd4bf4a79
BLAKE2b-256 checksum
How to use checksums
f145a2365847c8741c8c06f58910c046698d8fe3618a9c03ddc1ec19a0be4876
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-win_amd64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-win_amd64.whl
Size 514.0 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
4bb35de0dce523df2fb90f2a5cea5286e54954769e97a4a49c7756349f6ecc0a
BLAKE2b-256 checksum
How to use checksums
5d13b09adbe10eedb0a0e1fa1e30091a2bd494b7d66687fe95be916604a8ee6e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-win32.whl

Download URL aiofastnet-1.1.0-cp39-cp39-win32.whl
Size 457.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
50372515827bf89ea6508659984348ee6fda9ed42d8b53b3cfb2b2274f1d44bb
BLAKE2b-256 checksum
How to use checksums
2fbc9a62fbe891918dff708d57a4920f09c9115294b4c3081e1a11160ac4fc5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 645.8 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
36c3daa458bfb5ed2dcd96835a7ffe9a63ef591ea1f719c2e5ccf52939eea020
BLAKE2b-256 checksum
How to use checksums
a1bf531f484c4d4e4cdd45aa58271eddd34e96ebe612577229d97cd1e080826c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 624.9 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5f8df7fac6ac7bc6fd8a9732c88767591681a846346cf3f2fe2236227b64a1a7
BLAKE2b-256 checksum
How to use checksums
7f51eb2910d5bd40183fa8b0d9ec379959ff33b839e8e0ba38a3d1ddc37179dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 638.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b0c83d9480defbaf63c791055d04544b0a37621a91f983cbf15ad626c7574524
BLAKE2b-256 checksum
How to use checksums
db4543e85c7a595441335d3886b7b24f16abfa8c9413710a089c887919b5de9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 615.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
afb0ca081c8a5a6a0844c0008939fbf2f26c5a395e77879208f8bfa2e27fd400
BLAKE2b-256 checksum
How to use checksums
73fca785fff5776dab9987c46bd3ff3e116ab788afc9690f717f6ee81ac2ac67
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Size 548.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
43abff8b29d9a01bd0632c8b94e500d652b1eaba18e3f411d05e4a918fab5b96
BLAKE2b-256 checksum
How to use checksums
7499118ce154bd775377730ef1944906fad548415f49ad017fd54cd919bae76e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release files / aiofastnet-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL aiofastnet-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 562.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
94b1fbf0f69b63edb687068617cf0151294374b9e404213d7fa0ca0f6436412e
BLAKE2b-256 checksum
How to use checksums
d63d2ce91043cb568317a64bec9aadafbff809b7d5c55e101f380bb8ce275880
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 13, 2026.

Transparency log

Release history Release notifications | RSS feed

1.1.1

82 release files

This release

1.1.0 This release

82 release files

1.0.1

64 release files

1.0.0

64 release files

0.7.0

64 release files

0.6.0

64 release files

0.5.0

64 release files

0.4.0

64 release files

0.2.0

57 release files

0.1.0

57 release files

0.0.8

57 release files

0.0.7

57 release files

0.0.6

57 release files

0.0.5

57 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page