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.5.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.5.0-cp314-cp314t-win_arm64.whl (307.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.5.0-cp314-cp314t-win32.whl (342.6 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.5.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.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (407.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.5.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.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (402.9 kB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.5.0-cp314-cp314-win_arm64.whl (286.7 kB view details)

Uploaded CPython 3.14Windows ARM64

aiofastnet-0.5.0-cp314-cp314-win_amd64.whl (331.9 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.5.0-cp314-cp314-win32.whl (287.9 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.5.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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (387.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.5.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.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (382.5 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

aiofastnet-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (399.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (382.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (394.6 kB view details)

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

aiofastnet-0.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl (330.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (340.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

aiofastnet-0.5.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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (383.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.8 kB view details)

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

aiofastnet-0.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl (332.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

aiofastnet-0.5.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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (388.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.5.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.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl (335.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

aiofastnet-0.5.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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (388.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.5.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.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl (335.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

aiofastnet-0.5.0-cp39-cp39-win_amd64.whl (324.5 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

aiofastnet-0.5.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.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (390.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.5 kB view details)

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

aiofastnet-0.5.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.5.0-cp39-cp39-macosx_11_0_arm64.whl (337.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.5.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.5.0.tar.gz.

File metadata

  • Download URL: aiofastnet-0.5.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.5.0.tar.gz
Algorithm Hash digest
SHA256 2107cdaef02fb6351a63cee80b89d35b06e3076e3db3f02caae58fe0ddc0723c
MD5 7284e26d2bcc841268b129010438b4b1
BLAKE2b-256 551882344c31fa0205ea55f9643472aeee4b0d692387f6f842f274df339e2281

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 625fc9154e3f370c8c0c1924a4d567db3ac412eed81fa6c9fccc5821a5604755
MD5 1a66fd608ee22ba250df271d2755e6e0
BLAKE2b-256 eca3a28dc97f2ac3537f9647a0323d1de7fe36fa672bb478f60a54d03fa24b5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8fa6c43b4869fc6bb99bfd1516aea66b9310791e6a5e7d0f2c3d11690ee621d5
MD5 f814c9f4c9fa6fa30b1235e475a70c70
BLAKE2b-256 da5d80a10800254396be44fd86b4fd77990bebe9b3d4e86781453aaa8e105d8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 342.6 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.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 486db0ce8c1dbb5db28c40213e2f277390838b8b9b108c1f9886caacde756498
MD5 13385c16ba9c20757f5f531707280d82
BLAKE2b-256 08ad0a70a25e68e08841e0d7eb4705a938bf577cab5869e5602b1c1a16c3669b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3cda61a75785b44a7be4a485a54e99d44816bb434926e658fd6de3ec8d08053
MD5 848c647e905c2396005d22a93d82448a
BLAKE2b-256 e9c872e5f55ad6f4d0d70284c27ed7cc01e6c3a2e216fa34397009d74443006c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cd9dd72a5ffeb739da19caa6fca9859e54478af8692c0c289c9a719a9a6969e
MD5 d325df4f9137c82b3aa808e42e06bca8
BLAKE2b-256 2cea5185094d704149ec6ee49296285c3950497210ccb20fde560cece002510f

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58008f4b60af5f8aef6c8730a1b86c7ed52ed59d9554f3cdc70724a6c09c58bb
MD5 9712704ac41cd125bb1e967987977a27
BLAKE2b-256 ac2685de8f506c8eaf8c75c1bff8ab60da0563daefe3b31a8812cf5da87cc424

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a90ff105ea5f204fde98e66d68ca473a2bd65e95decd97853a99138fb4f325be
MD5 f25aeef060e9ef21904cc82c9b4fc273
BLAKE2b-256 a6fafddc231f45d2a9b9a172b4b633b64076bcb45271afb1adff90de1d2921de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e0d2cb1a7f2b03ed3b08f5206548d0b41ad8ba5b9b7b2b20353066dc0c85470
MD5 b0ab5bcf4c5982020d10d752a42b6dd4
BLAKE2b-256 34d829f801c48700f7d9cd632f4cd042a2f49450a73d2c5f1da68aae4eaf2f55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f2385c33219db60bcc906025df45dd3287b6d987209ad6cea81808ca27e829ea
MD5 9d3530eab3a3c78718347ee24f7b36e9
BLAKE2b-256 c7f5acc203d3e3bd020862925b945623dcc6c46fa53fa81a37bfe8b16f2bc800

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 286.7 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.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7912ff1033535b375e3a18d9951b4dbded30d8feed8265e05be893fba747d75d
MD5 5cd6cd1c62fe98a19839e1a1500799c4
BLAKE2b-256 30d0e1e7f8d4e886eb99296b240b734c9afcb6529acfabf83793d2144d56ff4d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 331.9 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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bcf82a2c1d48d23a11489a6725043bc9dfb607f2e36058d25f782b69988dec56
MD5 a33276d9936304ee4f7a673ac1814afa
BLAKE2b-256 b3ebab1328d7a15dc0682ec0711862c639ada5217e013c70e41ab8c126cf9478

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 287.9 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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d3e6d864f0460c7c6717a792ac0dcfddffbfa8d9fcc26fb3f12d0773a4119afa
MD5 c682db14a07930ab77a68cbdb63cce2d
BLAKE2b-256 65d886d5a165e0d0f3bb2678f674eac3989f74659fb85d4c6b0108f4f64b70bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 990507a1079c5955c4c6687af8059a92e9694c40604963154c6d63bdc8fdc2a3
MD5 720e211253b95b1c8267e24f9441a081
BLAKE2b-256 eb131017e66f107301abdc269ceee7ab9d4e5ccfb79f16f784b7bf84ae4f8e08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b958d5fb34f1267753b84e009690806f040c4741730fee0d96d1e06d40347867
MD5 d196456299436addce6fa09153266627
BLAKE2b-256 880161073ed7f866f0a90b04ed427f40a6ea3477bdb3414200e5f3f30feb12d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ad86efb0719854a6ce9051d3f184f42c955dae185047cb85f9f3a185c89408a
MD5 a1e601c653b444ba43abdffd8b95faf4
BLAKE2b-256 f62ba02321679a3010abfb687854a7a24fb338c1cb806f077e12539f438a7588

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 506f91b2eda66c6a07d2565e427e1d71c3031d4da736e4a49e0819309204dea7
MD5 debe5d07fbfce331f101b7c8c8c06045
BLAKE2b-256 6bc88b35c8e547c8e7a21c2728ca8d4facc9bee8bb764f9e1e145dfcaf55125e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba3a9116bf9da250332d3448412e562d0c5dc29366c890f778a8d1c4f3c414e4
MD5 3792f2d11e06bfcb96108a68ec0e1bee
BLAKE2b-256 cea8eef7b40fd5b972c599652b983fe69feae9f9bf6dfa9391bcc4c1b6467910

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fd092b816891fc43872f8394986d9b25a89fdbd4c7845cb95e17ba486b7487dc
MD5 cd863124dee19ea8f04ae7e751322cf4
BLAKE2b-256 1a8e7a175ed5df793e67d9bb15d0da449cd0f3c7e9065dffef4ce0147809f41d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 87bd3541362c290ce07e9842e08f1647939f1296237a28dc7bb0f9d9dc2da74b
MD5 3f7d9b6c83a4dbae58c31b7ec74317df
BLAKE2b-256 d3a3908e876b4160cf5c126275dbe9d690b75f772510567eaf94d0c1370b7e20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7bad37dd5b15c79cb65b42a5a5c619b03a32d7c18ba5bfa1d5a56ad9b81690d9
MD5 9edf3c9a47621fbdf656b50e996d20c6
BLAKE2b-256 a46d4e5889c2a65c6732759fb5dc228e3360896f69328e7257bc221246efea88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f5080c9d6cb1b79fced19207c4416457da3a9ba61d08adb797cd4eced7361a7
MD5 eb795564fceb04e05de0861f638166ad
BLAKE2b-256 d91264ab78a6166b15da73739deed124b80aca21d2ba1f01d25ebf73cd9b21b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a012846349844da555d5054d56d4cdb527d10cb3fe9e69b040e51523bf676df
MD5 b339f6bc062da9e9b9bc11ca5ff56134
BLAKE2b-256 4fdba322014018ef798bc628d552fd366a4f2bcb8081cd2015016e600fa7ad2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1c7ef13dd2c02334a1a80ea3f8d865730755362c20e5e1aadf7b61221a8015f
MD5 fc22374721d97a23d83f72907c32b5b3
BLAKE2b-256 ffbb585988fafc559c695ffc6e5fda2b77a93581e82c2cf0e1bc887cb5c16c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1339ed9656255c2c1bc288096e2ab2622d20a91341a91ad178dc470ec644f419
MD5 c0adb04445928e78b9d4ec1dd1a061d0
BLAKE2b-256 1a0c4893c26ca56ca49a7ee8babdbee80c63b566508ceaab76cde8f6c60a95eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7da9aa7ca0f33fa67daf7e62a726b46e3d14a59bed01dbcdf1f8547aa7753fbf
MD5 e408d1d6361e18e57ab7a35c8ce1bafc
BLAKE2b-256 2307b371748ba757f7afc2ba0035aad44a62061d71f8f0b6105c12fdfe848af6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e118062c747d1f16c7171be38d2f621ec961504412b8e9d626db1c025e329dc
MD5 beaebca04371a17d31161e37fd87984f
BLAKE2b-256 26a05fa49dfc250851da7a5e9e46cc7d2d9d185e1729eb0173fe74a68691071a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bbe23f4aac82e23d845d27455969fc78536e27b83f705922bbb7d5aca1ace55
MD5 5804322bafe80c6992c09f3b5e881272
BLAKE2b-256 820962412fd4cc668b0fddc92a7f4d56d2ffca4176c99a4bd0ce37c2d23ad976

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 658bb24692e027d8bfa53818d315b1610c3d4b886d273d80e87badf827e3074f
MD5 642da0bafe7e6063f96a3d48e142ecc7
BLAKE2b-256 e2acd17755734c350589176995a0095b3db889c78171315da5b93eaa16c99b9c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74189778a3b9ee168c1acfcad3c03503c0bceeafaf3eb37f7571e83890522e14
MD5 974a41cedb83a32d8d1f49ed399dd3df
BLAKE2b-256 854da3735e5529254e87f1717e37c0a74677a39413fef1eade9a24b0b3d445be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7b8344202b270e411c0ea02f69d730541e0e1e0cb1ac7288ac17ec84479838c0
MD5 ea11e77e69a7ed94d5fd667a35a830fe
BLAKE2b-256 a853779e3a5a179b6dcc984fdb5339423fcdb4ac2d494b2b0c9bf4de3e5846ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70ebcc376fef53c47f39508618d444c35085e253a561da631ec71430dd0274aa
MD5 2e508275d79d1b7ce1983d65df48148c
BLAKE2b-256 23c15634a5039f846704f6921ddd802f5242274208e6e3c9fba9f00b5f73c8c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79ad99fe55f706f5947fb2030ef3ab45175cbaa0a94a737f37a31afe5fd7bf7c
MD5 4aeee92372f588951b9b8d2f655264e9
BLAKE2b-256 d51c2696fd9794d9c3e1ddf10a382b16d78eed19deea0b053d206d47ed08c95d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fbcd5a6c309852646e637300ec34e097effaf4b7b11f424c11ce41f9df384f2e
MD5 ce8b0c7fd484d1cb538f52825d2eedfb
BLAKE2b-256 3e5d42dc2ba280156faf5e0f0212f20e84226ad61ac6516d295499278fb4c868

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72eb7df4c356c3f32ba7d406919381e48fcf7fc30bdc0f635a70af35f5e93b9f
MD5 91bd0c19f3b05f98cea81e03ae1a1933
BLAKE2b-256 29ea2acd27451f7fd69b44d24779482909580cbfdb993e9a2d6d8427073af7e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35ff3a9566a41f91ec0c10f53f2bb3e39d82430f433e1da85bbe94c9f2b95f2c
MD5 b90519ee3ed4598e7f890ab531c4f886
BLAKE2b-256 adede9d898d0e7d0b813d76fa803b2976232b94a26d23b734e6a599ece13e538

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d152e9477faa60b68d3ba1b803cdfc1b4e84f9c887052dd5d60f63df6470eeb7
MD5 8f0a0c248b247dcb82a638f9ab845916
BLAKE2b-256 f3262cdb72f638d766daa7130a532a6981584bfe84680dd27877f0c0a7ae706f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2024d9c066f8d2958f8eb5cbfb754524e55d4b36e87fc8ba46ccb72f0c8f1117
MD5 e988469aaab9942e7eccbefcbd85ae27
BLAKE2b-256 89051d8fc273b2c86817784bfa8bb11daca440c59ec4394fc82d151297f3a56b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2d111af1208f69c53b0502b29613a36872aeed461c99d8b09ec2796e94fd7c6
MD5 4a782713a79b87b7e2451af7265e875f
BLAKE2b-256 6d256caa618f39b416f3266edcc0acb9f9a9465716e1eb1b8dd4a5a84da724b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f1f83a32b892f29eafb296aa3e638ab5447ae0b64f61bb9e9bc13d6c481832c3
MD5 b315f9146fda8119185545ddd96938d1
BLAKE2b-256 6cec056e3c8c5d768bb2026162623819f11b95a1466c016d4e87c0d0acf8215d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6498482bcba6ab82fa8db7ca0f845141b1e7c3ed3369645fb3a49876a3a41906
MD5 52d2f633302589fc233b7614a6926df4
BLAKE2b-256 0fcaad6a07875f750de1999a8eb8a2f3c5f85b200c8876dcca6af18a3545d98d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df7618d0344589f5b8ffcb9ffa2d3d83ce51757dd31412f10d4f89afee74db47
MD5 592e40d9478020a12f055e6d09a806e7
BLAKE2b-256 2e9af8de37cad47cffa03e94aa1c933006a86d93f20d7589f7a3216511e3bc40

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eff1e2eacb02875bd5c106f164a4fd5fce67b3cd9d527d70b23c0b8f6c71d95d
MD5 8005274dd051b47e2d1dafe8f2a06054
BLAKE2b-256 0f2044e4b5991090c9f3f688435bd2498f50b8ad7a79c72ae83d0d3d0b0981a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6160d319825d7bb7b9cfc22adfe1d726b68e95d589f2d1ab6be47a822331aa3
MD5 f5ccffd792698f6a61a198717fd85a50
BLAKE2b-256 d768512d9e674cd1a17dc6d50e90efc39fc211aefa7af26c853a0873f545e055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c1484a620cb73dc764de9ee2bd4deb3ee1151b45a9b89f4f569b5be84004a88
MD5 96cb0b9397f2b5a111edc998939b9da9
BLAKE2b-256 8cbb2bef1cc3d6e77bc7faa71ab83af005e73c04aa352d75c59ef0eeafefb7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 69c10990b73acf82cfe0b5c7635546ff91f49a253214cf793a2927ad95579c00
MD5 bc0f51a7890cad1dfffb3aca04b99e44
BLAKE2b-256 24b0d6d6a124b3788fea20d6349b6ad640e6189b802f6819342daceb1bd83828

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e4bb0d71ee1ca90e703f8f43715df27fd075a24d2530a852e6047721db56dc52
MD5 25cd8def2bb84b4174e7d287dc19d0ca
BLAKE2b-256 e0ac2eceb362496011cfae01ecd4d752b946f6db818e9160c4649e1548a11511

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e0289f7a3e7aac89bbb3bfaa87fac8f46e7985e92cb048b1114dc3b4c75f250
MD5 f990e2cedc857f6f3f8bd37ed598aa6c
BLAKE2b-256 03e7f82528d50b176640fd1b23ed0c19d65f8a0ba5e95236310ff62f8ab9fc26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d357828e01f923aa1009ed7257c45fee03c4f272c1d817148178e16c0146c554
MD5 5e00704a86857704281a93cba5709eb4
BLAKE2b-256 8c60d8f08949d2324ed40cd8dd7cb3cec8a3929079b16ce65c7b405a752bf698

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 487349dfb7afd56d6524dbaaff999cb0502d09bac5a485b3f410132a731468c5
MD5 f313d2962b49fb62b412e71b1cdca93e
BLAKE2b-256 8c134e11a4e3acc25e7e08a5cb9f51be25620a43437fea9ca35a00e498107f5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb03590411eb1aa061eac69fbc33872c7984ed8714bb296cbebe43bd3c23c00a
MD5 c8cddc46f4f8cdb7ff5f52ae2dc924b7
BLAKE2b-256 bef5ed9be9ebe00b622944fe21f413b555d9de351f15a5a7fdbbd49d27fbf53d

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66d06c81b181a8cdfc90ae5c3071bdcd9a588bd728b00365895b29ccd659ccba
MD5 beac695384602dc027a30d918b579eca
BLAKE2b-256 7e3739342f5b063fa18f7f98cdc0b4857060d74a8eaff896235ff5e2e3eeec28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37333f2e8a3888af0b78089df207dd3ba54d790e3d2397f34b26efca100981f5
MD5 46044b5f6d52ac6e5f0acacaab659cba
BLAKE2b-256 13f3c32765daf70e6be06c247b8dc44fa9f15fe45a6f4a15a1534009aa0553ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02d4f8b316086a92063c4b83712c119432c44266bae74de53cdb5d3ba6053ea8
MD5 fc94a90d38454e97c3b82766dde3d048
BLAKE2b-256 3443c4413559cd47825aeadcfb7fb697a4cf26dd910534eb577460b1ceedf491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1cedcb9a556b99800cd7e7c98c3e191e4c3c94f272b58317554bf222a304d50e
MD5 982d03efa4784874a1f81090162fad3c
BLAKE2b-256 5bbbbd11a52a7f4be876fe464017102e1c1418f51b99954e5a3a20a39651bda3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0d6a725f41665b25b774b0d8524b037271a82e62879a656d2aafc515d8e8d018
MD5 918b0d222807cf4da4dc7835ae9bb0e9
BLAKE2b-256 a4946a1c67171bd64e38e334629aeeb0ec7ca2a904978f686d127f64ce7ff7ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 324.5 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.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 531ab11737dcf70153f6fec71dd683ea052b1c16b7a5c5017d0f44a3ecb48a65
MD5 a548f5e7854a1f6c880643d5b0029032
BLAKE2b-256 c7b13f0bb1be54bb17fe884e92e746a5f20dcd151ed74be4f77a2da5577743e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.5.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.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 754b20e3ec7bf957bbe97f3219ac3a9681ac567561a9c1609b6fd404419faab8
MD5 696c16f016933cacfd61fba1ff6cb627
BLAKE2b-256 31095106a69f061f6cb153c895f08203e9cfbad234363f8cf3deb9d799fa82c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41d60ef7c0d84ceaafd8b6f9d83fc798763f2c17a185c3752f91ed152d389f33
MD5 7758dfddbe4065eb3a2328929bffde92
BLAKE2b-256 675fe17903726dedbe70f17d5bcb31bf53e996ba2a432cb978eca9b5d0fef0b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b0ed80f4808585b625655bd4d7335a27c427a63d7e818b96cbf7c22eb7f21ee
MD5 373e3fc812524d4f7340e3930cc5ffbf
BLAKE2b-256 b1054b5b845154e63ed6312460c37d5bb42b828f4298285739732fa9d4f9bbef

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.5.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.5.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.5.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 734773f2d660bf0c349c767e57b2b2b9d5af9f8d4e1e7cec6fbd7055e31d1e71
MD5 c46b6eda8ba76769926878bffd2f7e3c
BLAKE2b-256 a9579b615c925f4a3bf0581f038808e7c77ece5c9dda24faa3efdc792be50497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61a9371110efe65877f9d587c946bb1510f51074492d3a56457a72876163e824
MD5 fbf3f39b79df2a7ffb73098d1dc9b8a0
BLAKE2b-256 f87eaaeb2d24e63417d2fc04cca09c82e8378fc5323b3a5ab2b38c4807f75ed8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c2dcb80e99021dc5b1e3fde9a4b5040108428136aec59545bbf36b95af2e6b8
MD5 a83a13fa1c5c310e44fbe7f362830359
BLAKE2b-256 d08663af29041565a8e715472c4a414389fa99dd360572563733c8a281f74b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d71725ce1add353b7a8543cd5d2265ba565baa2659483396763e7b27a2d87f6
MD5 65ddb5b7f86e365e8bffc6c1953350ca
BLAKE2b-256 8b15fc6ee878604148788704fa75575dc05939ac21acb5e9b11f72d8569058dc

See more details on using hashes here.

Provenance

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