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 optimized 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.

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.

https://raw.githubusercontent.com/tarasko/aiofastnet/master/examples/benchmark.png

Source: examples/benchmark.py

In these benchmarks, aiofastnet is up to 2.2x faster than standard asyncio.

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

https://raw.githubusercontent.com/tarasko/aiofastnet/master/examples/benchmark_threaded.png

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.

  • 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.

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,
    )

    await asyncio.sleep(0.1)

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(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.

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

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.4.0.tar.gz (245.0 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.4.0-cp314-cp314t-win_arm64.whl (307.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

aiofastnet-0.4.0-cp314-cp314t-win_amd64.whl (401.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.4.0-cp314-cp314t-win32.whl (342.5 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (415.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (407.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (410.6 kB view details)

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

aiofastnet-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (402.8 kB view details)

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

aiofastnet-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (356.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (364.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.4.0-cp314-cp314-win_arm64.whl (286.6 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.4.0-cp314-cp314-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.4.0-cp314-cp314-win32.whl (287.8 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (400.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (387.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.4 kB view details)

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

aiofastnet-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (382.4 kB view details)

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

aiofastnet-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (333.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl (342.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.4.0-cp313-cp313-win_arm64.whl (276.4 kB view details)

Uploaded CPython 3.13Windows ARM64

aiofastnet-0.4.0-cp313-cp313-win_amd64.whl (325.7 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.4.0-cp313-cp313-win32.whl (282.2 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (398.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (382.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (394.5 kB view details)

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

aiofastnet-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (377.5 kB view details)

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

aiofastnet-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (330.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (340.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.4.0-cp312-cp312-win_arm64.whl (277.2 kB view details)

Uploaded CPython 3.12Windows ARM64

aiofastnet-0.4.0-cp312-cp312-win_amd64.whl (326.8 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.4.0-cp312-cp312-win32.whl (282.6 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (400.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (383.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.7 kB view details)

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

aiofastnet-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (379.7 kB view details)

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

aiofastnet-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (332.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (342.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.4.0-cp311-cp311-win_arm64.whl (283.6 kB view details)

Uploaded CPython 3.11Windows ARM64

aiofastnet-0.4.0-cp311-cp311-win_amd64.whl (326.0 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.4.0-cp311-cp311-win32.whl (288.1 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (400.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (388.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.0 kB view details)

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

aiofastnet-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (383.8 kB view details)

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

aiofastnet-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (334.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.4.0-cp310-cp310-win_arm64.whl (283.2 kB view details)

Uploaded CPython 3.10Windows ARM64

aiofastnet-0.4.0-cp310-cp310-win_amd64.whl (322.7 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.4.0-cp310-cp310-win32.whl (288.8 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (398.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (388.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (394.7 kB view details)

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

aiofastnet-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (383.1 kB view details)

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

aiofastnet-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (335.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl (345.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.4.0-cp39-cp39-win_arm64.whl (284.6 kB view details)

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.4.0-cp39-cp39-win_amd64.whl (324.4 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.4.0-cp39-cp39-win32.whl (290.3 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (400.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (390.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.4 kB view details)

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

aiofastnet-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (385.2 kB view details)

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

aiofastnet-0.4.0-cp39-cp39-macosx_11_0_arm64.whl (337.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl (347.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.4.0.tar.gz
Algorithm Hash digest
SHA256 aa02cd430116566b0a2c32cb517e9919ddd244aa356e96c33830ec9c65bafbdd
MD5 fb142ecae87c9b075ac35ea8b04fb494
BLAKE2b-256 99fa5865e09ce67be2023ba982001c3f39fb933f779131bfcfceb07951fbf5c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 307.2 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.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 490b0a578af4839e84bd275101dd22317195d59ae0ea59c6df5ddb700082a657
MD5 caf3b3b61473fc5248bbe676fe060be5
BLAKE2b-256 e7c3e5a524616b388a2bd6b212b8b980cd2e89f4e05823eb3d5ad343f3bc409b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 401.2 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.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8332121a8240d2c0c29225df2e3e2842b038750866bb5a1724b2aa723d6738ae
MD5 4f19bcc668b61bb2a944eeb55930f2c1
BLAKE2b-256 6c6fec38d00dea23a7784047954f0f3c2afd812c97ef0584794e27502460ef05

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 342.5 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.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 b79e26b9af8f81dec75cf48f9814a0ed69eeacb131961ebeba3145b048de2d81
MD5 0b5872d9d0611291fa729b06136794aa
BLAKE2b-256 d1e56423b7049f59f6070eaff018469450bc4aa365e269ca69bf032604f77777

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1028208236080e9083ef55fc2fe64ba3254d3e8452cc326da25f6bf8e42a7ce3
MD5 f4f039e2f96d5787a1cfe821ae2957c0
BLAKE2b-256 43fe3281f5d89c8192d24f208a6b4ff1032d875abc85b3078abe3075bb536d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b563f9748662c374e95e017dfdf3315aeec2bf073fd85d43a56f9bd9882ad822
MD5 d5230f8e89c5935dcde1b5b211b42b3a
BLAKE2b-256 ff7cf30ce22861ac0b98c283a2a9f7734e95f572931fdd17985f1b45bc344dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 686806c0880779f2c9b38a0ebb8e2f555af288ad75b727784c9db907cd7398e6
MD5 0204796a03850d6b84e3e54209073097
BLAKE2b-256 90d7d4fe5733634e0520f53ee2f57ed3e9f33257eb488d34a7ef48b455b036f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0718d5fa1f429d474086093186e197d3e1fabd41c84053a8f622bda89c2d4abc
MD5 63132249105c86131a069324fe38a4b5
BLAKE2b-256 6fa7922e83048063e40e310bbbb275fb969c7e63fa07b5dde61fcc2f061435aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de85c736db2f9a4e5b1d0140de1d77e7ffcf5bc60984a24a4d1852d7f6dc2365
MD5 de7ecc51b1a6b40719a860caecf7c0ff
BLAKE2b-256 b098a5404850c38ba81d1ba77edd85f1ca747f621b802ffe872ec6ef2fcb2d43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af6a393c40ed6e380faa3693a20e3184b56257a7301648b67933f28907a1c0f2
MD5 31c45a249804c59a67a9947e48cbe216
BLAKE2b-256 0e3313b8a77dfc17ba4a28ae331666ef7b237f198ddb7d52436bd5e6af925712

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 286.6 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.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ca67580607c2f5e3aae9d6f723728ccd741550aef29214f0e03a0bdf165298e2
MD5 405fd850aa9bd57cd16dd1d44bcae409
BLAKE2b-256 8d787db2a220f83971506dd1c2a5e243dbc843ebc5c33c88fe8fa045fe801dd8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4a2012f133b20528be0653fc38b5bf4cc3c83cdf029df1a336a4fb7140657fbe
MD5 1630dd0d265115f272037a09f25f5958
BLAKE2b-256 71fbede67bb795e5014b4ce383c22621586bf993aebc7abc3238d2bf047fef6e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 287.8 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.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 31fadc2889ae40e8c173f290d3b215bc1d25e9c371cdfb8ce112e63dc5c288fd
MD5 e56f98a67cdb0afde1cace8857b490db
BLAKE2b-256 46a2d340e72146820067c0c493e74ec711aa1b4b7558dfde7cecf3a34d6b1cda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5514e2778733cdaf724f2ca2d22d119900f71249a9b5471739c9d14ae9188057
MD5 92b248ea91405e691b9762d33cbe0d40
BLAKE2b-256 b1fd2c24662975046a3a84c6b713d02dfcec046f25b63f83446b90c02f2d1732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 779916dbb12c9b9210103bb1957b1b40d58120f5ffbf6e4ac27136de6085f4c2
MD5 4ec210bfea08f5eda7a98ae005caafd0
BLAKE2b-256 09328b189964d2af87f01a1514f1afba80c71c15944468917fc2f772b3ff694a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f61fdb799a32b5ccf7365cc1270df5363ced975e82f96a8ece28ae809ce0b4c
MD5 232cbd293ccdf0b6a92781ada7dfd930
BLAKE2b-256 c3889e1cbf905a281caf208cf8615813443dcf611977627bb193259d2c918ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c707fceb680fa87ac0666fcb14bd219785a4adc49eaa14cfe1a2173ef935991
MD5 22bc229d49224726908c6258b157ff04
BLAKE2b-256 07f5f9f41f535a45284b3a7ba5dca40cff9b214445af67d3c9aec77f95a15206

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e72d928deab91d99e3b9bee5f3eac08bdcdeb1ee7b567f05b5fcee723e87dfce
MD5 ea9900135e3e077c5f92e846b0fc2f35
BLAKE2b-256 f6c73bbb68b91f81e45f9ac02d3a8af2cdf7a5dc72ce01cdc20f65cce4270ccf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7bc267c4436e95a05f8be939a9939423260cdfd63110c6f1bcebafc1575e57ce
MD5 26372304eb5aadf81fc2d46631f56151
BLAKE2b-256 983d601df24617aa9ecd3222949207c0eacf480003adbf3fb3271eec76a1d44d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 276.4 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.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3ef0484306acd16a644cf5ac85437e8ff7bfa62dae805abf297f15cfbd5a49b5
MD5 8844658066773fe3c06c795a20ba0241
BLAKE2b-256 a376576acad6771abfa6d42e03f9c07862bae981d9eb02273d5ce5ac5f37ba5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 325.7 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.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92d69de255654cc0dcf19a8e5ba3e34bfb22e560461e01cac185d24ec094f6f9
MD5 f754a53a8a229b961957205fc39788fc
BLAKE2b-256 4b9ebc962370031d08054a88c5473e0c7186a3a944e9e901f38a4e7b5c16be71

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e70a8b89b91cc8f088f44067c203909698346f91c59f51b66adf99e47a8c10a7
MD5 b21505e1d7b2fc6407dd8472da33b76c
BLAKE2b-256 5d1a6f73a1414efab8125dbab3a33f1ba8b91c7ad9a7f26da5518255b42f69e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d0890508fd6785f378899efa13441a22fe94c354b42022174ae6f17cf017a15
MD5 b9a44add14e8c12c97594727f04e48dc
BLAKE2b-256 629603740ce2654c371ea037ab13a05d36229211cc9140bc1e2ffa5dc03121cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344e080753c56c9bab43fbecb987d5e875b623673faca1ebcf5d1d0e2b1c2649
MD5 d0119c0ba4d0a176be3cee9dd923dc24
BLAKE2b-256 3bf85a995f848456f0e730efc30b9bd5069349e7057a254a60fb3a026d7f850d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bfef0f1f1f3f9dfeefede2e0761b0c6bf738d26be1223f45879e20031cfda19a
MD5 73924ccfc07bb7cdd3cf7f8d59b9967d
BLAKE2b-256 3e2f31eff590b26bfc140bfc80d529138abbeef607ad443a2de418b2268cebb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f94e4247c217edb004c48d2c7323e2b9664d6be76a6c9e4f7f8d700031554d26
MD5 306bcb3b7036ca898814d5cd349070d9
BLAKE2b-256 8f2fbf84382e3b361ceea2939e500b78cbbba477c967db20e907798612a46868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90119bf9916476d501f4d8a0b7ddd7d409777ad10c66e7503a11779f768c6340
MD5 286a1720e4d8d8bac774a6361afe3d65
BLAKE2b-256 62e6fd86b8763e8a6054b4364cc0334a21b5d8ae9c4c6e4d6a531fac9e72e0b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d879166c0dc890326c26c4aff5873e1e4029fcd5efa5c8b0f1fb5b9a4686ea7e
MD5 4ab2d8566c7ea550c8d33341396657f1
BLAKE2b-256 5c2da1b3812f153f952c2a5d329b7c58467db01cbdd7017ea71a0623ddabff21

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 277.2 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.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fd0fe0d1de402cad8f66a6c1eff4520cad5d1db245495f30564569e7473052de
MD5 f351ce5c1d984512849c1378d3a7bf57
BLAKE2b-256 c9374fbd47cfd2818380590a226b99fd7190a8b62ae4169a76f2202667470404

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 326.8 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.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 53337f943ebab51d2e132e88cdbb276ef6d0d6a372e143f268f2075df7101679
MD5 d48ffd64ff024f71c6121323a0a752c1
BLAKE2b-256 d84eb7850d5c5ee349b354bc1a045afbb3625648aa0cf222697ab5c9e2c47d7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 282.6 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.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5822e49e83ac673c3509c3091eb6ef22ea929c49bbe014ec76d0108fa05a8c5f
MD5 89967d108a86bd02d2937ccebe1f4b60
BLAKE2b-256 deea0ea6f1db51defb2083d2ea4ee81d55eeba1761ba2aa6d1bdaafc89869e67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2b3d4d9d3e7ecddc5ab176e1807ad1e6aa6db77c3215d443a49d8dae1a2530e
MD5 754530ad73bd9eeb2534aedcdc0f7c35
BLAKE2b-256 f586096f3c5a0d0125c37da6dc8a3567a92ac6b544e67d9fdcc29e970aa424a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d793ce98a156e21a76f31e578461b0cb1ad55fe5d74c68f8e44f9ed0de46eae9
MD5 12f057b36a63785cd354f87199cd5914
BLAKE2b-256 4c41aba1d89a927d77d8eb9a88191135eb7931cdcf2db6a0d1f5a5c67a80b1f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1f4f81a1aa5ef7762062fd2d11847acc8f56aa2e3775b5ed7c7fb32afaff04c
MD5 4bc6d6e3c8b308016e53ee00b2671647
BLAKE2b-256 a0443604a3de600d78c2a4f24925afe0e46c49a5908706b315be8e6a25ae51ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d65b734f53a34ec722cfa6b6d2460d82243e2414b252a473e48dcab2b27a34b1
MD5 96165196779891c77af6734df0b630cd
BLAKE2b-256 f5e8daa79fd2c779fcf405134c02e17acb0b9dd7c8e663f220c1ed199281f637

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63e988bf095c8a608aaa341c2a9560613ec661818c1332d4298e58578894ce88
MD5 3282ec09522d423f5c536cb36a7912fa
BLAKE2b-256 57cec2e734c49d3a6f4003340e2a31e11d3d60bd835c9da60bf17efe9a6bf784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d67fe15b1483b8afb42d12c75c6b4a128445cbf551ccd40e2b02ee778c913858
MD5 bae50f58df855960ec56b6211a585257
BLAKE2b-256 9d681b861d2251a9c1b9e1eae3b17cce99cb0af6b362b5e00d797d8cd0c79615

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 283.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.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 27777799cacbd11965c067555bb438a35c569e93b5d9904771b4e6040bd4dc21
MD5 e9f019de115fd7f9e24c9ce83be957b8
BLAKE2b-256 1b86d6cd86044e18437ff2a1b72cb25cbade3eeb5b0afd3d60158964c11fa31f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 326.0 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.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b6fd0957f764a6bed92cd20b100da6de3fff92979e51d0ddf51827f15efa0b14
MD5 39ecb6e94ab6fea42301a01b35d3226d
BLAKE2b-256 699b43e0aa92647a98b2994c0452fe02864da876e5530fe8f0a408eb0b4ef6c0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 288.1 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.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bb2807b67fd17c0edbf499cd28b03b92156b3ebab02f00da7a5aad41e7f6772d
MD5 b624d1a32d0b6fad9e861fd0601ab9a5
BLAKE2b-256 75dfef6cc29abc1d1e73b05dcaaa3ef6a3a1cd1252a8b98e84a8775f00e8a49e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14719441213dc5cbd4d714d406534831a9976e18640ea9ae10eae24347ae5cd0
MD5 f4ae8244995518c0639820ab7ce6b68a
BLAKE2b-256 7aa52839f390e28f447e528b07dce1c86a21bdcfcbbb6cf521d46e079670fb1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00e4a979dcafa180e6dc11919115fff2d9f560864365b8ebf5e893522b713baf
MD5 dfead443902486a85688539d1bdcc2ce
BLAKE2b-256 ea78c4cd4b5113238c6e1a2f6330537a46ee8636d85bb5a2b5b423a5ce267c03

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03522b6df53e12c65bbe3deb1587f67edd9babc2a7bd19c7bf15d4d5fc00976b
MD5 2eded34c459e119ef82ae6cf24423d6c
BLAKE2b-256 07f6c475e8020fdea17cfacc476db11bff29fb91eb6f0c3bdd033b0b2ea76d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6babf96c98dc4e37babb187f49dc8623e5f900f1bf23bcc38920c418f5ce1ee4
MD5 631d5e25f5c7dd5f0f2607d02d1a305e
BLAKE2b-256 76f6fc75eec9d084996de8da28f481104cabffcc0684a50c9afaa644ea3b8928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 961ed9acfe0ab71bb016b7c494f158df08fac3805a0a069e207cba8dbfba3606
MD5 0de47d201cadc89692eb87402742134c
BLAKE2b-256 7d5a01f1f1fcf2bc231b262faa81cf715b1e1d54644e06f33a0a61281fc51d02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4532843f99955da941f0603fe9410a59f69e7320896826fa90c8fa684ec2db65
MD5 aa9ed588a049bf8e90704870661a3191
BLAKE2b-256 9a1952cb0579b359dd5d1629afa249afe167e5d6f21fce7c92f2631081656558

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 283.2 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.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a6474b3fbe91e7b50e82050fc9d80d9e28b2bb5b2a953dee62150036a6961575
MD5 d4e11bfd85f3eef241909206c9f70149
BLAKE2b-256 f17e1e01db5f0245e20c469de52d7819ed69dd5d09ed4d2b7823fbd4566dc751

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 322.7 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.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a894e6829f874af75a48cc11c7adc18f65abe5732e813f6b39bf6a59b525d8e9
MD5 a9e49c57a61322fbdd529a38e906327b
BLAKE2b-256 8279540aa454f2fcb7aace3c9ff539ee04d70edb36b9c9e75687842de3965205

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 288.8 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.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c856c112e85ac5dbbf734dd443d0b5bb90a8b1d789e5244d1e7cdbb81215784
MD5 8fc1e47aa157b85df7266290e526cd0b
BLAKE2b-256 56702772dd3721500928836c363e6edffbc213de25d6c32090e8411c46f5e3eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f867910e56d003a3ed502a13dcb8cceb3c9e9253aaade7bb4dd0b5ec3d9adb56
MD5 697f60d8f7e8154d895df9ad49dd883e
BLAKE2b-256 05fe997594ecab91c61e33cdb50765b5635c5e53f5d8e6498b3ff50133faebf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26de2009b4eda7f22b6b5c8d142867aca51c7b78f00af6a797dcf82baf688103
MD5 9171d2e74902801fd6ee88f00f34d24c
BLAKE2b-256 946720817178a1debcba819b934a4f556190acce68771272701323d260a7ec6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5920e6101b65959d91282b534832f2fbf37f42f4d034f89687f4f47a17294f3f
MD5 5554f3da3bd72507a12c534eaf23f6f3
BLAKE2b-256 c1e05ae8644216de5b7b6bd3d727e382a616cdaa46b8f11cb4945366fd7792c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4808c21b4e8c44ba35b9821f6d98223f6260693d40b11919074a27a2de5afbf8
MD5 21b85899834009f18845346520d71f55
BLAKE2b-256 f0a7918cdb10f1b133fc42de6b1ec0af3f2dd8fed395e250ab4294defd041084

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8797564b789f9616b2e5ddebc20be52cfcbf80929ad05dbe603c3acb12592dc
MD5 9696db35d61d3a5aa881ab52aec63bf7
BLAKE2b-256 deec29a3dbadb93e376f5bd5d6fa8b6b921cbe6a517f1d30c8c999e08e1f1e83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a73150c40149814c231ec7f2f72965ff7cf06e04c9e245d3f2cc454fe7ccca5f
MD5 46fe7c8963c42f1e62e65018d51fef29
BLAKE2b-256 8a5273dcffb4aa7017fe313e0ceab9b022e515b5fa342aaa2ee0c6680d2afa65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 284.6 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.4.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 aa1c424488a1ae6624226d5bb3309e50a3f258940d29698c0495901976933de3
MD5 52bd7126d0fea6b22e183c0ffa6b1b5a
BLAKE2b-256 07150f9ab5d7ba8e60a780c00c3ab4a60a6265f7ab842c6186a15647eff677b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 324.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.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 93cf21d55f4caa0ce98faddfafbe222e79a75337fa452d98b3b3f3ea6bf567d7
MD5 203a943d5d549d3cf215891c2193a593
BLAKE2b-256 3ae48f8bde6550d60a81c3298c1c884340067fbdd27aa2b1a3abc7d3b43112f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 290.3 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.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 20a81d8b1d374ba2e57ecf80e50c8c7794386f2f561e0efe7ddd9d237f486291
MD5 f37883b5a5a6a4ed8ca01a0d2f458469
BLAKE2b-256 5b55b07f12419d1dfa4c646f423f4eb8ad86cdf709ea45fc65c559e0b87cb67d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfc3854df9b2a9e9caf48d34bdb0bfcefca8be1210cb6bc8f0a29787d4f28a60
MD5 35df013646d8ee733a44fbd420f80eea
BLAKE2b-256 a97e1befc00bc0ab5dd4f448581a5d2cde348b38d87841f883b74c3998db78fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23b91bcf5eab314f77d4321ec6f30d537849fe5db21192c525732e6d201c9c89
MD5 6c98ee16afae856b526277a14b8855be
BLAKE2b-256 44bb4ac37611ad2ed32a3541db974a2c5b133e0ad0305a1be68599503b3b818f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.4.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.4.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.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d253e0a5725cc87b08db9406afd293f5d23b9dbbdfc04009316d05d2036f4b2b
MD5 da513e9548a0d1a30b7e81e5bea74315
BLAKE2b-256 a98f8e08559ec777b48a32d961fb8c37c76263b2b3a3006e4f31c6320daedeae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7df699509eba2715afb797ed25db02be57a809b29e5f72d737fcbce2037cb08
MD5 fcea8aa9525582f366911c7a2666f51f
BLAKE2b-256 b094e95e473a4311b61994e2193f6a1bc035758bd48e2d005eee2585c0fac9c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a202acb031869dc33b543371ce69e2c4d8a104556522b8d86f7970080dcf712c
MD5 2fed9c331eb3fec244ac435dd7d7e0d1
BLAKE2b-256 a6d13138649e0436e4666513256637b68f4c0b9631651311b36b924f38816321

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.4.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe7c4cfb2a5c45575f6584004c53fcbc309204ca0c12ea10d2a70cbd51556815
MD5 8a6eef6a61162cfa30c5376941c91059
BLAKE2b-256 187a7f5246741e40a9b59b9c74bedc38cc8f2fa0db4bff0321c2adc6ea4fa54c

See more details on using hashes here.

Provenance

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