Fast transport/protocol networking for asyncio
Project description
Introduction
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
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!
Fork and clone the repository:
$ git clone git@github.com:tarasko/aiofastnet.git $ cd aiofastnet
Create a virtual environment and activate it:
$ python3 -m venv aiofn-dev $ source aiofn-dev/bin/activate
Install development dependencies:
$ pip install -r requirements-test.txt
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
Run the benchmark:
$ python -m examples.benchmark
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aiofastnet-0.0.7.tar.gz.
File metadata
- Download URL: aiofastnet-0.0.7.tar.gz
- Upload date:
- Size: 145.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9ebfec13e2e4403671f9eee1f7262f4f0656e8cadebec5f7772d22e50511cd8
|
|
| MD5 |
83e7f80329ab1fb0d3ea88a49947710e
|
|
| BLAKE2b-256 |
abceceb41c27fdbb1d3788f5d9afc25b774a307b4d3797ffc89f92b390ea52c1
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7.tar.gz:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7.tar.gz -
Subject digest:
a9ebfec13e2e4403671f9eee1f7262f4f0656e8cadebec5f7772d22e50511cd8 - Sigstore transparency entry: 1086854715
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 333.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd66f2ea8e835595beba6cfb3640bd062de3edb0899dae024784fbfc7ca8befb
|
|
| MD5 |
c62cd01b16e4c005e3a5bee6a511ffff
|
|
| BLAKE2b-256 |
ed029e760e2ef79944a97efac6af705941aac5856839798c2b608f084fbdf21a
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-win_amd64.whl -
Subject digest:
cd66f2ea8e835595beba6cfb3640bd062de3edb0899dae024784fbfc7ca8befb - Sigstore transparency entry: 1086855811
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-win32.whl
- Upload date:
- Size: 283.7 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da5c837afd1aa359172a288a1ac5490d5cf69ad3424d2e589dbc46b845278f44
|
|
| MD5 |
767fe4dc8b447fb516b04b52a8306e54
|
|
| BLAKE2b-256 |
833f1c64b12b6974decae0c21e80b36ddcdd2cc4f283b471456dc98c993f14a1
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-win32.whl -
Subject digest:
da5c837afd1aa359172a288a1ac5490d5cf69ad3424d2e589dbc46b845278f44 - Sigstore transparency entry: 1086854776
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 340.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb85be8607104d090dfc67dd9f564cd838ba7930f5ca7e99c5d644691e85f479
|
|
| MD5 |
568a51448c86c7ff7e72de8df7a73129
|
|
| BLAKE2b-256 |
98fe52a52fedbd388a697711b1139ac77291a10f69a24b2bea4d5995690b8cc8
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
eb85be8607104d090dfc67dd9f564cd838ba7930f5ca7e99c5d644691e85f479 - Sigstore transparency entry: 1086857660
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 335.1 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1bb8ecf98bf9b99dbeecd3ff68d3f49a94716289e1963f05e7b0b0fe1b5ef40c
|
|
| MD5 |
30d2d305bcde64d96a3f19c26a760df4
|
|
| BLAKE2b-256 |
3f62200bc571c828b174b596ef64216bd59c8d5f512a7aa2c24141eca25a95f9
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
1bb8ecf98bf9b99dbeecd3ff68d3f49a94716289e1963f05e7b0b0fe1b5ef40c - Sigstore transparency entry: 1086856273
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 337.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d766501e97e71f63bdbcc60ea73ef8b7a822d1d5846abc050958b8a282e03fae
|
|
| MD5 |
7756e5422e830f347814e5b64eaa558e
|
|
| BLAKE2b-256 |
65365933ff08356181ce3150365cb493181d6ecd778e1edc82a169fc3cb5478c
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d766501e97e71f63bdbcc60ea73ef8b7a822d1d5846abc050958b8a282e03fae - Sigstore transparency entry: 1086854885
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 330.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
275a72b47bbbc191d25dafe7d5d13f62be2f64c6d1c51156b752f749e12f4fcc
|
|
| MD5 |
1c573065c6c05c02176ab9b85e084047
|
|
| BLAKE2b-256 |
c752761e93de34e1a4ad7526e22553be145d0ee410c5895385a5ccd50123971a
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
275a72b47bbbc191d25dafe7d5d13f62be2f64c6d1c51156b752f749e12f4fcc - Sigstore transparency entry: 1086856320
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.3 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d06b285e5bbf0c0786b73f1f60a0896ca386b671547c36e782d78cf6f6c509c
|
|
| MD5 |
95b1eb6466ca2ba6ed7265f6ef66c2c4
|
|
| BLAKE2b-256 |
083ec000dab24134bf4ead259a4fc61a909341ca83d3d794133f2f5160d54891
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
8d06b285e5bbf0c0786b73f1f60a0896ca386b671547c36e782d78cf6f6c509c - Sigstore transparency entry: 1086857321
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 301.0 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c2cc93331a9c9a7a232e544f829dfe0d22ef87805eebbdda9b7eda1b958a92d
|
|
| MD5 |
4a3e21e4d55607cb8e9cd89d9cffbf8f
|
|
| BLAKE2b-256 |
96cd97c820959d1b0b5d40bc60e89c17c6c0b95c5729f28a6a290630e450befd
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
2c2cc93331a9c9a7a232e544f829dfe0d22ef87805eebbdda9b7eda1b958a92d - Sigstore transparency entry: 1086856944
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 274.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e8ac4cfc6d1a870427a14938adc3596f155d866c72f8fdf24e6ac011e603c61
|
|
| MD5 |
b472dc59ac844d71b2e3eb474123863f
|
|
| BLAKE2b-256 |
5573a9e26cd39acaf4bb023d4d705a1f327bed7b12312f1929a118399fb33758
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-win_amd64.whl -
Subject digest:
0e8ac4cfc6d1a870427a14938adc3596f155d866c72f8fdf24e6ac011e603c61 - Sigstore transparency entry: 1086856687
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-win32.whl
- Upload date:
- Size: 236.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a77d678b50cc5e2e62527e06c2b901b2e24270ea3a0ece0517d1b41901fd75fc
|
|
| MD5 |
f3ed62aa4e1135dfad65a5ad3cc76b94
|
|
| BLAKE2b-256 |
56c0b8c08b0acff479d17078f30e17c9bf0eb23b93d29301c9c3d7513dfd0a85
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-win32.whl -
Subject digest:
a77d678b50cc5e2e62527e06c2b901b2e24270ea3a0ece0517d1b41901fd75fc - Sigstore transparency entry: 1086855868
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 332.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76e273d5213d4d2e4701531c095721b2e2ebf68928e859f8ea6c79ddd9e504e5
|
|
| MD5 |
d28ef2593b0fcfe2372fa0a26157acf3
|
|
| BLAKE2b-256 |
8a36bff6d3fa3e047181fd80041405a0ae0f2eab8d9c0ece1b4a179fc28db99d
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
76e273d5213d4d2e4701531c095721b2e2ebf68928e859f8ea6c79ddd9e504e5 - Sigstore transparency entry: 1086855971
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 321.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8b62defadc69cde78444fbc30ad6a183b966e4fec63e04caf581c4a16a0d28d
|
|
| MD5 |
8818494214e02d31b319f93e20cc2f0a
|
|
| BLAKE2b-256 |
aa461504dec9e93a8f899e40224fa8fef60cc0e346918465ca83f609828572a0
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
a8b62defadc69cde78444fbc30ad6a183b966e4fec63e04caf581c4a16a0d28d - Sigstore transparency entry: 1086857611
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 329.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1427ef16be21ce4eb0566432c6795883cebe4cdc00472842e5fe27308c25e6a4
|
|
| MD5 |
15806543c776d4b5a32c1d7444fad3af
|
|
| BLAKE2b-256 |
2fc893bd1c2bf2c5cc441287dfc9d7f20933ca55220a54653fb4866957fd1739
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
1427ef16be21ce4eb0566432c6795883cebe4cdc00472842e5fe27308c25e6a4 - Sigstore transparency entry: 1086857132
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 317.2 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ceef59e09cc19d41a0a3041958017c9c32f20ee10fb1ae78918b6b4442911fc0
|
|
| MD5 |
3d8e88803e954a76e8747c1166d9dee7
|
|
| BLAKE2b-256 |
6f2666217eb1fd94ae7498281eb338861bfd04642d8a52a5919b385800e6a165
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ceef59e09cc19d41a0a3041958017c9c32f20ee10fb1ae78918b6b4442911fc0 - Sigstore transparency entry: 1086855280
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.4 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78debecd46e345be2a19534977526eea2aac3f9f4f70e5448b1ad81478c8563c
|
|
| MD5 |
509bebe3a1e5fe2843b021ea5f8f4f59
|
|
| BLAKE2b-256 |
14f17fc893bcde0253d72b8f97d7fa114b93a2c30a2fec3620475f321eed73d5
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
78debecd46e345be2a19534977526eea2aac3f9f4f70e5448b1ad81478c8563c - Sigstore transparency entry: 1086856119
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 282.9 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39d0039ca3e99e7835aa20893021e3ac45cc873773b1e98c112f4c3f6a1a6efe
|
|
| MD5 |
e217b2876291c388e4dca33412a171dd
|
|
| BLAKE2b-256 |
9db8eb1a2079e3b6b6229a5ba3412b3b47840b050f8c3774708681db662b0083
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
39d0039ca3e99e7835aa20893021e3ac45cc873773b1e98c112f4c3f6a1a6efe - Sigstore transparency entry: 1086856580
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 268.8 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
937735f2b1b7ec6ebf0b47bd06a2ce66b736d5f5938034a22728c0969d76a626
|
|
| MD5 |
4d21199a33e3adb5fa13b606532969f1
|
|
| BLAKE2b-256 |
d01d6b7b50c062451ef3fabefc4f4c3d7a1172182002d1264d1503a00614986f
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-win_amd64.whl -
Subject digest:
937735f2b1b7ec6ebf0b47bd06a2ce66b736d5f5938034a22728c0969d76a626 - Sigstore transparency entry: 1086855451
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-win32.whl
- Upload date:
- Size: 231.1 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d50ea511972affcf8b5c4792bba720e63441117197f11ea04eb0dd38e32e9db8
|
|
| MD5 |
63a80e143b4ccc012ae0c04451f2e922
|
|
| BLAKE2b-256 |
1093cbc486a71a6218df9cdc8b17274735ec6e6c9b66ffd4205eec742cff4ae9
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-win32.whl -
Subject digest:
d50ea511972affcf8b5c4792bba720e63441117197f11ea04eb0dd38e32e9db8 - Sigstore transparency entry: 1086856235
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 331.5 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b90bd10d474d7f5c783343b4a1508fea0fde3baba04f2ee94e281e46022d0ac
|
|
| MD5 |
d82e05681311e3d42ac8011e971d57f9
|
|
| BLAKE2b-256 |
87bb97dda5a95524828125bf03233034f0157bbf9cf601b2e05504f1a23b8832
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
8b90bd10d474d7f5c783343b4a1508fea0fde3baba04f2ee94e281e46022d0ac - Sigstore transparency entry: 1086856737
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 317.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9f8a96d9dae2092970ee93be324367fb28a42b91e5801d5daa359f032ceedd8
|
|
| MD5 |
cf837259a3a4efd1c9119b10e116ee95
|
|
| BLAKE2b-256 |
600f72798d2e3eabbd86bcd7697ca892ed569dcb629ea2ca54878829ce92bf0f
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
a9f8a96d9dae2092970ee93be324367fb28a42b91e5801d5daa359f032ceedd8 - Sigstore transparency entry: 1086855106
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 327.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98593cf91b3568b5a3ffc2d26bdcddde2ee13a7f28118f2cd2ec9a8f2183611a
|
|
| MD5 |
e1dacb9e2ee69d36cdea7eb3d3e218ac
|
|
| BLAKE2b-256 |
70e270f6d4835aa66209c4099c3a38b54351aa25f928ba7110af5532eb1a3462
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
98593cf91b3568b5a3ffc2d26bdcddde2ee13a7f28118f2cd2ec9a8f2183611a - Sigstore transparency entry: 1086855748
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 312.9 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72bdf37cbce5ed7b5ce8cec1779ba8fb73ad7f2f100945059639f4d57d67a024
|
|
| MD5 |
838529fc7421849ed351e1529416c964
|
|
| BLAKE2b-256 |
83a754247e292a04e66fb6cc499e439e5b1c6b8e3165c5fa1796cf6d3b1ef5ea
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
72bdf37cbce5ed7b5ce8cec1779ba8fb73ad7f2f100945059639f4d57d67a024 - Sigstore transparency entry: 1086856525
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 272.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b9c55b51463d6e32b1c33c8488b45156305d14ab587b6095088e2e41c260c17
|
|
| MD5 |
f840de48f43c564c5e63bdf0cde422f9
|
|
| BLAKE2b-256 |
419a6eb67aa4932e800493daca8279c975c042d767dc6a92ebd9ca3f9a1233cd
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
7b9c55b51463d6e32b1c33c8488b45156305d14ab587b6095088e2e41c260c17 - Sigstore transparency entry: 1086856425
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 281.2 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1ba92443cca03953113a3536fd5ef8e5e8526e43d109184461c5c57fcbfce27
|
|
| MD5 |
5969269aeb3ecbe22f8d28d9f12770af
|
|
| BLAKE2b-256 |
2f337bb68c4ca65e4dbd4d696644d4801e32dbf023c1299755c2e82465917b32
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
a1ba92443cca03953113a3536fd5ef8e5e8526e43d109184461c5c57fcbfce27 - Sigstore transparency entry: 1086855567
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 269.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a39c316c536135c36bc557fb61db7edb59f8732d19a18329731c24a898387f07
|
|
| MD5 |
5871fe1f500a0494dcb3713929a192a9
|
|
| BLAKE2b-256 |
c5957074c1b84e3b01e080959e02a767932340a57cb7c8906fb06a2b5344aaa1
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-win_amd64.whl -
Subject digest:
a39c316c536135c36bc557fb61db7edb59f8732d19a18329731c24a898387f07 - Sigstore transparency entry: 1086857523
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-win32.whl
- Upload date:
- Size: 231.4 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
532fac45a24567b96d8b1df32f7ebd82fc3593ef1ac133dce8dd5220ae1141a0
|
|
| MD5 |
81fdad3c9ee17461a97a638201b09c75
|
|
| BLAKE2b-256 |
ba3e1b1b81fcd70324a8b1dfcc2fac222ee81bbd5a70f2ad0b856b8dbc7c834b
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-win32.whl -
Subject digest:
532fac45a24567b96d8b1df32f7ebd82fc3593ef1ac133dce8dd5220ae1141a0 - Sigstore transparency entry: 1086857028
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 332.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e096deb61f098c7d3188fc81f52c85c0dcae38395cd3b581fac518ad8037bc7e
|
|
| MD5 |
671c300d9a308d7a0d909f09b924dd6a
|
|
| BLAKE2b-256 |
b90ea43084b38adc4ddbe3fe61a0fcce167507c1f8d5a201c144c2bab227bd6a
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
e096deb61f098c7d3188fc81f52c85c0dcae38395cd3b581fac518ad8037bc7e - Sigstore transparency entry: 1086857372
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 318.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
29ef75042cc8081ed563d763bf759e36e8ff345fa12c78c6655e55f30ed32358
|
|
| MD5 |
776a52e453fa98efbe28029ee7f77ef8
|
|
| BLAKE2b-256 |
cb3a56230379b85f5d63fc4bb86f0eb861918362ce89251201f62580ffb98e5b
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
29ef75042cc8081ed563d763bf759e36e8ff345fa12c78c6655e55f30ed32358 - Sigstore transparency entry: 1086857068
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 328.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2ebdd7299f65f9ea2cfb532b1188030b4e66f924fbf44a5587a9c0456ba094c
|
|
| MD5 |
b09471e716ec4357d3dd95b4de3d86b3
|
|
| BLAKE2b-256 |
572eb3d508333cca3ad82e1ea55bfcc783a31e22ef8ff112d85ceb100c6db80f
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c2ebdd7299f65f9ea2cfb532b1188030b4e66f924fbf44a5587a9c0456ba094c - Sigstore transparency entry: 1086855509
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 314.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6f6d0d16cf8838e7324c4585c3ea5b23e74f8ef07ea54d7039f3c39e8d9cd52
|
|
| MD5 |
498f638bd6a7cf20d0e4e050736ed7a1
|
|
| BLAKE2b-256 |
3fd99fe39c3fd4ebddc86ac33f05b33c5c59913e466bfe53e98c126d0ed8a937
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e6f6d0d16cf8838e7324c4585c3ea5b23e74f8ef07ea54d7039f3c39e8d9cd52 - Sigstore transparency entry: 1086855402
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dbc307204a1393d3cd397d901b3d3618b9c266e812714fe7f3e80219d8c445d
|
|
| MD5 |
60554385423b7ade03e45bba7a08f6f2
|
|
| BLAKE2b-256 |
13d0f92fb6770d6f7bef7fc00a38c535460e0a7a453fae62c7cf912a3275ef55
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
5dbc307204a1393d3cd397d901b3d3618b9c266e812714fe7f3e80219d8c445d - Sigstore transparency entry: 1086855232
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 283.2 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8156b852a8b3d3d648cebc8958649aa35527ddb310eb45e552fedae25d78f33e
|
|
| MD5 |
9b942b31b120cb568c0f04ce3bdaec20
|
|
| BLAKE2b-256 |
cb3f853ff94a332bf85e6445dcc6980fb56cb16e21c2c04952dfd49d4935f3bf
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
8156b852a8b3d3d648cebc8958649aa35527ddb310eb45e552fedae25d78f33e - Sigstore transparency entry: 1086855044
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 268.1 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
680c520f8b06621e327845ef3751bdc8c1c40f39f0af94bd8f7e98becee71d5a
|
|
| MD5 |
3a6b8c084a232024769badd3c2bbb7c3
|
|
| BLAKE2b-256 |
e8d885e1b95e834e25ce9c2848a56b2fbb1850eb1cb97afec8b8b3f120859178
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-win_amd64.whl -
Subject digest:
680c520f8b06621e327845ef3751bdc8c1c40f39f0af94bd8f7e98becee71d5a - Sigstore transparency entry: 1086857563
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-win32.whl
- Upload date:
- Size: 235.2 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5401e348df4968af44f2fc421e39eacd37442e523f242d8afd6eb1834695730d
|
|
| MD5 |
3e7395bda55e44fd8f0cfd5f11d1b522
|
|
| BLAKE2b-256 |
cbd6a0f83fd9be7f35f2a74db2cb9e7e30fb708b6a43a6f6066831dc18d8f700
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-win32.whl -
Subject digest:
5401e348df4968af44f2fc421e39eacd37442e523f242d8afd6eb1834695730d - Sigstore transparency entry: 1086856069
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 331.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19aa4b0dc1800ebba7b6d9c90beff0699058e70d2d4f1c2698bede83cb56bdbb
|
|
| MD5 |
be37214eca6f772776b62fb856511fe9
|
|
| BLAKE2b-256 |
40f19af8bbf9f72c8d92f97e7eae5f37ead35fb53ef069e8d75aac1e69e31346
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
19aa4b0dc1800ebba7b6d9c90beff0699058e70d2d4f1c2698bede83cb56bdbb - Sigstore transparency entry: 1086855926
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 321.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f2e2aece4658eb49a52dd04b10fd4e1d9b2a18d51466cf9a196da10a5c80c95
|
|
| MD5 |
5d2ba96b82eee8abc1162939e8bb7c1c
|
|
| BLAKE2b-256 |
0d407d4a841811e9bf9cca84be99995bcd49bb39781e279f7e15fb74e0b53cd3
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
6f2e2aece4658eb49a52dd04b10fd4e1d9b2a18d51466cf9a196da10a5c80c95 - Sigstore transparency entry: 1086857260
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 327.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eea5e9efd3daef42c9174973e51a59c8a1315627b0c90376114db41fe292be62
|
|
| MD5 |
f167728e3c3d25233df4390b78a16ab8
|
|
| BLAKE2b-256 |
c82eeff2ac4838aac6269469ca76af318dce8be14dc79b911a6a2b2046a610dc
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
eea5e9efd3daef42c9174973e51a59c8a1315627b0c90376114db41fe292be62 - Sigstore transparency entry: 1086854980
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 317.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57f7289d326db75c3be6ab3394852437870804bba22e920e59730259ab43de56
|
|
| MD5 |
262315cccf2427b4f4109d1eb5800730
|
|
| BLAKE2b-256 |
9871024b7ef3a0c38ec8b9328d6cbc6bc248f7a3f00ea0c9a197c10c6155dc95
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
57f7289d326db75c3be6ab3394852437870804bba22e920e59730259ab43de56 - Sigstore transparency entry: 1086855614
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 274.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8af2fe667164dd6eb0e3c3a79c91e30542efd06e93fb5f4b28f5701fdf87b86
|
|
| MD5 |
ce0f2b00579a120d330af60ab6029a1f
|
|
| BLAKE2b-256 |
734188627fbd88c4e6c77d740ad4fa84b44012942ec34c7b4851a72021f692ad
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
f8af2fe667164dd6eb0e3c3a79c91e30542efd06e93fb5f4b28f5701fdf87b86 - Sigstore transparency entry: 1086856990
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 283.6 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6497fdd2edc37a9d89732e30a2148077c09c111263ab56f93c576f2341c4273
|
|
| MD5 |
d83aa16dcbb008cab7145bddfe824e4f
|
|
| BLAKE2b-256 |
f47f5a950cb54138129a4acd3d7e6e545940699981ad626d235d89c062ea220c
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
f6497fdd2edc37a9d89732e30a2148077c09c111263ab56f93c576f2341c4273 - Sigstore transparency entry: 1086856894
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 265.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2005f72da0cde6fc3d12af14cfb98a03a1eec7378baca3f2daf5c88219bc0a2b
|
|
| MD5 |
bf33e43b5f97d5fac24c2687979d461e
|
|
| BLAKE2b-256 |
4ad7bd617045560b12049dfeb6c8ece77cfaae16d2767e17eef59d46db0742c1
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-win_amd64.whl -
Subject digest:
2005f72da0cde6fc3d12af14cfb98a03a1eec7378baca3f2daf5c88219bc0a2b - Sigstore transparency entry: 1086857703
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-win32.whl
- Upload date:
- Size: 235.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ad7659079119dde4c011067fbef2a25ede25bb7403fa72c8fc2787f65ef5438
|
|
| MD5 |
91e3addaf339a2f050bcdd89e09c50ab
|
|
| BLAKE2b-256 |
5963da2636c888a8a30fce9f9c9864f008b6c4e473189d6b8e228278c2455d6a
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-win32.whl -
Subject digest:
5ad7659079119dde4c011067fbef2a25ede25bb7403fa72c8fc2787f65ef5438 - Sigstore transparency entry: 1086854833
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 330.1 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
555abebcd1bda867540008697d917562a063645cdc82e04bd9c907abf3f9d19b
|
|
| MD5 |
3ac7c94ef5f562b3a5d5ab9317495870
|
|
| BLAKE2b-256 |
0a5272a82d9e02d39f38dcfd3990db4ce6a2b9f234861715c28f11b940066106
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
555abebcd1bda867540008697d917562a063645cdc82e04bd9c907abf3f9d19b - Sigstore transparency entry: 1086856379
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 320.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
628f4f48c785bb6c372b8218b82f633bb9d31a976a52d12ad7c3ae861c67b037
|
|
| MD5 |
29a458fbb238f137ed32c869e1859748
|
|
| BLAKE2b-256 |
2df88cd05d5a8abda79dbb48b2bc2c530732388794a709dae747a3ff1066e757
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
628f4f48c785bb6c372b8218b82f633bb9d31a976a52d12ad7c3ae861c67b037 - Sigstore transparency entry: 1086856187
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 326.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55019febf42b086de1edab31a5760e5d2928f80a2d60fc1ac76e20176b2efac3
|
|
| MD5 |
044bdf035c612730ff9d2f302f816ae0
|
|
| BLAKE2b-256 |
5b722253624059a6329ec4635312bde39bca653cc6450ced89fd3f5740eff0c1
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
55019febf42b086de1edab31a5760e5d2928f80a2d60fc1ac76e20176b2efac3 - Sigstore transparency entry: 1086857205
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 316.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b1433b885ae82c6c74682ea7dcc873fd6840a7f56d076f99f0c0a02bd3135469
|
|
| MD5 |
d9543651fe48e198639c982f9265073d
|
|
| BLAKE2b-256 |
8d1a57abcc035447fa6b60638d47672fcd36d18912c29a07720a4e862ab8b6f7
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
b1433b885ae82c6c74682ea7dcc873fd6840a7f56d076f99f0c0a02bd3135469 - Sigstore transparency entry: 1086854941
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 275.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33d992dce4dec2a60a734447923e52cd1a9e952b9108c8f822d42b14d1b95e7e
|
|
| MD5 |
d4aad7c2c4464c88e0bfc1cdf48be7b0
|
|
| BLAKE2b-256 |
1fc400415b686098765c18fb8e370052055e18bf4ba40ce63cbb85e85ecef8db
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
33d992dce4dec2a60a734447923e52cd1a9e952b9108c8f822d42b14d1b95e7e - Sigstore transparency entry: 1086856478
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 283.5 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a64da363a80a25f81f158562a906566599a230656c8a3d47ddd2084ee8bfdd9
|
|
| MD5 |
2a8dba05f68b4a59ab0b335840a6ffb8
|
|
| BLAKE2b-256 |
581391f51e6f0ad6e2f7a8ee94b7f0b544d84ab37637d8ca9d58461cf0f6afc2
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
4a64da363a80a25f81f158562a906566599a230656c8a3d47ddd2084ee8bfdd9 - Sigstore transparency entry: 1086856629
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 266.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6eb6e5256c8bf31bd62c6f0a7e30bddfb0b145ccee06f43e590ce3bebd4b0a78
|
|
| MD5 |
8009b0a3f030ff7c7275d6f81562a9d2
|
|
| BLAKE2b-256 |
10661ed639827dea80ac5501ffb7b79b8e77360d13eff74d8bde5652bdc21d6b
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-win_amd64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-win_amd64.whl -
Subject digest:
6eb6e5256c8bf31bd62c6f0a7e30bddfb0b145ccee06f43e590ce3bebd4b0a78 - Sigstore transparency entry: 1086857457
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-win32.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-win32.whl
- Upload date:
- Size: 237.0 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59d2c4b52a09eb5374059a64b39f8cf302dcc434bd76a8f5aecbf6cefb6780ab
|
|
| MD5 |
1c9924844e012ffb9c4c02e57b7b6a1a
|
|
| BLAKE2b-256 |
f35b0e4a77553c4a92b9b2b041b6368729134a039b1991534d93c81bbbf3542d
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-win32.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-win32.whl -
Subject digest:
59d2c4b52a09eb5374059a64b39f8cf302dcc434bd76a8f5aecbf6cefb6780ab - Sigstore transparency entry: 1086855685
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 332.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0895d08c699294b67cd25c2f702dc9ef3a1b254b678008bdbd36ab8215c3044
|
|
| MD5 |
12f98e3d41c6a5ef81c9534d9ba83a3c
|
|
| BLAKE2b-256 |
175aa73c9a41e15d516f191ce6d6f120a7f6f62888775481b38176fca341111a
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
f0895d08c699294b67cd25c2f702dc9ef3a1b254b678008bdbd36ab8215c3044 - Sigstore transparency entry: 1086856016
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 322.9 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01725d91081e2d3d180d0ef48c49dce08c0c188fe485f536f980835eaf9aa0d9
|
|
| MD5 |
8cc2c0bacda5b281b3050d6e67c809b2
|
|
| BLAKE2b-256 |
ad0859571c21637b91e4289c1dc1367507d5b890a9b6f9943536b122dcd24ae3
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
01725d91081e2d3d180d0ef48c49dce08c0c188fe485f536f980835eaf9aa0d9 - Sigstore transparency entry: 1086855343
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 329.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d427b9afa81d0a227e81e67f5d3fa93bacda6542fbf26d95d352540aa1113088
|
|
| MD5 |
1f84d3d94549a4cb2b6f7fa86e96559f
|
|
| BLAKE2b-256 |
acaddcdf3d209ef81c9cc544b182b7943ee760ee7428644d3984ae33bf821e8e
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d427b9afa81d0a227e81e67f5d3fa93bacda6542fbf26d95d352540aa1113088 - Sigstore transparency entry: 1086857411
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 318.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d355f55d560fa19e630e001524a38cc9dddbd3c192a64f9fb5ab03051b04ca19
|
|
| MD5 |
02c49eb9e04d740587fcea705e80ac31
|
|
| BLAKE2b-256 |
c87c47b2f2fdd5403308f6deb668604f41d8b158b315834220eda3ea934d440f
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
d355f55d560fa19e630e001524a38cc9dddbd3c192a64f9fb5ab03051b04ca19 - Sigstore transparency entry: 1086856788
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 276.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04e07a0cc1fad95f0b2d0523cc7fb7a8a635f56ed55c6e934bab5cffb3aa6762
|
|
| MD5 |
18a58f9363df5faba9680800e1f54ec8
|
|
| BLAKE2b-256 |
41dab8d0112880a12fa7ae1d17892cd7383e65fb84d4043adb7bef711369bab0
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
04e07a0cc1fad95f0b2d0523cc7fb7a8a635f56ed55c6e934bab5cffb3aa6762 - Sigstore transparency entry: 1086855174
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type:
File details
Details for the file aiofastnet-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: aiofastnet-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 285.0 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ae1bfdfc8e724453089ac137822ecc02e0397faf82f5cbb55c3c14af6f0d81c
|
|
| MD5 |
1966326a2b60c174860a523df9e8bbbe
|
|
| BLAKE2b-256 |
2306b58626eabffa5519f2c95eaad41439a70c2fff79876267d20fcc61823a66
|
Provenance
The following attestation bundles were made for aiofastnet-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl:
Publisher:
release.yml on tarasko/aiofastnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
aiofastnet-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl -
Subject digest:
8ae1bfdfc8e724453089ac137822ecc02e0397faf82f5cbb55c3c14af6f0d81c - Sigstore transparency entry: 1086856835
- Sigstore integration time:
-
Permalink:
tarasko/aiofastnet@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Branch / Tag:
refs/tags/v0.0.7 - Owner: https://github.com/tarasko
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@dc81e54cf139fed581d26bccd7f837e2fbf1f3c6 -
Trigger Event:
push
-
Statement type: