Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

Test status Latest PyPI package version

aiofastnet provides drop-in optimized replacements for asyncio’s:

If your library or application already uses the asyncio 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.

Benchmark source: examples/benchmark.py

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

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

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

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.1.0.tar.gz (152.2 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.1.0-cp314-cp314t-win_amd64.whl (397.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

aiofastnet-0.1.0-cp314-cp314t-win32.whl (339.6 kB view details)

Uploaded CPython 3.14tWindows x86

aiofastnet-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (412.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (403.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (407.8 kB view details)

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

aiofastnet-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (399.2 kB view details)

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

aiofastnet-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl (352.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (359.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.1.0-cp314-cp314-win_amd64.whl (328.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.1.0-cp314-cp314-win32.whl (284.5 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (396.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (382.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (391.9 kB view details)

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

aiofastnet-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (377.8 kB view details)

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

aiofastnet-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (329.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl (338.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.1.0-cp313-cp313-win_amd64.whl (322.5 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.1.0-cp313-cp313-win32.whl (278.9 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (394.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (377.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (390.2 kB view details)

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

aiofastnet-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (372.7 kB view details)

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

aiofastnet-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (327.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (336.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.1.0-cp312-cp312-win_amd64.whl (323.1 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.1.0-cp312-cp312-win32.whl (279.2 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (397.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (380.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (393.2 kB view details)

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

aiofastnet-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (375.7 kB view details)

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

aiofastnet-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (329.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (338.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.1.0-cp311-cp311-win_amd64.whl (322.4 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.1.0-cp311-cp311-win32.whl (284.3 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (395.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (390.9 kB view details)

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

aiofastnet-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (378.7 kB view details)

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

aiofastnet-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (330.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (339.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.1.0-cp310-cp310-win_amd64.whl (319.0 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.1.0-cp310-cp310-win32.whl (284.9 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (393.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (383.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (389.7 kB view details)

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

aiofastnet-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (378.1 kB view details)

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

aiofastnet-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (330.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (339.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.1.0-cp39-cp39-win_amd64.whl (320.6 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.1.0-cp39-cp39-win32.whl (286.4 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (384.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (391.8 kB view details)

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

aiofastnet-0.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (379.2 kB view details)

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

aiofastnet-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (332.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (342.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0.tar.gz
Algorithm Hash digest
SHA256 555ea68ebdef86c432fc8b419201b538fad5b4cabb82657431645b7adf8acbcd
MD5 3208bc132c185888988b1efcc9ebf4f1
BLAKE2b-256 d15343102d2c8b3d36b9d4061ba6381aab6ea5c2887b63bed2d47c48eb2e0b3b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4129c7cba1dbb391f848d82fba4f22d8fab64f741b6f511325100757659d2536
MD5 c510fa059ece791c38de592505c5bea1
BLAKE2b-256 79ee8ceea5ce677692dda51033da6a80b7e4f367637db107523c30a0a6e90a29

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 06baffd67f94e6f87f42a35ecbe2f6cee3b9f13b24a7b9f83755b545d3cf23b7
MD5 e315d1d1dde36bc324e9481cb5fe9e39
BLAKE2b-256 878ffce8139450c78b2ed686eabcc6e4e5bc10318d2c0d6f8ea8bebbf5d2d764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1118cf678faa391e322ce2fa944357cc5e6baf92e907aa9d7a52d642c85db7e
MD5 8eb2402be953bc72ba31022634455df6
BLAKE2b-256 438aa4800c213e92c4485ae64802175986947c5f9405a1c2778e8854df5a0753

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cba59835c6fc8285166144170f9808a313b4de31c1ce586f832b91cfa8bf876
MD5 ca0eb9ec2779ee669a784c1bd69f8149
BLAKE2b-256 150f2ae169440927318155a29d2baaddc4e906110ede9f83168249044a26b680

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8787d1b6ddcb7c793e67ba4c261d3d7e9e78e1c006f0685865372943d3a1837c
MD5 acfc9fc18fc59c0c4e81c1484bf20936
BLAKE2b-256 0f58329fcedf6a7c78cd6da443ecbe6ef17bd8912e7e703a59d2e6e66dbcd5eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e89e9455cf113fd23d738e1d3dc9919c4b6e030c5c253ffb2ed4b34d575833b5
MD5 243a7b5ee18bc36159ade8d4f3693d4d
BLAKE2b-256 1bfd5c03109bcc5dace0043eb244abd540939dc61c2540ae6a2efb218e91a747

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d6dc233a316e58563b75ef0ccfa4dfadb743bc72274e09dfcc1d44d5032d87d
MD5 405f0b550cf500af731386c17ef0bb17
BLAKE2b-256 cee426814ab3c9b307e8c34f304c8d1f682c54ce0781d318a51ca255b6d772d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b1edbf0cec80706916e5c0ed1ac2582b55d87999223296311efc614c5b95b7ee
MD5 c2600ecfb54e2be561a94da85cb96db6
BLAKE2b-256 c5db7e0c8a8fb38e4552a999e956e3604404703418c6f29c3ef656362490c6ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4469c0e05c252265c85329d56af533755bcc5a39f8b1363730eea826ff4ec244
MD5 5cccee5019ea7515ec4261c308a7e7e2
BLAKE2b-256 2ba201a1db8b3dd20abd072e128277f3f7769a623c9e402952a69be7f4b9b75b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1bc7b8dc25516c18bf0d01c96477bd479bc2eafe2785ae28bc272aadffc77db3
MD5 c6ed2e30172eec6bcb5279de0164d1fb
BLAKE2b-256 4761296138007fe9b303eb90bcf213c466d7be7a5cd1b21e7fe31e0f2c40f3df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25e5c598b15e0d1447cc42db0480369568c78dca6b73246e2318e3deebca6a6a
MD5 ca8bd07b9139a6cb39a22e472bde5e67
BLAKE2b-256 575c7a6980a6f8c424bfaf02f7d8687075adeab9a1750a59157306b96c83ace7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e6acdbfc2acb0b11a003478379e24954d68fd7f6cc942a6f54aba0193e0d478
MD5 354f4b67775028f8dcb4672dc56ae8e8
BLAKE2b-256 5654d2ce8927d4e0de48d95e1a76b51fac998c9774d86ed4bad162e4f2ba869b

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05d3f3d13ed1e22e73a5aea0f62e477f10bd3cacf0b893c999dcf33125a3f646
MD5 d8e28fe1ff5255ae747cfdeb0e2194d7
BLAKE2b-256 3feed39a01ab6004118ebb471e098f63d445ca4e30e8b5231d2e3639b58e8c6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e307380a85a5aba0f21704307e2efcdf48edc371d243d8c17ca30688b63e6fe4
MD5 38415b89ae3e8130029cb9375b4c560e
BLAKE2b-256 578184314dd9a90172845b79c54ec41a8ec9515fc2a50350dce8ceee9e38fe4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ea6980025099d8b62b1132c24b609954eaf5c6b21d19761542ad62fa6cb1e9c
MD5 32b5c6fa74f8af94726f5a072c66862c
BLAKE2b-256 130b9681bf429ee94d88e05d577e041432ecec622c945ac0cc5a8e4dc3bdcb52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a2c58c4d9ab53b340b316cbd7709eb73e498ba7bbd8d3904efabf8c829c3aa03
MD5 0652f66cc1c55083c7efefdc2973c47b
BLAKE2b-256 3070f17a0a454d7790ed0940ff153f46729c5e3f0df6c5b09f3baa53004e7397

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0fd8cc04c527f3fedc0a84e4951045064c1170938f2b2a7f05f8493c3f52cf9e
MD5 8ec854c2edea25f18212dd841ad53b12
BLAKE2b-256 fa03aa02848098fd799709e920fe4f4dceaee42b7a9bd4dd2f086747c3e4c7f5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ae49526135b048b28ab4f514a7fbe6a7cdf82683e045a3d37a217b00594e8128
MD5 1b177220dd47f7179f3b17b1619aca89
BLAKE2b-256 db732af26ab5febf6bb64ee5935dd357ecbab052c5007f902624120fa9f32db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e793c1d9207db921a110deaa3c77ae0f36e567a82c189d9d6b94d437dba8f42b
MD5 e81936f031b9be8c15972187e803b5b1
BLAKE2b-256 dab5468dbd41bcc67d49c6c6cf146c9138b0177aec8c870ea0b2fac1f0bd04ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df01396592efd06f3a9be2667397b1198e5c9a86eb3a23ebce2cddeb9fdcd0a8
MD5 6b588d8523c8eaa66f45fbfd44bf179c
BLAKE2b-256 dfeed6068dd057a7fe67d4b4b9aa57c8389c7a56dd6730bd09e682d08fa263c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a5280d27eb4ab509b6e948a984aeeac2bfb89135e664197f4d3dc25a753bddc
MD5 6f81079401e13facdc1c86061b96a259
BLAKE2b-256 47bebd5442ed595aec8627a0231391537e8a64240f9ce615257c24d9982467c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba2884da9b258ff11686d2273cdbdb48eac8622ab31a72771dbe65864b0c0e4b
MD5 a18a6e4905180a40e6228276293d85b7
BLAKE2b-256 24c4f599b9f2df9b45aae27762afa4c104cee4892a7c55f7813859ff0f709f85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d6edb44c7606ee3333ff67edd46ba77a5803b1ae0903a42968641417e07bb64
MD5 7a6fc8e3e026dd66c7c43ef59ed17c4e
BLAKE2b-256 fae2f1087adcca1035eb848e6243c30bd1caa9c2e2708d1c049b776d07ec3cb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 403a88c70b0464cc8a901fbc1a8344f6c5e2fac1c838cb9107a4aa5929f00014
MD5 321d11a428454a52770342ab62bca434
BLAKE2b-256 d57e92e8244bc82baaad62b93c37b3ee0983f8ec24bbc883b864b7763192767a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f43ffdb92168ba5be0049ce83fde125a13a2298b0398a22e0628b78a949c6330
MD5 6344a5a64987c9fcf89c8374109d2985
BLAKE2b-256 702d04abb3bfbeabbb2416363a783662647fa8a3aa44ae281fc8b1fef8e61fce

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ecb8b8b52ea0fb130c2e999564295647afcaa0deb251020e65568d600b9270cf
MD5 99448d899851edfb9ac94d7b0754d53b
BLAKE2b-256 b789bcd227c62e2440446c84717a01a64306faf0a4a72f11cd8a33a6d3c47024

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fecf4c2cde6c19a3cd21a366ea00c1fecf3622ec7a7805f432f06a269734b040
MD5 637a9ba4f7a269d2d5cba403e284494b
BLAKE2b-256 2d6bdfe2bd931dc999ead0057b145434a66735dc327023f63c68da9a250b77be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b12a998ee6434534542d7537445bf84f97a57c6b6411cc6bbb9697dc3c9b4df9
MD5 b328b9396bf969ba7ca5f5c341b64267
BLAKE2b-256 ec58a2ca3e8233a47a975142bee49954d70d28110b84e2e5e77d053ce06e436c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89bd583c3e77156e1c4888e0e223f576dc7bf3ce3b28a1446e5d75f603824b3a
MD5 252193069cc3475dd5c024237f1ae43a
BLAKE2b-256 125bc825133ca792c6223d7069d01cc89006cbe5f9acb53de6cd9ec51c0b7fa2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c486c1dc71303399c253a9b3015df8811063e5086f58a4c8ec6efcaf02a9519e
MD5 ee5fc335c1e01be7b6ee040794b4a695
BLAKE2b-256 96955e3c15efbcc91fc2e44dd898c62f7e15c87b886f34ba1fd59c953c34ffff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6beae018db38104c4c94bce10661af02dae3cd933c3294e2e1ed0dd0033a2515
MD5 2b73fd05b493ae1f0db336c10ff47006
BLAKE2b-256 f7d780a258bdf191a59f609b61f62b92d677fc1d8a8fb0ac459a40fa54000672

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1c858d01c01b593e7567aa6e3d77ffbcc2cec282cd14279975013f3efa4208f3
MD5 0b6e5ddcb9c0cc2db789580e1c4f1733
BLAKE2b-256 371349a99e0292c1b95bb5c7f9c471388a59f7d9257400834b7642c2f6d46a35

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf4fc0237db928fc0c087abdfc75a09687ba7e3e7bd43967d1d56d2290395c03
MD5 d24c2ce3ea4d9b8283f79785b7547fdb
BLAKE2b-256 dd8d5f281984a97d6febc5d9f87d18f4a444aa556ef1ab1918aadc421e7903f8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 76e230a01c9cd4f8ae9de129af77b416f303bde02d99dcd803df70a3dcc8bbbc
MD5 93f46dce4f14c9f37f006b7c80b34dc3
BLAKE2b-256 271b888d127b80402033b01308e0c507973c724a367f886ae76c9d7ff74f5616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 476fdbe95e5cd3f33a2f77b1d83b73b710b6b9fdd11745b10e8c385a496e9410
MD5 38450387b79927f20cc4848cb91d8681
BLAKE2b-256 57386558e0fe64a8c8bf6320738c8d02a4b44ad7787024b881e0772f64610aef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 201775e5d82cf4063e9cf2fe71ff7101ae3141d3f93aa2b5fe5ce3d17a140fd6
MD5 683493cbb3ee0ca6cf01d4b052d6edf5
BLAKE2b-256 0124c63e2adb6e84e74d99d0a51a9d78251ce82088e656173903c8509d64af68

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe23992f41923d82c16bc1727f8ed61847531a54acf11f55373e4f2f1f4a55ae
MD5 67ab81d468781bd77bc168e4ce6556c1
BLAKE2b-256 2ad576c7e9c1caeec3c7f752163c285166954ac73278a05ee5356c3f2947f0a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75e4a8a6f4f3b82a2b91d381023a78e73f92df3844997af9b9e7de096353727b
MD5 1cbc05f39a3deb203104cfc5eb1ba537
BLAKE2b-256 6195b69de6535606309651fe304795f2979b4ece27f2e4b651c17b50fe08b537

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36e58b650667a5af06f0055d6b3cd11fa975388bb1cd58bceb382a8931790e62
MD5 f87fc41f627b4fc0c6225d724cfeea98
BLAKE2b-256 17118006e2ae144f194e56d4c44cac2a0e7ec7ce96d07b4b6dfb89be9c22142e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 397c2e64d18e6e27e663d5694daa2b1041c8fdc3cf6ce66b6876a308bf6fb84d
MD5 fb88480c397bd5b906d78a7897896edc
BLAKE2b-256 eb444dce1c3dc8fc6669bd4e2737ce4d736bc236c28cbc147c46e74144be0b58

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 35d820d22c98f53675e192da3ad52cb105057b381604c1f4cd5489ba8e1017c5
MD5 6a00b009366baedd17edfbc262b522f8
BLAKE2b-256 c51720190a8827ff24ad2f642d8daf8643a1452f1d909aaa20eeeb0920ee6287

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 78b05f526c7513915da1dd7124e30f3eb5198adcbf08873eb1eeaaf70ff839cc
MD5 1cde20cb79544ffc2ad6812ce0435bd4
BLAKE2b-256 c80c4b482347580abd20260823495c6361f6d5c05466d8e6091de7df13cf9b45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b75c912c5b090e7b42c4c570e54701ba6f9f31ccfac889e05489de277bf2ad5e
MD5 201e7b90623cf08320a93f6c72475ad3
BLAKE2b-256 29a8a04db5862fb3ad3e67940da21ea29d31f6187bc46c81b836f26ebbed1c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04f16a6a2a07d9f18d0244236152882df8c777a17b06d4c9239c983d9c219c63
MD5 d74be84d9ad039a1ac5c691f2a4ca6c4
BLAKE2b-256 b3e52b731b2b9787b6c03a7146ef42308d60b4f4eda3adac60b58ffb0c41d6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 164bd0c77e607c5916c3b4624893c9013e92611a9b534b5c605bde2527ab7c84
MD5 b120f69d6a84d0272c845ad496213b7b
BLAKE2b-256 90a03f2d38865251ad7b146706c65f3ddbeb7ba68c301b14c926b0644f86a5c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e21669f69be22cc59cb6892f9f32aea9880377a977ef54c7d1d653b177564121
MD5 e8d1184da2d04ed68f2c808e6ad696e3
BLAKE2b-256 22750133f65749a61859f5474bf02bbe8c57bb0878e88b0bcd9f3a6497670a72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8b9e60b612ef8e4832b6709fc558aa05b8e3f4a7572a5af09d15ce8d60a4759
MD5 c78d0b15a9203720f506a008fb08d331
BLAKE2b-256 c296e5da155c60f62e4ce8c5ee4ce7615bdc25963a18a35bcee990b10b3f04be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd5bb46a3439d062b6267f3e9bc1ae0f2a500728aac5a3d21578f5856a125f65
MD5 5e0cf85a338875e578526ce7c7f5f370
BLAKE2b-256 93eecc1f86790e45e5c8baf300eb12f69295eea076721393cb6201e4f5e9e75b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b3ffdccb03204ee12ac88828a2f8013300ac9c84f3d097eb75179358ed10ce24
MD5 3f07ff043386ad30b1ec88990839ae2a
BLAKE2b-256 5cd8e6212dd02e6a2d64038dda6969104469fec9abb917007ed8503cd53e6f24

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fab2df7048af1ff1b30200b61c1aa4b426d8df71d60b5b035d75c28ad2bc724a
MD5 9e15b6a54107b1a2e79da1a329bf3299
BLAKE2b-256 f568359d326ecc18bac799c671efc8a29b547fc39ce71688f85a0dd8fdc8fead

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a5187e3957c315a50d22917724e210d8ba5727dc223030c359095e1685f2d4bb
MD5 eb19b6a52d08021c73c2919c06fec542
BLAKE2b-256 41bb3b1768e1562109ef95a572c277a56ca698b49fbeee9e90f431047e5fc1d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f35a8e715cea5e00af0709e1768ff9286356c0de72794d6ec07a77be5d163681
MD5 e4daeb9344f9d631ec1b1fd3e67777f9
BLAKE2b-256 b81458c614d072097c64a0ff6018a08f8529a023c8304e2eb393c3dd88b1df3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.1.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.1.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.1.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4f72a1558ff276dd8af84977f63811b75671a87b5c3e34a21a635da858ee5a5
MD5 d7481d0c0124c1c0e94e72e883c2be0a
BLAKE2b-256 62fb50bb4995b99eb1c52ef1d1e7a00df532d16dd4267306f9993ac05a5175bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9702fc0f39ad0acc7614b9684360d2e59b63631c4c48c57372f4939d37238945
MD5 e0b338c670c20cc1d9f3cc0324e6b180
BLAKE2b-256 d0d212f837c66a5f90a1209c94e42ec94f228ac33c6345206448c91d5ca900ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83b857dd3342a930a4276e4b583e5edb4c5d725f8bc656cdb3c1e85ba462e037
MD5 04b51873afdbd65804c58fa95c2df3a9
BLAKE2b-256 184b48537f74d32318b8b321eb79dab3400578de0686e4c15f407b7ee054049f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34682f69089ccf7985a1f9e6421d683392ce563ad2802277c9983827f6c36dbd
MD5 c569da25f0a6d161c58e4129fc75ce57
BLAKE2b-256 51b8e4e7d63f161fec0a5ba0c4b76963d5e199aa1e10ac215904f4cbec0ec7bb

See more details on using hashes here.

Provenance

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