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

Release files for aiofastnet 1.1.1

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.1
File Size Uploaded
aiofastnet-1.1.1.tar.gz 706.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for aiofastnet 1.1.1
File
aiofastnet-1.1.1-cp315-cp315t-win_arm64.whl CPython 3.15 CPython 3.15 free-threading Windows ARM64 Details
aiofastnet-1.1.1-cp315-cp315t-win_amd64.whl CPython 3.15 CPython 3.15 free-threading Windows x86-64 Details
aiofastnet-1.1.1-cp315-cp315t-win32.whl CPython 3.15 CPython 3.15 free-threading Windows x86-32 Details
aiofastnet-1.1.1-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.1-cp315-cp315t-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp315-cp315t-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-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.1-cp315-cp315-win_arm64.whl CPython 3.15 CPython 3.15 Windows ARM64 Details
aiofastnet-1.1.1-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
aiofastnet-1.1.1-cp315-cp315-win32.whl CPython 3.15 CPython 3.15 Windows x86-32 Details
aiofastnet-1.1.1-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
aiofastnet-1.1.1-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
aiofastnet-1.1.1-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
aiofastnet-1.1.1-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
aiofastnet-1.1.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-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.1-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
aiofastnet-1.1.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
aiofastnet-1.1.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
aiofastnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
aiofastnet-1.1.1-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
aiofastnet-1.1.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
aiofastnet-1.1.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
aiofastnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
aiofastnet-1.1.1-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
aiofastnet-1.1.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
aiofastnet-1.1.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
aiofastnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
aiofastnet-1.1.1-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
aiofastnet-1.1.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
aiofastnet-1.1.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
aiofastnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
aiofastnet-1.1.1-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
aiofastnet-1.1.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
aiofastnet-1.1.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
aiofastnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
aiofastnet-1.1.1-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
aiofastnet-1.1.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
aiofastnet-1.1.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
aiofastnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
aiofastnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
aiofastnet-1.1.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
aiofastnet-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 49.0 MB

Release files / aiofastnet-1.1.1.tar.gz

