Skip to main content

Fast transport/protocol networking for asyncio

Project description

aiofastnet

aiofastnet provides highly optimized asyncio loop.create_connection and loop.create_server implementations. It is a drop-in replacement for the standard asyncio functions for performance-sensitive networking code.

Internally, it reimplements parts of CPython’s transport/SSL stack with Cython and C to reduce overhead on hot I/O paths, especially for protocol libraries that spend significant CPU time in transport and SSL plumbing.

Installation

aiofastnet requires Python 3.9 or greater and is available on PyPI:

$ pip install aiofastnet

Basic Usage

Use it similarly to stdlib asyncio APIs by passing the running loop:

import asyncio
import aiofastnet

loop = asyncio.get_running_loop()
# Instead of
# transport, protocol = await loop.create_connection(...)
transport, protocol = await aiofastnet.create_connection(loop, ...)

# Instead of
# server = await loop.create_server(...)
server = await aiofastnet.create_server(loop, ...)

Benchmark

The benchmark below compares echo round-trips over loopback for TCP and SSL. The exact gains depend on workload, message sizes, and how much time your application spends in transport/SSL overhead. Benchmark source: examples/benchmark.py

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

Why to use aiofastnet?

  • Lower transport and SSL overhead. aiofastnet reimplements the expensive parts of CPython’s transport and SSL stack in Cython/C, so more CPU time is spent in your protocol logic instead of framework plumbing. Python libraries often pay a large premium for SSL-heavy workloads; aiofastnet uses OpenSSL more directly and avoids several extra buffer copies present in standard asyncio and uvloop SSL paths to reduce that cost.

  • Clearer and safer write() / writelines() behavior. aiofastnet tries to push data to the socket before returning. If the socket can not accept everything immediately, only bytes and memoryview objects backed by bytes are retained without copying; everything else, including bytearray and memoryview objects backed by other exporters, is copied before being queued. This makes it safe to reuse application write buffers after write() or writelines() returns.

  • Better backpressure semantics for SSL transports. get_write_buffer_size() reports total queued output across the whole stack, and set_write_buffer_limits() applies to the whole stack as well, so flow control reflects what is actually buffered for transmission.

  • Useful for library authors, not only applications. If you build WebSocket, HTTP, RPC, database, proxy, message-broker, or custom binary protocol libraries, your users can get better throughput and lower CPU cost without changing your public API.

  • Drop-in replacement for loop.create_connection() and loop.create_server(). You keep the standard asyncio transport/protocol model and your existing integration points.

In short: if your library already fits asyncio’s transport/protocol model and performance matters, aiofastnet lets you keep the same architecture while replacing one of the most expensive layers underneath it.

When Not To Use aiofastnet

aiofastnet is not always the right choice:

  • If your workload is dominated by very short-lived connections. aiofastnet focuses on optimizing the data path after a connection is established; it does not primarily optimize connection setup cost. In workloads where connections are created and torn down quickly, you should expect little or no performance gain compared to standard asyncio.

  • If targeting Windows ProactorEventLoop is itself a requirement. On ProactorEventLoop, aiofastnet falls back to asyncio’s native connection and server implementation underneath, so you do not get aiofastnet’s custom transport implementation on that loop.

Platform Compatibility

aiofastnet is built and tested on Linux, macOS, and Windows.

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

Contributing / Building From Source

