Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status Latest PyPI package version Downloads count

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

If your library or application already uses the asyncio streams or transport/protocol model, aiofastnet lets you keep the same architecture while replacing one of the most expensive layers underneath it.

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 implemented much more efficiently.

aiofastnet supports Kernel TLS out of the box on Linux.

Benchmark

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

Benchmark

Source: examples/benchmark.py

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

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

Threaded benchmark

Source: examples/benchmark_threaded.py

Why Use aiofastnet

  • Faster hot path. Transport and SSL internals are reimplemented in Cython/C to reduce overhead on long-lived connections.
  • Drop-in API. Keep using the standard asyncio streams or transport/protocol model and familiar loop-level networking operations.
  • Works with the event loop you already use. aiofastnet works with stock asyncio loops, uvloop, and winloop.
  • Particularly strong for SSL-heavy workloads. aiofastnet uses OpenSSL more directly and avoids extra copies in the data path.
  • Kernel TLS support on Linux. Native sendfile for TLS connections through SSL_sendfile.
  • 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. This patches the loop's create_connection(), create_server(), start_tls(), and sendfile() methods while keeping the rest of the loop unchanged:

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 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. aiofastnet focuses on optimizing the data path after connection establishment.

Platform Compatibility

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

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

Kernel TLS Support on Linux

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

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

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

Kernel TLS requires support from all of these layers:

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

To load the kernel module:

$ sudo modprobe tls

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

import ssl

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

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

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

Check which OpenSSL Python is using:

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

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

KTLS support by kernel version is outline here.

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

Some other useful links:

Free-Threaded Python

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

The repository includes several free-threading examples:

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

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

To use aiofastnet correctly with multithreading:

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

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

Building From Source

  1. Clone the repository:

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

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

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

    $ python setup.py build_ext --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
    

Contributing

Contributions are welcome!

Project details


Download files

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

Source Distribution

aiofastnet-0.7.0.tar.gz (256.4 kB view details)

Uploaded Source

Built Distributions

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