Download URL aiofastnet-1.1.1.tar.gz
Size 706.6 kB
Tags Source
SHA-256 checksum
How to use checksums
528b0a41f2e16e470abbaebceb4f23ac90f3c87a51ec0b7e91013f90e3885139
BLAKE2b-256 checksum
How to use checksums
6dfab4691e0353c917ac49fb650650b8f7965a5c5ee17080a8a27e7d3e9a5cfd
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-win_arm64.whl
Size 512.7 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
92606e5799a1f8ca56a266ef1eea0f6aee839ead6b45d1eed22dd42e28f9c10d
BLAKE2b-256 checksum
How to use checksums
5b1aac4895210ec3daa482aa2b7bc3c47ddd4fa0bf54599d7ad92a229af967fe
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-win_amd64.whl
Size 584.6 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
d918f52749d7099f856ac56798a3c61f67a5a315fcd518c04293e07599b72c65
BLAKE2b-256 checksum
How to use checksums
bb26d2bdf7a6a10b1541bf2220814884b82545ac4dc2d451da16acc77833701b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-win32.whl
Size 518.9 kB
Tags CPython 3.15 CPython 3.15 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
f051a515ee8f92c84cebe234605c525c4bd4ea0c621d660155fb212da063c232
BLAKE2b-256 checksum
How to use checksums
bea95109f4a977c3dbf40de4c063c2002c3e8a27bfe19e0988be18c59aef1485
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Size 690.8 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c70f75c605bd7ec077c097c327dce526a9a8829288b79b24f8330c3ab7d66bfc
BLAKE2b-256 checksum
How to use checksums
66ff7b560763bc045688d6874725db1bf601f26e279f910330fd761bc4079348
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Size 676.5 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
aad044102f21de481978cbaac6d693afe109935d805b8c86c76bf51ee57da11b
BLAKE2b-256 checksum
How to use checksums
224318488e5d0ee9f977fdbe63cf2488caa13f84ebb70d9c7051e9ef0a7a6201
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 682.8 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
723c7c2e56f2a2886ee3bab98fc20b6d3a63cf7646265bcc1a0a786cfc792b29
BLAKE2b-256 checksum
How to use checksums
a112088ef03c436cbc762f44174486e3cd63e5459479e9b17c3ae3256131d380
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 666.3 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
e9d02d9620e193dca08ea2c174b0c14fffc2b5014dbbc32720e6557fd257c45e
BLAKE2b-256 checksum
How to use checksums
2ba33f5639f9b563e07ab483c24ff7e563e379943d7208ca5038581b634a062e
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-macosx_11_0_arm64.whl
Size 609.5 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f414e323ff453f7f0fbd931b6075a20ecedfc44a4891f352fd9b34404599acd0
BLAKE2b-256 checksum
How to use checksums
dfd056407aeb37768149b050de20ad7ffdb9e7a75d12776bee1d229b7ed8ad96
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315t-macosx_10_15_x86_64.whl
Size 627.8 kB
Tags CPython 3.15 CPython 3.15 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
9ec8053b29ee541c333175371ea2ff953fe954a587a58fcc36f1327edc99d64e
BLAKE2b-256 checksum
How to use checksums
ba0770e3fddefb34b89f4266474b7da39ef35af2b60cd2db722f2ba8e375dfa4
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-win_arm64.whl
Size 478.4 kB
Tags CPython 3.15 Windows ARM64
SHA-256 checksum
How to use checksums
58faffc20c045041424039cce2470d4ca949c33beb5eb6978f4bba38fadf0166
BLAKE2b-256 checksum
How to use checksums
a06d3df67e95e095770946bd986b58611a9de0a20eb08bcad7b101aad391acb0
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-win_amd64.whl
Size 538.2 kB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
29ae7fd7b7ccde55d38784e2240e4ec80fbf9ef9608a70a4740d0c958b6454e3
BLAKE2b-256 checksum
How to use checksums
7d29079e5770d2e4fccd58a46206da494891e04109828f628921222d7a8c1ac8
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-win32.whl
Size 471.5 kB
Tags CPython 3.15 Windows x86-32
SHA-256 checksum
How to use checksums
e55e81381f764fc60fe3a0734a20e31e45f914df5c0fd364f170afc12c57019d
BLAKE2b-256 checksum
How to use checksums
6b2d1898ecee5e08ad80590b08e9d0f999ce882556175ba843ba4880edfaa448
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-musllinux_1_2_x86_64.whl
Size 676.1 kB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1b14e4e204c1dd79295b86e823d4e0e810be71d203293704a1d2b66794caf618
BLAKE2b-256 checksum
How to use checksums
b01ba32ad421074af64b0729d081d0fb542b36099794bf932d466cf4a4e704a1
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-musllinux_1_2_aarch64.whl
Size 650.3 kB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e6730c23defc899d308620485da088b7e7687c115d1904f32a64f788a4e2ee78
BLAKE2b-256 checksum
How to use checksums
db3b422a895651fce3df16bcfe9b3348b5a16b035ec8c9c768e3a84d889d0c17
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 668.8 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
b29b6d55c69b7ab03f38e0c9737f1f7986b1aa455a6d60cfa80a5362b92d51a3
BLAKE2b-256 checksum
How to use checksums
9e8119d5f1bd55d63f6ceb0dd115499d1a978ed6ac52c6d34828d8c00215022d
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 639.7 kB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
af335e5441f33f259e1fbb53247d5f5af06508f5d8ba52b85369638b6c3db825
BLAKE2b-256 checksum
How to use checksums
08c59efb59046ef720f4eb78cdb7af89fbc0dd860441fe838e3ce6323fcbf061
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-macosx_11_0_arm64.whl
Size 579.1 kB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
39df71cc0bedc254d8a414f08119d0f7a06b46d2f0964201d272873d1d43f0e1
BLAKE2b-256 checksum
How to use checksums
2efdf4bce2e5592c6f13d5d9b1af62813e25e956623eb409e16cbaa577d0d483
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp315-cp315-macosx_10_15_x86_64.whl
Size 596.9 kB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
34194da7a1a8a368a23371e3b0a4efb356545b3748f5e1480c497bf61129e144
BLAKE2b-256 checksum
How to use checksums
81e1082b5a39e4706dc89cbb473b5671a319dedec107543c2fc335f38410355f
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-win_arm64.whl
Size 515.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
0cfccbd9f5feae11f0db8df081ced5bca071070ec5bc9baea33057440c0e32b9
BLAKE2b-256 checksum
How to use checksums
6ad6f0a5798b4c0a1a55f6d3893bf8d6dcf3acacc7cf24af4e7519ac806e0569
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-win_amd64.whl
Size 588.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
b483b7521a5a2cb885f54f87967cbcfe14bb2e325b3568d71ac4a36454443019
BLAKE2b-256 checksum
How to use checksums
19527b9fb7d359f6ba7307b3446a492937fecf3d08c85b82b9d26a10cd4e43e2
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-win32.whl
Size 520.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
048047f8ed0f0c4060321b997c63cc45157c3653508658b3854526548ec94d68
BLAKE2b-256 checksum
How to use checksums
77f2173b4ffffa89c958c70dcaae8cb7407f56f56774f392eae50246fe5fc534
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 694.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
639d20707e171b95ebcfbd0f9154b8f8a976ce1334db72bd6ad3fd73f4a55f61
BLAKE2b-256 checksum
How to use checksums
d7d82fd008618177539dd4e595644105e1302dcc7cbb3bae796f3f48f9ca15a0
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 680.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d934e8043795862653585338917193cfb362db0df5d4b0d2bb8988ec025a710b
BLAKE2b-256 checksum
How to use checksums
fb8043927161bc931360ee857de6a168ea77b04e76fce492437e64b378e55e1b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 685.8 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
edc2c2236b314c689db5e4518cc7341ca1a701d13c709cf1a22fa2951b96884a
BLAKE2b-256 checksum
How to use checksums
0493109be3c7747989437611247d44056a9427ca71610957a7569664df89e47c
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 670.8 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
e7841b4ab3d1654d362ed306d587c7a0ded8825d2e0a02c72008ddbab3faa833
BLAKE2b-256 checksum
How to use checksums
456802df5b2921601ad7f02c8122906847370bde258ad0dbead105b75ddf8baf
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Size 613.0 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
09d7ec8fce6dca71a7b652484f249cd6b7fcf55ef28723073391cdb2351833a5
BLAKE2b-256 checksum
How to use checksums
91cc4e532611facbfdf336cb5a2e54981f0dd2d8f04eba069b13f6467a3d9586
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Size 631.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
fe251d5ef2f728ab7adab234f81cd78c037f6a4add3d8200c70988154233febc
BLAKE2b-256 checksum
How to use checksums
434230aff9342ae7c4a24b08ca22e7b29de4720df51bd11a554453b0e737f841
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-win_arm64.whl
Size 478.9 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
948d5ed05867ac137a80a32ab53c8a216673f3b94c90b30a960a180fd6ecf4a7
BLAKE2b-256 checksum
How to use checksums
d78ef74087756701c12ac1d21cc6c037f54b294f0fc709a8bb6d7832c17fe139
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-win_amd64.whl
Size 538.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
8a102d0234faba4b5334c8f4ab1dadabc3d38f009d1154f972ece470568ee07d
BLAKE2b-256 checksum
How to use checksums
1ecabdd9e07985b40e3ff009c99d9f156cac5b6c44043ee29be2408cb5fe0d47
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-win32.whl
Size 472.0 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
0d11a18f5906e368983c0844b5cd65d7d4def25e9e983b2b82a6b34db156df32
BLAKE2b-256 checksum
How to use checksums
f1c092c31c0259daf1409c7267ee54aacff43418f16cf27ef63d12601ae6d03b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 677.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
da56df5a7cd4c482886334af1119130fd75fd175d144cf1d66094f089e363bd3
BLAKE2b-256 checksum
How to use checksums
afbdb4bdaa126eb45b17f4c186e871340681bd05fb3ca49b6a3aaf78b3bf4ade
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 651.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
36a8a341f885bcfe7be444765e8f01f1fe6e2deed62a47f020d54deab36a9090
BLAKE2b-256 checksum
How to use checksums
6684148ad481383707cfe61b889c6a6f972c59e1da3f4caf174d01864b7089ff
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 669.7 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a22f499789970d843f22756acb90e5d51398ad019a12df82ea296218fde36e1d
BLAKE2b-256 checksum
How to use checksums
742b50db94b585ce048919955ab01b66b7e2097ca113c282659ce3435004b7e8
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 640.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d3085c79e381082e4010d8a4409de1ce04be69d48ab5d27fd5db4b99824d65b0
BLAKE2b-256 checksum
How to use checksums
baf99e02afe35f5cd834ae07955b41f6e190f31ea4ae9a96d0c904a910335579
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Size 580.4 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6b5b6677a9f4b9b413b073de5f8385fc13f2dac0642638b569156c35d55929ae
BLAKE2b-256 checksum
How to use checksums
8201909938190099934cefd5a79909b34c063a0d60fdc14ae49d5cb917630d0c
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Size 597.4 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
730c1d8c2652f0d2d21ddf2dffd354351c2de065074ca7251d3228ea19496e2a
BLAKE2b-256 checksum
How to use checksums
40ed9978b04efa3e66672d03eb3b9982775950f17b3e384da4dbf92b3542fad0
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-win_arm64.whl
Size 462.8 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
623efc5a32883558a23792f07eb240c37b77195fabd8534c5c48ecde69996249
BLAKE2b-256 checksum
How to use checksums
96f578e2f7afe68a0f6e36d68d031a25c25c0845a3b18cc85066033cf792e670
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-win_amd64.whl
Size 529.4 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
bb42b6dd71d2c1dbcc16f93428cd08b78389dc58fd2e79ced3b2c0f85b0d7952
BLAKE2b-256 checksum
How to use checksums
2511595076669aa56cd6484271c1c34b2f88fdc3e85712d829a27758972fb88e
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-win32.whl
Size 463.2 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
5aa000adbcc469b67b205cac7d97228925d71b4dd23df2cf179e1bf0e85745d4
BLAKE2b-256 checksum
How to use checksums
f8990d46bbc817fe46d0642a6cacc1b696ad798e2600d42a6c471e6e0c53f2fd
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 674.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
86cab1e83703003628dd7d28413f960670f0ea1ab02179a7bb522e3f7b87ed0c
BLAKE2b-256 checksum
How to use checksums
277520287cbc39a21ea5220ac7ae7ca17033339cd4eb74f8b83d7fdd31601f00
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 643.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
9889d7ac4d603b26dd117bd42634d9052ca8bfda3eb63c5b2cafe6797e570b67
BLAKE2b-256 checksum
How to use checksums
94c33e9e392124184678cd1ef75b1d015e0e6d67114723f3e1ea02c8286870fa
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 666.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
a679e7813242d6837ed396168188c29fdc7c08357da77b40a655acdd3c25778b
BLAKE2b-256 checksum
How to use checksums
76217e34e038b1919a86ed292ba5e816ed349347dff8b11a1bfb0d3e8ef1d0b0
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 632.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b858f2968e9d71b315f51bb8c0f9b98bbcaa507e24a1e97803d503019a925e2f
BLAKE2b-256 checksum
How to use checksums
1a13a6faad75d57531726c1f3351f496d789e011060c5d657f7d9b3b44bfaa4b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Size 575.8 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
8bd5358b34f434268660b4422a90fd5b1176eea922be8d45f78c6fa7edbff3ba
BLAKE2b-256 checksum
How to use checksums
5b93a951b0149d686b6a3b5e5879bd3700e29a59774ce875f3a77568d637cd1f
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 595.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
cf73bdbd5e9f7265c27a148a325d18ad2e1b1b400af16dabec1c209aa0d79fb5
BLAKE2b-256 checksum
How to use checksums
43160cf3eda71afc475d4a72c8f95a30536f75245168687e37432dffd533ec13
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-win_arm64.whl
Size 464.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
798a42c75e1888c0b7b4c8887983405bd2ec168f460e207cd139bc011039b13c
BLAKE2b-256 checksum
How to use checksums
3f7e36a663a2b34e5f123d35627a511c8c1f20ec601e7e55fea0b2b19f55a083
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-win_amd64.whl
Size 532.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
7ed9b941e4115f0d0cc8d9bf1774aed40738547fc91e78ac977419e6e51284df
BLAKE2b-256 checksum
How to use checksums
b64674a06068f734459dd7d5e6c0bef0e88f71c42c8fd69934537fd0496ff954
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-win32.whl
Size 464.8 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
efef700828a0e6faddfe1c0234a3e19ad41d877ab2a252cf212bd010d0f3e172
BLAKE2b-256 checksum
How to use checksums
09c3078957261e4269130da65e689347873b04c1d6bb9673101a34b1dbb93014
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 676.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ee8cb1a8d0f433c5e5411b28a57513889cda50f8b30cda24d0797909de11914d
BLAKE2b-256 checksum
How to use checksums
7640cfd46b8d75e1819d29fb7808df06c4f96faf39b70e64a981baec3bc16401
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 644.6 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0e32005c038b447b2447ea821501ede3e431420f6488589585d2268c1e26ca8a
BLAKE2b-256 checksum
How to use checksums
55ba6afcff5e6fda95253f1c3929fa34ccf3dbc4d97843717ec7b0390103208e
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 668.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5672f9bac21f80fd900bfef3370e6333c600f50ae2cb28ae237612392209eae9
BLAKE2b-256 checksum
How to use checksums
f7c139e186dcaf8cac1ba57001d811af5130464eb31b9718639d03381b1d37fe
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 634.9 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d89d506bac92d33a5c70d850578a533b599c3cfde5317ece76af2951c0f1608f
BLAKE2b-256 checksum
How to use checksums
db11ba7b9dc722a8c74c1510dd723f2a688feb3ba94061b9279caaa0a49a3665
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Size 580.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bce057ef608f027f8692cceb8c072d450165ff12c200f3b99be6cd3527399571
BLAKE2b-256 checksum
How to use checksums
ad27e379abfca960fe98cea41f5c9077ed7b379dcfa10da1b16120d01f8708c5
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Size 599.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
621d79719f8bd2257b8dea207fc89ddfce65a594666a03e730bb5a06ca3b958b
BLAKE2b-256 checksum
How to use checksums
7e15921e4f9dd7d03f2aa9c22e1a9a26e5a6c5b6a33de1b8c36196d4d3733fd5
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-win_arm64.whl
Size 478.1 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
2ef58b3dd57930fb7697ebf2c0345686badf8b26756dde37db15e79547e37ea6
BLAKE2b-256 checksum
How to use checksums
df655b3e68e5b004b7140f861b784db30a919971784d01b89ecb2c2259a62ebc
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-win_amd64.whl
Size 538.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9c1314ddc1922f14b7a0bce258816b13acedf274d50e47478ecdcaae231f2756
BLAKE2b-256 checksum
How to use checksums
d4ed532aae6ffd8ffec8d63e761e0c02e9a7a04c43ff35f72f80158f8cad71fd
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-win32.whl
Size 471.1 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
acf0d5f459bcee1012511e360c248c59ed34bca06b2b2801701cc77dc275cd33
BLAKE2b-256 checksum
How to use checksums
ca93870fe53de82f2612e9ffe48bed387ee0f1a11d6172dc2f69525317bf5e93
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 678.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4255f11ea2cc7af0754b01f3788a18b5e57a879445ad0c9a144386b5237a8757
BLAKE2b-256 checksum
How to use checksums
1a48a38871ff43e4b7b102fca236d3640480d6eb2c376e460b0e74b8caccf84b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 654.0 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
98c75df9580a29dca1401d314e0a5a9db90590075991cdb86637335de790d5f8
BLAKE2b-256 checksum
How to use checksums
7029d1a6d4f4923c4d19daa6e00d76ea9d01ea0c0683a8012cd258c9d01e4511
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 672.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
2172afca60392193fe7cdb2de6bb2dd0efe8fc1e65834eefa15ec16f63733387
BLAKE2b-256 checksum
How to use checksums
d7dd7a0ee30499b45be23e19bf7270298e0dedc1fe124ecea4655ddbbf20ea6a
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 642.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5fee050daddd0cda5bba8443a46d2ac4dd2dc3640df52a010907483450faf98c
BLAKE2b-256 checksum
How to use checksums
b8bd5e83b2c355b022398ecd28fba039aeb68d093d91b368489538c182fade3b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Size 579.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ff1541f8a93ed64902df0b32964a2705b226cc7d2c0b4717251140ea518d814b
BLAKE2b-256 checksum
How to use checksums
afab1e63ced91adc48bda431571a784a855454e080302634284e402da9bedf27
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 592.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
80be0970359ff806677cc444e4e4b2b521b0d0784fb56c63d55c848a4cd264a8
BLAKE2b-256 checksum
How to use checksums
ca517739b8c2e2bbcbcd4b71a2349c24442b038a875d62a8789578559989ba95
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-win_arm64.whl
Size 479.7 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
0bb06409101afd2076193acf38926e855351fc8a30fabd8b07c42c50c853ffc7
BLAKE2b-256 checksum
How to use checksums
6a067400bfc31070ecb882ad5b2e2a275624082f3e6f2c58a3f8d067194fdd64
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-win_amd64.whl
Size 538.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
2d518fe940c5b74fc230df5ec94bdb70f569533964f347999c775faa5ab5e18b
BLAKE2b-256 checksum
How to use checksums
9eef28ffbc95b08840f00355a5a43ca23fb9098f0d50536f84e3d6d8d8ff96a4
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-win32.whl
Size 474.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
c4846e10f414ca2a0df7bc13e6537458ad26271a3b6f4a4297ed9500df392dd3
BLAKE2b-256 checksum
How to use checksums
8824ff0f9e830bbfc34dbe7b2d427a42cc84aebf4852cd90a77d94aed3190b5c
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Size 680.0 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4919f0b7ecc212006cd9160d89c46da0e2d1cba85b02c667a2735a5071e2fb52
BLAKE2b-256 checksum
How to use checksums
81ef8129a3b45ae4ccc96d3847c7f821334ecddc6c03e164f6b5eba254ae26a0
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Size 655.2 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7d23bdea5b3ff2cc77ebe38bf7042f47d925b625ef8c637840841a14b7504d7b
BLAKE2b-256 checksum
How to use checksums
654a47c809718d69eb4d1586851623209b02ca37e3f35ebdcf0755b6256e7f96
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 672.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
9502340662b97e3d6582a246163739bbf87aba1bb517b4cc74047d77e6a7c201
BLAKE2b-256 checksum
How to use checksums
18344dc98429ba7f7e0f1df7a97137cca80626c7abb6f9f4982df1ba6b6ff38b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 644.8 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
67137eff65760c92700bbcaad5b50cb41e841dfbcc73eb13a4f6cea7a7c51dc3
BLAKE2b-256 checksum
How to use checksums
0f02279987baa799eedcf0c986b580e5459eb20ffcdd05e9a6d8bc4c60bfc45b
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Size 583.2 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
11a8fd5b24695270ce4ee9f03729d1650d2d7363b085a598b5a3d23d8d32f937
BLAKE2b-256 checksum
How to use checksums
9d8d8e6363cf87f19b0637ca226a7c4f0ccb5e4ef2b2fcdf95f2682a0b4696ca
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 596.7 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
c089b9dd4a5647fd10a915c7b456ac56bcdf40e31c83a4c9c8178091d25355ef
BLAKE2b-256 checksum
How to use checksums
06ab18b422a0984e398b91be4f39c428a8846d8acee47f13fb5741033045d912
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-win_arm64.whl
Size 481.3 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
3cf41aa96e3a8ba7db0b8dad6996fdf2e2074e3f6d51e7b53bef91e88661952a
BLAKE2b-256 checksum
How to use checksums
ad44f589ccab8b7bb3fe37ae16b4d31db776f36c284f63192ec1c9711a963f04
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-win_amd64.whl
Size 540.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
1e0a60bbb527b55dd65308074aaf3eb17e0c6631ccb40ecd922ba0eb59ee2beb
BLAKE2b-256 checksum
How to use checksums
645d0ab6f8124f0f14969cdc41f85d7a5bae4e6c4c1723b73a67a41dde359282
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-win32.whl
Size 475.5 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
94b7250dd4fb1d98e85232de3a1c8cbe6ad39815487d92fca79cb2c812c4b4af
BLAKE2b-256 checksum
How to use checksums
94889c5ede15a5c1ba0905d9007e288a998b03658dd79da8d1f499f4e04ef50f
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Size 682.8 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
983b01e9937c89f31a1fdfa9f84923ced4e49f135b9826c1dcd138d3259bc868
BLAKE2b-256 checksum
How to use checksums
934645fef780626b2ce3d098d29b49a41ed766de33270a0defec67d0e8a75b24
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Size 657.2 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3f64bfb29ac045a0305a92dfb9d60f4c1c1318c82644f40ef346d1340d2c852e
BLAKE2b-256 checksum
How to use checksums
f2d0d85fb52564d596814afe11b454cde409069c26273b3d5cf63a78533efb63
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 674.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
3842326ef18739bd6aca5062f1fb5ede3c7c53b939d84cb8799798b2c3c1db2a
BLAKE2b-256 checksum
How to use checksums
7503c58f4c8b5c9d590f6e57e66b23103f41dd11412414305d894da5a099566f
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 647.5 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
219c3c14216eb947275bfa3134b6149fb31b11457457652c39345efc5d07dfae
BLAKE2b-256 checksum
How to use checksums
c78b513dec32dfaffa3b7c40c292337f3aec0c8390eb551de3c7667799988609
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Size 585.9 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
58c2088235d8f287848c565300df63e9cfc41eb582919fa437dcc0910f7382c0
BLAKE2b-256 checksum
How to use checksums
0fc068b2aee42ee70ed62cd0549553a958a47586be4761aebcaf8e6f89b956bd
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 Sep 16, 2026.

Transparency log

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

Download URL aiofastnet-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 599.2 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
f568aa46762a17fd7d6d385df30b5cebdf9389b6a4638be136d73114ca29df5a
BLAKE2b-256 checksum
How to use checksums
be02f71cfdca52b3d673b601fd0cde4bc24af6cf41ffb34aac1391ac4cf1b626
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 Sep 16, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.1.1 This release

82 release files

1.1.0

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