Contributions are welcome!

  1. Fork and clone the repository:

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

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

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

    $ python setup.py build_ext --inplace
    $ pytest -s -v
    
    # Run specific test with debug logs enabled
    $ pytest -s -v -k test_echo[asyncio-ssl-buffered-32-64] --log-cli-level DEBUG
  5. Run the benchmark:

    $ python -m examples.benchmark

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.0.5.tar.gz (144.6 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.0.5-cp314-cp314t-win_amd64.whl (334.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

aiofastnet-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl (342.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl (336.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (339.0 kB view details)

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

aiofastnet-0.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (332.9 kB view details)

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

aiofastnet-0.0.5-cp314-cp314t-macosx_11_0_arm64.whl (294.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

aiofastnet-0.0.5-cp314-cp314t-macosx_10_15_x86_64.whl (302.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

aiofastnet-0.0.5-cp314-cp314-win_amd64.whl (275.2 kB view details)

Uploaded CPython 3.14Windows x86-64

aiofastnet-0.0.5-cp314-cp314-win32.whl (237.1 kB view details)

Uploaded CPython 3.14Windows x86

aiofastnet-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl (333.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl (321.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (330.1 kB view details)

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

aiofastnet-0.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (318.3 kB view details)

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

aiofastnet-0.0.5-cp314-cp314-macosx_11_0_arm64.whl (275.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

aiofastnet-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl (283.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

aiofastnet-0.0.5-cp313-cp313-win_amd64.whl (269.4 kB view details)

Uploaded CPython 3.13Windows x86-64

aiofastnet-0.0.5-cp313-cp313-win32.whl (231.8 kB view details)

Uploaded CPython 3.13Windows x86

aiofastnet-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (332.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (318.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (329.0 kB view details)

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

aiofastnet-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (313.6 kB view details)

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

aiofastnet-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (273.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

aiofastnet-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl (281.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

aiofastnet-0.0.5-cp312-cp312-win_amd64.whl (269.9 kB view details)

Uploaded CPython 3.12Windows x86-64

aiofastnet-0.0.5-cp312-cp312-win32.whl (232.1 kB view details)

Uploaded CPython 3.12Windows x86

aiofastnet-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (334.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (318.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (330.6 kB view details)

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

aiofastnet-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (315.1 kB view details)

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

aiofastnet-0.0.5-cp312-cp312-macosx_11_0_arm64.whl (275.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

aiofastnet-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl (283.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

aiofastnet-0.0.5-cp311-cp311-win_amd64.whl (269.6 kB view details)

Uploaded CPython 3.11Windows x86-64

aiofastnet-0.0.5-cp311-cp311-win32.whl (236.1 kB view details)

Uploaded CPython 3.11Windows x86

aiofastnet-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (332.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (321.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (328.4 kB view details)

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

aiofastnet-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (317.6 kB view details)

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

aiofastnet-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (275.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

aiofastnet-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl (284.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

aiofastnet-0.0.5-cp310-cp310-win_amd64.whl (266.5 kB view details)

Uploaded CPython 3.10Windows x86-64

aiofastnet-0.0.5-cp310-cp310-win32.whl (236.6 kB view details)

Uploaded CPython 3.10Windows x86

aiofastnet-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (331.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (321.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (328.1 kB view details)

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

aiofastnet-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (317.6 kB view details)

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

aiofastnet-0.0.5-cp310-cp310-macosx_11_0_arm64.whl (275.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

aiofastnet-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (283.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

aiofastnet-0.0.5-cp39-cp39-win_amd64.whl (267.7 kB view details)

Uploaded CPython 3.9Windows x86-64

aiofastnet-0.0.5-cp39-cp39-win32.whl (237.7 kB view details)

Uploaded CPython 3.9Windows x86

aiofastnet-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (332.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

aiofastnet-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (323.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

aiofastnet-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (329.6 kB view details)

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

aiofastnet-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (320.0 kB view details)

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

aiofastnet-0.0.5-cp39-cp39-macosx_11_0_arm64.whl (277.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

aiofastnet-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for aiofastnet-0.0.5.tar.gz
Algorithm Hash digest
SHA256 fa3742b7b97db3073d828c5444c1ca095323df24e121f52efcdeb1dd5deeb4a5
MD5 41ec2a04610d9e976c68dbcaaa2b2384
BLAKE2b-256 757c0acd21019e6a30eb3724a6d2ca37d3defcb95f3595bfa95e4cb3911b0f08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 334.3 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.0.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ba23930abc52b1618ff6358c44f63581c77487119f0dc8422d7a5451cafc9afe
MD5 1601fc5067f09d8208d7c48181772b56
BLAKE2b-256 cc046f94236155ecd0adb9d8561d7a05e24f3f06db055ae9bbf4f1850642a063

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 284.5 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.0.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bc0103bd27795119fa70b4873b2ff0a672e28bf34c09c3de355cc17831ec8f04
MD5 2b9ed4c297f92d8b2af96e9221790041
BLAKE2b-256 de9e29a82092c4650178eeb520b0e5b4c5a3c092903dc4d396e98bd4830b932c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5225bca25bdc0153f56e3cd08f68d533e6e4c4795607463f4007ae91a041a799
MD5 5dc6400ae0a95197d4265dce400258d8
BLAKE2b-256 d86818221a1ca16a80cf9645f8f15c5e81aeeafc21d5c7f5fbfa53ed2ba4943e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9aec2c790e46fbccde2e7fa891b098f40b9777b2ca3b3fe0040a84f1784866ad
MD5 9d90134ae20eff0010e4229cc131c052
BLAKE2b-256 c0b7b17356d18df13fa28860c569a365debf903cd1870556f294a0660d4b334a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c059c69721499c74f201095c62f0ff37bc8370cb254d2c2696c6abc4a724b066
MD5 5913790b0fd4ea6ed5d5d4c5d5086ed2
BLAKE2b-256 2e267e8427b74c2625178cdcef05fc0ab558d70c01d65a65343ed859e82bc7f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99cc8e8f2a0359fe9cfe2ae8f4a80107bdb83cb52b009c17c7da55c85606ac43
MD5 d39c5277013ae5d78a831895b747c017
BLAKE2b-256 d3a66025c20a868fc7c7e8c0fb4bae94acf94a80cd94f1a2b4ac4ca5869da022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 429c40632bca51c7494e8820abc6eef3fc3faa56ecdc73727e49f2862dfa104a
MD5 caf841ef773324d02db47433f7eacd4a
BLAKE2b-256 dde2d413657719d9c492d3f2d71a3b35175d22419af9a158190273a0e2c46a9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3279164c529ace43e196e4bcdf43ed38891baf721256e8fb814183992c10fd27
MD5 cffa51b734d3804dedb96fb04bd03e03
BLAKE2b-256 fd8fc9e8d8070653af98e294e73bac7e42c0d8c1a3015f978d022effe4d96bed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 275.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.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 971fd755e5c56acc709bcffcdcfeb358ac2751d613728d5578302233d7dd3647
MD5 31258c9a713b0328271824ae1763df52
BLAKE2b-256 c47547e9c0af88ab3ac7e9f2c03582a9ab038e681e6f66ed0b9dad08df2aab56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 237.1 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.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d1c6fea9a91b1a3ec8b00fe692766cd30b8fb55d3c0d939397bfeb51e1d2493d
MD5 c5362700a580a7046af9d83535a1ee3c
BLAKE2b-256 4664efa6345455288f12370acea0c93ea65c1df9a4e70a7710b97f4a78b33978

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87bdf8389512878c77193d246305af8229e7e8491ec4bf05aa40fced8a3455ed
MD5 19bd37d348d848eec07c513ec848fd90
BLAKE2b-256 48dcb6fd496f8c820784f420920bbd281b59b7f62d0c3c26c5c83437837fd6fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b2007efdc4f833163a3873c52638b2e391ec9ace1e638944d651ce9a0d1ec5e
MD5 5cacf6fd2a9c17ef27d69c7d52dda522
BLAKE2b-256 033d20211a0eb9fc69e69ebdbda91670e5c561ef56bb3c3886cca3f2b5faf8d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 46351e9ec9b67a0f7623908d486c6df245b2546da3945881ed3307b835d38157
MD5 cd9eb087338e52d79b9788d76d18b521
BLAKE2b-256 515f16ad6abba354b579644615eb4ac7e477f3f5e815aba3ea15811ff974dee0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e951206ca90241e1ff918fbd87aa257b1e5cb9010fa70d5b74dc70ee374b110
MD5 eedd94c9f0d5812b926e8ad13a9ce6db
BLAKE2b-256 fecb4290725c66da9d1eaafc95bc661a10eccd183ba07e0dc81bb2450e77e7e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 062dfaf913a6546b90f08415dbd9b8eb47f21b4d3f97bcfc1da7b936443e66af
MD5 d92257f2d124d906af99e678ad6c8147
BLAKE2b-256 e2d95e7beb2829eab0050c55368effa633a66158b1e7d3693e3b7c92cc7412b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 329e16d0455a9e74e985e87193e6ac6db365e887faf0fda5b86dba860fc8d549
MD5 bb86e553dbe8b75f12944766e1aa0a43
BLAKE2b-256 9f69e07797f1325f4e39c4aafcd5c86de9b335318a6c0fdb9f7311457927597e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 269.4 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.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a29f8dd656b113c4bf4437e345cdc0925aff14210d76fc7b2714621760a651d9
MD5 6304f75afd101f8e868c3b477f4a00b4
BLAKE2b-256 bdf9ad4dad9c035a135668d6785215dd6dacb35a0a2233317300b5bc8d813580

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 231.8 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.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b6181967f70f4837730be3e35e385b00be6320c47754eea0b0cc4dfc43c0a5da
MD5 8a9c3282e780c938120c17bcd1dfc636
BLAKE2b-256 41fa246d5fd749f17b8d59bb5bab43b6f7e0c36f21cae31736519ce7620e26a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e1a9f8d5b80d69a63b5be6f2667c79bccfb3294c4688962a9ada456e3e32d14
MD5 e68a186838b799b37883e968715f527f
BLAKE2b-256 b41bba6860d9f6fd4380a11f4a91a63dc0d6635b883d27a63d1035cacbd42e02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0b0962293cc1ca8004485b19e0f30c8bf3f646a5336453ad2305f762955db2f
MD5 88847f387abcdc3c2220fc1a9345171d
BLAKE2b-256 1a1bbe486214571b51979c39383913bbe59dc76d2882c036792f8dfbc285011a

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7051face7f077e2e8007ed8484cd86bfc9cbd328ea74408488391f6b65ff272
MD5 138c4dcc919e7e1f08611a7745698b85
BLAKE2b-256 020ead4f975fcb97f942012d884fbcca5ce7aab5c1093c3fd12efc46fbc6c9f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90d814d75d9c37d0ffc80e2d4291d8b3638fe931831d2cddcb89b7b0dee33a20
MD5 36e6bb39e7d49a61d4ea533bb1d6525c
BLAKE2b-256 6566f908c8359afa649cc2f496f3852a0b91d1e36b0bd08aae66d25cb68d2eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e85c32ea0cb7a3f7793d4077e2d1b71e4f5b7f32cc126381b442779d6260a7d1
MD5 55451be9edcd542c52e1f1ed431ad721
BLAKE2b-256 52e9b634df9dc7101f9a93af8432b6f56aa1cb003ff76758f5b7ec6b9e6a4632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 38edaa97fa2897c899c464a6fdd5f37e18ddd4d30e733a1ce4fd214c79c63f9a
MD5 96d8ece5eeeef51f462f701df56570b7
BLAKE2b-256 e5b3be920ba324c0af3f110077bf8c53465dc96b8a62040fb9a267d25746ed34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 269.9 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.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4a89680e567e3d6c614ffac9eba4f0234f7614f288caa839b46d93f308795704
MD5 2b54e8b5c39d2666cd86dff768004519
BLAKE2b-256 afc6ca4e62930183686ba048f51a6afd1c561f5cb1e593c136e7e7f24c14e299

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 232.1 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.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 be83bf3c8a0dda68cd1b0247112b00468c3ec118570ede62701c9fd56d1a2b03
MD5 519c5bf06ccc9d8d3ee9fcbeb758fe35
BLAKE2b-256 4102e0d690a3b3b42c0ffef94db2cc7da2773567be0f6a68322811554c1acdb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ce4176598cb2eabc8d0c819e3c71ea18b311b36ff9ba8403c7e5f26be0af005
MD5 b6f4fcb304ad6bf9a816dd3b57809a9c
BLAKE2b-256 b621be0eb40dba84dce558094d3645d986ecac2e5205fa734af3946944142acc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 347563a0e7962e0504b5bd4f3e1494e38ac9754e735fafe1707fa46ca3d46df8
MD5 1a1bb126d05e3ae7a421422c59f3e209
BLAKE2b-256 db07a3c261fa80d1624aa09eef7298442f1d6033a3f8b704d5f60ec4c735aba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a6def9c7a2b3aa97fcb7a54bbcb321004ddab2c94a7ba5813a1219048f43ed4
MD5 81c19c681c136156cc70ef59dfcf9ffd
BLAKE2b-256 aa8bfe07789ac1ef498b834a4e717d4d4190b779352721a040e29bd46485ea9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e133f5d0c577e576f5b9d56089e0e1e384f3e3479a578bb89fdb8f4991464552
MD5 5f0805979055530a8141bfd8cd821c65
BLAKE2b-256 015b76ec65c471847cac0b91764d0d265d5704f88563b3e93ce38e963c5789a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaffad63a8938790450275f4035d004327a3371a563b824eaa79f870806ef00d
MD5 15efdced1eb0d35ff7c90dc731b6425c
BLAKE2b-256 08e189833a463a142c7d23e4d148c470ab377b49d9b436d3b666fd1c7b2d1f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3945529267c948a8d9aca3f3b68a11b65668cc533ca0537cfe6a18866bb266cb
MD5 94dd4d0d77938f2fed7b9f36038c1d5f
BLAKE2b-256 0465b53dde9bf88331914d92821cdc4a6fcc7febf416c000cc5ff0a8b5219d9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 269.6 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.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2aaf665a72cf43aad0dd2b2dd836ab746ffa0b821be03ad262a527c814d7b8d5
MD5 0559b19bdcbe60ce90611cc2af02c8a6
BLAKE2b-256 254fbd486343d6437d03e10dbdda52e0d417bb1f8b55572e7ee9df1b3b443cc2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 236.1 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.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d63a019292dd630c5a55056081bb95b1f2f868bda34f944a6cb4e5bbeea27df
MD5 294e38ec41bdf149d42f98f1e81608ad
BLAKE2b-256 46ff9d17072f07358ccea66b75b81915404508dbc243805b7b56b4c8b51b9ed0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9f2ce8d9aa8ffb85841a0b2c93120e47cb7af83fd1fbe5d0ddc0a37f5babeb9
MD5 c90c1d6057a92bccf84c05dfaf09f32b
BLAKE2b-256 1bf8c09dddcc1e70cec05ab8bf4092c8fa4ef9b8de44306f6304ef158220e38e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e6c879a2d711594c191e692d32203ed6042e7791a8bc750b7a3f6f9fa22644a
MD5 242f28a78c560c0cf81545eaa674e8a7
BLAKE2b-256 e746a371a0be6a5018b4102ce61474e0ec37ca86fda23692d3e19dedb71d3d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b70bac40f7c3381b69fc86a5cab0e7972078ec54b25a4d6cc71bae8721e3389
MD5 b8251fb1e4236a03c0825b3974cd617c
BLAKE2b-256 8bb3e99a9a6dba387229366092f498d58eb05c714b4375e1dc4d6c1fffb8fa1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 738044168545c47c46da68daab15c4258941e0045620236e8d55fb59e3d31091
MD5 550f2ad6bb18510310787192a4037da3
BLAKE2b-256 3b3a4d718a129ea34e3ff8ebce41e265215984eea9c45ba82a09d60445d1e71f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14b5b4dc07068129c0ce42d60e51efa452a70d6e914eacd939e616cbf78fc473
MD5 3adc1508570fc5e173e4d38f7e64f17a
BLAKE2b-256 29ce59c45d3f3c4a701784eefc33b5adc20fd6e76da6148119089138590ac1e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 44ee209dd0b7b86f2c0ad5d6a8ec4ea84242e51c5cb7ce50a960aaf08b9e8d40
MD5 799935542888307a6b80014e41dfdfc1
BLAKE2b-256 294cb4a85d0b465f4767121cf71b2b30ddea242d6b8dac43b037c6cc787863df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 266.5 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.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3c42fc6830a54f638084ccbef0fefd753d52f44a029b1b384a9da112dda3797
MD5 62cacc0822706e5bbb668af6abd6c75b
BLAKE2b-256 05599e5cccf042de1aef875e7b7d8ff511fffef44900290a21823c46f78c33a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 236.6 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.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b249456287f3f7af37b1b5f384decccf6e74a6f2db482d5078be1e9214ee82a7
MD5 c555219b17b4384dd8101cde474580d9
BLAKE2b-256 0e5327b7348081763b23b4f30de1564e425f2b9e9e3febc8c3dc1fdbd3c60acf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ccee6d7c9be7b67010992de298bcd511028d72aaf6ac114591404f37b88834a
MD5 f72bdeb277995eecbd54f984910cdd20
BLAKE2b-256 e60902b098e0a9eba7660f9bad66b4148fb1c76d3e683a844c45e0a5d52d0948

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4939c824d93dbc2d21d2d077c3baf77aaa22385dab4b8fa4d210dce54290988d
MD5 cad050d100b4d83b6675fbf12c81897e
BLAKE2b-256 efa2248c78bf034fdd46a5e8a01155fc6780aabd623bca57f228bb6235b69d8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e79953e24f5559d40af2610cb134b6ff3d51cd56f2d1a27892e53420f4d80bd
MD5 7291637b9da67b1537e7ebe8c5a6557b
BLAKE2b-256 730ad8d6d51d17aa7df4ec77f0a9fe5c4f863aa6762782d787ad65dffb75a87a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef665213ea99845cab2a780a1992cfca05befe22fd0b6289775d5250d5439632
MD5 5a327e25b7fde43c2234da4dfeeb0cb8
BLAKE2b-256 b4c44126be79f562bbd7cada5f7151bc82581120ce770e29851017effbeb9907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d342a4f2bb6a21f7d57ba1abf67670404cf64dbe24c456892871eb9d32c5a819
MD5 86a76848148320e0d489a7c22368d937
BLAKE2b-256 7694b9fe25a36efc15f532970c947f5918c177c03ba94998e301ca1582f723aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dffa7364338a03309d88868c2c90c335f7a0a3417dd1ee3a913680cbdfc7263c
MD5 96bad6ad2b980fe688c82d44caceec17
BLAKE2b-256 4e82520ce9f5c9f3311c124ad6c3d7ccd0a062ab9e1fbdfbf7cab490179a5b48

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 267.7 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.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 10291ae0e1a3bc2d37c0b1c90451778ccf3384b8500019d98869be87e431ce5f
MD5 54db456e2d782ce019a42e62dde6e379
BLAKE2b-256 63bedede5fa82e2216860d135f5224e2db829c5fea0bad813cbbdfdc860ef938

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: aiofastnet-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 237.7 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.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cf6d73a0ca07db217237429321fbaa89c01c493158ffa944632486223e256cdd
MD5 97a5aae500441eee2acdec663a4e6aa6
BLAKE2b-256 12a10b71f2be0eda2200534df1809a12457a4b13737e06d44287d5022ab0476d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e69fb191cb05629f011ee732930ea89a16f0778aa0c5aad0fe2987e5a9dc9152
MD5 4a461642bacbd4937203738e13664782
BLAKE2b-256 67592a241fe1de3e1be919d1dbf17f4e38b339547d9bab4dc1ae50ce4dcdd087

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c83f85d162995d08523ec1ec3be4a9c4bfa2819fe0a002f37bfc0d27cd1232d
MD5 94ec683b86871284230e6a2d1ad55200
BLAKE2b-256 5aef464e2b79b7df38cce228a9ac8a2b229231618f9ab10079f588c14d1e3a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiofastnet-0.0.5-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.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0464adab4e0ebed27103c66db3543ddf6dc78760bbd54007c5b1378728de2623
MD5 81dd25161bb7ed59aeab1261580ec6b6
BLAKE2b-256 7059d134bb9dde02384ad3c576590ccbd0a8d3aef17f6fc26e34e9747e82e386

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aeb0382feb3c2ebf753af3cdfe6528d97ea26b3f0c164e165f5d163ca15f76d8
MD5 bbecef0d3600865eecf1fbeba944aafd
BLAKE2b-256 f43e11a51b8a68d99c3d862f69bdc87610879089c4912ad7eb0d1e55c3dc9b35

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c75dd26506eda6ebe55f74aae86a117d9cbb05a8d6a8458e278c5c24c65ad53
MD5 c784214d7705dd36014badc111fc8e5e
BLAKE2b-256 2c8d9179362174b3fa1c3a2cbad1bc841c2e84a8b8ab0e5101c652ec5f43dce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for aiofastnet-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1929a127031c3b8f321496fc585fa9efa4ba8e637a86853092ec7e18089db9b7
MD5 9556388cf9f8e1d392647ae01159554f
BLAKE2b-256 9fb171524ee59cedbc9e74cd4241b2f6871664921cf7242eddc7368ea959a8f1

See more details on using hashes here.

Provenance

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