aiofastnet-0.7.0-cp314-cp314t-win_arm64.whl (368.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.7.0-cp314-cp314t-win_amd64.whl (488.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.7.0-cp314-cp314t-win32.whl (414.7 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (502.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (494.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (496.2 kB view details)

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

aiofastnet-0.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (485.8 kB view details)

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

aiofastnet-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl (440.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.7.0-cp314-cp314t-macosx_10_15_x86_64.whl (454.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.7.0-cp314-cp314-win_arm64.whl (345.2 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.7.0-cp314-cp314-win_amd64.whl (400.5 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.7.0-cp314-cp314-win32.whl (343.0 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (490.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (471.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (484.9 kB view details)

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

aiofastnet-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (464.6 kB view details)

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

aiofastnet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (411.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.7.0-cp313-cp313-win_arm64.whl (332.9 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.7.0-cp313-cp313-win_amd64.whl (392.1 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.7.0-cp313-cp313-win32.whl (337.4 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (488.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (463.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (483.3 kB view details)

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

aiofastnet-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (457.1 kB view details)

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

aiofastnet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (408.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl (425.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.7.0-cp312-cp312-win_arm64.whl (333.7 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.7.0-cp312-cp312-win_amd64.whl (393.6 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.7.0-cp312-cp312-win32.whl (337.9 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (467.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.3 kB view details)

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

aiofastnet-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (460.8 kB view details)

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

aiofastnet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (411.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl (427.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.7.0-cp311-cp311-win_arm64.whl (341.6 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.7.0-cp311-cp311-win_amd64.whl (393.1 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.7.0-cp311-cp311-win32.whl (345.8 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (491.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (474.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (486.3 kB view details)

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

aiofastnet-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (467.4 kB view details)

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

aiofastnet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (412.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl (426.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.7.0-cp310-cp310-win_arm64.whl (340.9 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.7.0-cp310-cp310-win_amd64.whl (389.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.7.0-cp310-cp310-win32.whl (346.5 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (493.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (475.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.8 kB view details)

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

aiofastnet-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (468.8 kB view details)

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

aiofastnet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (413.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl (426.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.7.0-cp39-cp39-win_arm64.whl (342.5 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.7.0-cp39-cp39-win_amd64.whl (391.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.7.0-cp39-cp39-win32.whl (348.2 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl (476.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (487.7 kB view details)

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

aiofastnet-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (468.8 kB view details)

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

aiofastnet-0.7.0-cp39-cp39-macosx_11_0_arm64.whl (415.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl (429.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0.tar.gz
Algorithm Hash digest
SHA256 8af3c6f2f42fd2175d46008d855933ecd3d0811be69ddca51dc35a5212a5fab2
MD5 e963b3ab3c804065c916b6d42a631835
BLAKE2b-256 c60270539c01fb93bcb1f634ac23f1781cd1f3448a4e1c2353934caf65b0a9ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0.tar.gz:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 368.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fe6d2bafe9b9f12446b660f211b393fba685e425b39abf679f8a5ffbdb25ea67
MD5 1c78650c9fa14f020be9bdd44427fe19
BLAKE2b-256 44a35781df8b04327163e65762c3e2961730c53785916d971c05d546ff7f531a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c20dad6852f3023dad915afa25012d050f173a3805570b8025f832467f53c2dc
MD5 897c239bf8b2ef22b6685b9766545fea
BLAKE2b-256 37ccbad869c203a9817deac79c6ceed357d749a1e8b8a1828d62ae1e1e42a6dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 6916169ec55fbdcb0adfe28103a9e8ad8ad195055485b9626650ac4660d33329
MD5 32688b2ce915b1831e747e9e9b013c5c
BLAKE2b-256 564a07d3064826aec11259e266ec828be592c06e7b7eec5e212dad4f1867326b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dec8c79a46535dfa1bc2db136f4fb68dbadf393591f5604a9ca6fae8311f049
MD5 a1ee34816d3b45ead49342ed5e345703
BLAKE2b-256 c84069f94c989c602feee0460ccc8cffbdacf73d57c1ca69e6c81daae0f8f1fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cae0e2c92bc97286f44fe8022f6ace13d92e279a9502a60df16afec24e876de
MD5 5d79e541d8b9201011256106f4983970
BLAKE2b-256 37b1eb9a7b7d6326e6545cecbbc326eff16551d27805b15b028107a84aa62093

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e88c072ef8f12b36ed942a8298d0b987e70bdd047d3a2485b2c9d218f8146487
MD5 8b1e3d7f8fc18411478a58a5ee351e49
BLAKE2b-256 f2bc542d20286b068c66e5ce832b2043ae0fa75989d94ed544c4e33b84150812

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7fc10c8227f237591e5892acecd9fedad3176191822b1c2bde871744612831a
MD5 3e8e968d4b898060b69cce2b2d27a395
BLAKE2b-256 e7e55ea9d4ef66bb5104ab432e385e80a6433b8880197fe7c7c04aa1f2593f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05746e7c8b955176847f26301863db9ba1d4fe5ef934d15e13dd9de1bf8dbf39
MD5 a84f3f27971088dec528ae710222b6c4
BLAKE2b-256 5931bd151a5f74b09c500c353fdee9935dab30c63a188a2e0407969e317849aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f730f78353e430dcbbf742735c9d606fba9bff8eb37e7b57ac038c2dbe0eab7
MD5 23b07c995136f47ad8d98229f187ce52
BLAKE2b-256 3157bae22d44a48625a330cf2cde43987bd48fbbf1e328b2dbc13981495dfc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 345.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e3191e6a56148daa506593d743ee90d93ff51a91514d2cb2a7d0078da6082a20
MD5 597029bf59f8048de8d36151afc52327
BLAKE2b-256 8a14b99b20f2aa376166df0548b4b1ca777d12428cddf3fad14c4ca9e3454df0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 400.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1e421dcc1d58e4789e2a1f5b1228849880b3d73aad8486a61f30e50d8a68a4ec
MD5 e6dbfe49e279cff800433e509daa6d68
BLAKE2b-256 be2437a2495bcfbb910c15cc75107f088c2369a6859768478b87d34f7b332210

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1c8ac3deafd446f0a93a94359ea4ad96b00ed11f5e1344d9cc868a7f151d29e7
MD5 95372419eec2ffed1b28cd2fe7337620
BLAKE2b-256 877707eacebd1f11cb231c33a07597c0ef49ade20d0e4ba322ade4081dc75cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7306955a0aaf41f557cae37ca30aca4cd82397d196f84d1eeab0e4bc9148e4df
MD5 5c08ce364709310bebb3e342c9e42f60
BLAKE2b-256 40505069aa45c2255d331720326c5634dec93fd96db0f02a810925a91c24d79f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffa501bcfaa15b02987c9cd716304df70f8014c2b42b0c2d5c53a8c2fd39c40a
MD5 2be247fe523f00a6b7e0a2f79a0013c9
BLAKE2b-256 ba1d5c7870555a75913ea7a202e2e171aeacc45949598c57600dc6176bc4d304

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9868d75b0a728213924e8ec3f2c2b18fd3cf44fe904bd5ff23baac8750e65de7
MD5 bb9aa1e4797f718f6609cc7c68178682
BLAKE2b-256 1d8a7fc69413b6897ef9755069e78c9cded6cf5cacd71ce8f020d0afed5b3e83

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 853c8b19553e81a30c4c617c2c7f774f609502e804ad8663b97c732b8efb85b8
MD5 a60838e869a436d5158100d5bf7dd726
BLAKE2b-256 8e78b4a427d760bde0482d68e646ec19ed6f74487617d52608f3d3cdc85fdcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5fde150e78b23ec51b49f9a65f8ce645610c86149576aff737cb28badcb7421
MD5 413df0b9c0572190c123b95f824b83e7
BLAKE2b-256 bbf2f879778bfcc5604f030233126fc9bc58df034dbc6e969ada95f8dd2cb29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 436a07ee1c25323106ed3bc24b14b98c58e7255dec72f0ea3bf355a81f86ad77
MD5 6d67bd8a405b07b8390b7017f39dc2b4
BLAKE2b-256 bed264af67615cd098ca9f2b757b886168fe9bee954511e3c7fe487d08af2168

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 332.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1e62fb8d156433e3b2dc71c01803e19a1860bd5e05f264ab07eb87db37657202
MD5 be2820dfc81a5d2777fb53916be3afa9
BLAKE2b-256 dc25a024c85d5208c3b8a36fc0102ce1d9926253298feb7083706c65bc364284

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 392.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb527dfb509af1b393bac98c3f9b1f6a528a305e810083ab6203170835a4a3ae
MD5 2e8a94701dd37b891d332d3afd8f234a
BLAKE2b-256 b828d04994736f1500337b96faa87b83c84704b58d43d652e6441231ad2c2e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 337.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 90428bea85b9a4c753252d3863cae4fdafe37010b7ea01a81bac9de68838f7c6
MD5 e438a1957f0820ab206a69c919242412
BLAKE2b-256 1f7ac66af0320fdc05a7783aa047fd9329459570250c6a08bf73411e0559c046

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d8966f2d1858093d29ca1d943ee36c8231aebda69af8761a658fc059f852568
MD5 bcdead8120f2eff0cc0876af695413de
BLAKE2b-256 193cffa1b75a93c3bdac5b5c6e4b1a808ca5ae79e090140e11551d6393761a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce0cf7e22d8834b1db52109739550cd6526d0d5fd84c535fe1e4ab411e346907
MD5 6af80b470ad1c25eff3f0c500ecd53db
BLAKE2b-256 345d69c36a9e8643da0193e9d5e4b84a96b27a1d70fceca68488266b93b8c17d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 148feeef3484d2cefcc1096cc2d94840b383a6efddb09f5c277a3763edf2d28b
MD5 da4c68c505c90abf312ff5d5f8788a9d
BLAKE2b-256 b72165dfe5bccd4698906ce1767381aae44668a7451a37e3096c8142341dffc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0a0ffcbb458bf79cb6fc0499b7b60c8379286408e676770443c160e34a1ab18
MD5 373607f724d5c25b9033b664e08515f3
BLAKE2b-256 9db63d01924cb163ccfd9de3102f5683f4e1bc431864455404450ada178d8952

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ba44fd06da1cf0899dc1d8018ec616069ed46c0a429df96f4432425dc805d26
MD5 73c0a6528b5a18a53e3a94496a8dec73
BLAKE2b-256 a7d86f81178d660ef7ed9d15c1f49cded7955694a24ff31f6754587fdd41f4c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6b608d7a592328a045652729e1321750ec61651cca6a169bbdedcd66ff92e59a
MD5 20a79617d98d0eb583baf9525abf50ec
BLAKE2b-256 3bb45e44e14ccd2f1a3e12687aaef24bd048fc1a65d2e713c837f87230418d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 333.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 527d7fe29ddca6252ad7b61596a19061bf6f50cfd4965b13f6b7d484734c33cd
MD5 c3c061ec3d4398100fa94ae209ddeccb
BLAKE2b-256 a84800111399cb3798bb7d23af403dff9df5f7b904c48654639dffb1077ea4de

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05bc09acaa865ce65e63b7b16c2c65ce6848a5ddd0ce6a7901c559a5f438209b
MD5 cad57d9882ca8579e0ba1eafe50935ea
BLAKE2b-256 5f765ab4ecefd2a4623e3e48a2de876b3c43f3a65785a793677d41729da9193b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c468f6687431927dba7bd16df2bdbf6e68372507dc8a129c134adc4b8b3b4b6f
MD5 456867839bc4bfd99ccd758e193daf63
BLAKE2b-256 c2fec91321c4658818a7a11014520f8cb19a6b384e8572e802e98463a952842b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f2011794b1382564d47263a97dfe693a58567adb62ecec91ed6bae545f9821a
MD5 b30cc24d4a1560cd22530652ff451360
BLAKE2b-256 31c696216e9b0a340d9d56fc83de0841ca0208c560383d1e236863e64a3b56ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ed58c89ecaf7255cb46a124e96d3b5b070c3217c55c8b6e572ba5da5aee99f8
MD5 2986fc3f4b8fa3ec7dc28d66c9e614a5
BLAKE2b-256 1eeb9cf782b6ce0c2787260100bc9c2812c6a007af86eca7fdae027f007628cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ce6fba8b0e2e32cf8a27cea3e4863601382a0060b2ae54aa2b0fe09caeb98c9b
MD5 c3f7de324bfbd4e37c065260ac093452
BLAKE2b-256 95ee431a4fc3af8d8e63bf2f8460e91bb4ca6468f110b248d7f111eb623d41f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7df3a42d45efb5b29e2ed979fd2ea7cc915b9d51e8adf7113ce6544b3ac17c1c
MD5 51d966701b96d452e8675d6492189649
BLAKE2b-256 49c435eb445e2234d08d8ac39db04d362db00c47a4d5a8b2357480e38f742fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daebf520c1ae210673024b88dc48e9f5b7728443441ef22c3ef82360bbcf5d14
MD5 74e3476e6e9d7fbf577172f04c164235
BLAKE2b-256 448df2162c1f8090887bbbe9516d5f779be7ae2879393538167e54a0186d5ef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cbc9a956026aa88794effa58d03e82200d10ea5b0e897b6d1dee3f54f9d3722f
MD5 2c31c9d1057884ebc2a55574690e4154
BLAKE2b-256 ff61cd40fb91397629146dbbde549546b63fbc9290e27b8200a1790d021fd238

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 341.6 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 efbbce776fcc49aac6688a3fe3b4a5eff1cbe179b935f4bff6287c9d222ea59a
MD5 add114ac70775df3cd6d6b368c27022d
BLAKE2b-256 7bc39ad3c12f83ef545925c6dae9386e2f59ce9d7c71ca15bae31de29d9bd8f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8d37231a8aa7dd2ffb64f6442d0827bb59417baa2c59d784af2967f8594dc6b8
MD5 4c1d5a5cedcdc96b8aff3b3eacba315f
BLAKE2b-256 9d25d8df39c1156170e89a20e24f564aa5cd270831a703d93f67c598d82813a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 309e0bc779e54d9dfb4dcc09f50128ab5c8ef054a42490808d9704fb46b682b6
MD5 3725ebd2145068cb53f4ff2df2928bd1
BLAKE2b-256 b2a390eb5c27ee9c48cd81bd1911dca2d39dfd69ed688b4ba05edefcddda4792

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3345083e7ffc44d8aa09a162c74b1600d1b669b13a7c2fad75e9db9f8d8d462
MD5 40d637869ef6ef757ed2a57e86573946
BLAKE2b-256 ef20378769463d851e96739de6d24ee5e17e921bdc4ae1996c317cadc0ad5e7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3e4717bf74413e15f94a066b0e9e788510fb9d0b02a85c60e74c89215f4fbdf
MD5 c889f2717d976b3303731e4349c70b99
BLAKE2b-256 b0f8def0e2457c54ed61e83cd9d81c2cc65bd10d895eff10ee6cf05edc2ec1ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 63f70af15e4f678612981740ee47a215fee628ccb25628a00e8e2b1025751d95
MD5 7cb9292ce0cb157dc5f6376894f1ce65
BLAKE2b-256 ddef418d42bf65619e188990dceb1761e4b637d0ab06a64e18e201b9f7c3e549

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fd3458712beb5c1f261dcede1f7a17ad12aa481cf67da81867cf99bf6024f0a
MD5 93794a6f6916b7542ae59d5acc4e224c
BLAKE2b-256 326d1c47d0277070a2ebbe4f45f302cb533eb44dfa23ddd9b4b27fc350f0e84e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7da109e920a2fc6c47b271cc1fbeb5980c7b3a5ef05f0895e68a9c4d58d67dc1
MD5 9ac112ff0ad67f4fa65f842e17f4e8e6
BLAKE2b-256 480dd7762c631f2dc663f608c9f72ebc23cdfda30ef422e2cabafa3b3c2a2e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1895d7ba12dc42db79434132e61ae3f0369b0a116b70db82dbf7dd1b54785fb
MD5 e3c9bffc883d55ab5bb17bf9c82e7712
BLAKE2b-256 86d680198bc67a26ff8a7fd7e7c0f9a08d58fad166d41bd3ff7b2bf8e4e60ad4

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 c85637a008a8cfef7bffe49b7efa3764b74d724be3923901b37c826e259c5cb4
MD5 b77da42803ea5178bcdacfdc5a539c6b
BLAKE2b-256 86ea6d29b3263069b447fb045568d3265e192aa2485cae3a13b969f9722af32f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 389.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c6e55df6faacac375d97240c71f0b4cb0f0ac00379514b1e7b582e24e09f7dbc
MD5 0e9bd3075be6866cdd259683f7a5c824
BLAKE2b-256 f1e670d325200b133963e52db28f81ef22b5695c16fe98ba580e17d1b9c2e9b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 346.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 affcda3b622f8ed9ec6f0fdd43cf2e1ca054c772ef0820646a0c79648821ee79
MD5 858a9f7d96f3d39b9df5905580ddcd94
BLAKE2b-256 9738ee49dde0c937fe5d84dc677dcf039d5dbc451dfcf44c666fc4f564712722

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc562dd88841bcb82c9909d2b3cb5bbeb1611c23e83697a976df94f0d0131ef1
MD5 ed16ae5f28478424370849bf81d8c2c1
BLAKE2b-256 ad16561eaf7b01e7895d9dc7b61d287e2f4bec4ddce0481226f34f520f02c31d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 744300ae4b0d9688d916265d564d4da6f4b1df8d2f56169881ee7c71d3d192f1
MD5 ab9041f031a3e0c7cf4ca11e9d441f48
BLAKE2b-256 b2753eeda46c86f2d21db68b2cc8901d70537adf04a101b0662a3551f688cb8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45f987e99c63bda23dc78327531b8323f8dd6077b0d1310f017b0d685143d576
MD5 70e00942c290b05a8cf13ae16e621662
BLAKE2b-256 c37bba89d4a84dc144cc812da07f4580c333b09720fc49a79ed99b6429a56cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 269d21b8910e25f633d40159921311c5dda5e091b97fb08533caacf423b5ec2c
MD5 be0b4301b8a4a6ae76a882c754d44c45
BLAKE2b-256 727d309fc64a28f1525cef7aea233e4e1f14f7271ff97b1167151333bd7fd0a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a934031e794331d2055235f85ed5a8a04bab5e087b56ca73006caaf2146b6ee6
MD5 62bd318636742cfcfdf6c86e6b221391
BLAKE2b-256 f402258f033c115de6878ddffd2ff42c11618b965ff5acefdadd69d22c65163d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3a96149e4708dd9a1b741df93fd924e3d5074cff9f8529e8c04794415bf5e7a
MD5 a8da7f2886ab758a95f2913ec8b0cf31
BLAKE2b-256 8e9adfe47e162562ab5616e054b800099c8e10560a8ad37393d5feaf790c3bb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 342.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a73541261b7c43898ecbb0b0a97b1862af297a6daeeb728901c71b62d0f7d961
MD5 868c99e261106f4d43affc89148e513d
BLAKE2b-256 f21b1f43c856bd62bd68b1c2a8115611831865b106a7797096787f435b837b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-win_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 391.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bd93e168609799b3d07441cfda65e167574638d0f725f196702d9b46689a2da
MD5 e8ccb2356d98854d82b53f2386734fea
BLAKE2b-256 ffde094987cb19a725f2629f3b5d28d9132092f1d1eb483002352d7e5458ca97

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiofastnet-0.7.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 348.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 592427f34c12611a05cbe8fbda1196e0d393f24928ad6e26352b562a6e5b98d0
MD5 d135de150c85669522e7bae18762d439
BLAKE2b-256 1552522e2b91a76b850f8d43e013f07b18387cdb9365a9381e34339585acb79e

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-win32.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c455b2e76eea90f12c654e5aebb3e169192ec93a4e535422ea502bcc28361100
MD5 0cfd73e2c14d98aec9c31891b2f92d56
BLAKE2b-256 34ae92251016c504e11d8cfc7690e38dc3912c1dd9762066234485fa37e1fd14

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8eb4c3aad9a97c991949656949184c713122476b2734f30716edb04a6ce3a46d
MD5 78b42e4ff3dd6be026039ca110013b33
BLAKE2b-256 5bf2e20a00ede053985bdff8d6e2ab88d60319f50a32b64690648e163b5f9852

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1053356919194db89896530200adb698c0e3d27f44e5850cbb15ffd7bf2009e
MD5 0f4e809a06862a8603169fbfea5b1d06
BLAKE2b-256 9fd98e7b2339df372d5ba0c0095c7515da66c76a4c30cdc55bba498c4d69ad0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27c66bb31c2e6b7b1a7821b06cc78b65e49d32b3b8830dc271f125c4632f7876
MD5 8e1a665441b41604ef0a557c5fd81e83
BLAKE2b-256 5c743c168f41aa0452b3386e95ad6052b4355182d3dd282e185bbd727119f7a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88e441f4ece1e76249743a3f77411dc3c1f170eb091c45b5b5292c981ef2e4f5
MD5 37064672fecd6b71c3655dafca82c1c5
BLAKE2b-256 289452e2287abcc0cad9fa2d4c30de18c253e586a211eb4862bc001da9254b12

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file aiofastnet-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fcdbf3ce3b54852d9acf7eed2afabd5035bc371f5447d62983a796080d972960
MD5 e44d3b406155a61b9080e564cf428260
BLAKE2b-256 0541ab13843346f4b948684c316f4ff03ccae91c74357aa68a1841d1958642a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.7.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on tarasko/aiofastnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page