Tools for calculation of Wasserstein metric between distributions based on Network Flow algorithm
Project description
wnet
Wasserstein Network (wnet) is a Python/C++ library for working with Wasserstein distances. It uses the Min Cost Flow algorithm as implemented by the LEMON library, exposed to Python via the pylmcf module, enabling efficient computation and manipulation of Wasserstein distances between multidimensional distributions.
Features
- Wasserstein and Truncated Wasserstein distance between multidimensional distributions (dimensions 1–20)
- Three distance metrics: L1, L2, L∞
- Derivatives with respect to peak intensities and spectrum mixture proportions
- Position gradients (∂cost/∂position) with warm-restart re-solving after peak position updates
- Support for distribution mixtures and efficient recalculation with changed mixture proportions
- Picklable
Distributionobjects
Installation
You can install the Python package using pip:
pip install wnet
Usage
Basic distance
import numpy as np
from wnet import WassersteinDistance, Distribution
from wnet.distances import DistanceMetric
positions1 = np.array([[0, 1, 5, 10], [0, 0, 0, 3]])
intensities1 = np.array([10, 5, 5, 5])
positions2 = np.array([[1, 10], [0, 0]])
intensities2 = np.array([20, 5])
S1 = Distribution(positions1, intensities1)
S2 = Distribution(positions2, intensities2)
print(WassersteinDistance(S1, S2, DistanceMetric.L1))
# 45
Truncated Wasserstein
Mass that cannot be matched within max_distance is discarded at a fixed cost rather than transported arbitrarily far:
from wnet import TruncatedWassersteinDistance
print(TruncatedWassersteinDistance(S1, S2, DistanceMetric.L2, max_distance=3.0))
Derivatives w.r.t. peak intensities
signal_part_derivatives() returns the marginal cost of increasing each theoretical peak's intensity by 1 — useful for scoring how well each peak is explained:
from wnet import WassersteinNetwork
W = WassersteinNetwork(S1, [S2], DistanceMetric.L2, max_distance=10.0)
W.build()
W.solve()
derivs = W.signal_part_derivatives() # np.ndarray, one value per peak in S1
Optimising peak positions
After an initial solve, positions can be updated and re-solved cheaply via a warm restart. update_positions_and_get_gradient() returns ∂cost/∂position for all peaks so you can feed them directly into a gradient-based optimiser:
W = WassersteinNetwork(S1, [S2], DistanceMetric.L2, max_distance=10.0)
W.build()
W.solve()
for _ in range(100):
grad_empirical, grad_theoretical = W.update_positions_and_get_gradient(new_positions)
new_positions -= 0.01 * grad_empirical
Licence
MIT Licence
Related Projects
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 wnet-0.9.16.tar.gz.
File metadata
- Download URL: wnet-0.9.16.tar.gz
- Upload date:
- Size: 49.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
38e3ddb63a50a258d67648daf06ce81cdc1f77bc3942afb83c221c37a9215694
|
|
| MD5 |
ab7253958d52db9066d032859d39c6ab
|
|
| BLAKE2b-256 |
723b18edfe03d4e7a6264cbc7854403e5b4ea32ec61bcbdf89e3acb9c868c014
|
Provenance
The following attestation bundles were made for wnet-0.9.16.tar.gz:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16.tar.gz -
Subject digest:
38e3ddb63a50a258d67648daf06ce81cdc1f77bc3942afb83c221c37a9215694 - Sigstore transparency entry: 1582631101
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 557.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b45c5dd64c3e5cf046fa1dacb0cde0240fa7cd8b3993c404608bd66a3d4039e9
|
|
| MD5 |
80c67a0d8caca6434031633fef55a44b
|
|
| BLAKE2b-256 |
d54a1719e20a3b29e281f6349530c94351a6b83e22300e1a08ffb85e83d67eea
|
Provenance
The following attestation bundles were made for wnet-0.9.16-pp311-pypy311_pp73-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-pp311-pypy311_pp73-win_amd64.whl -
Subject digest:
b45c5dd64c3e5cf046fa1dacb0cde0240fa7cd8b3993c404608bd66a3d4039e9 - Sigstore transparency entry: 1582636699
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 913.3 kB
- Tags: PyPy, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fa7f62d34b59a008eae62104c393d50873a603d12b7630942708340db2fcaea
|
|
| MD5 |
1c7b0111a5a95b5a7dce573d2b98e7c4
|
|
| BLAKE2b-256 |
557685cad1f8d47b38f92ad859cf74333509ce85cfa62f3f28dfe052ed07fed5
|
Provenance
The following attestation bundles were made for wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0fa7f62d34b59a008eae62104c393d50873a603d12b7630942708340db2fcaea - Sigstore transparency entry: 1582637163
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 838.8 kB
- Tags: PyPy, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5d4f94df1d0361bf47f1582b93cf2391f5bd086aaed9be831d24e49f1a4bf4d
|
|
| MD5 |
ab496606867a5fbda3f7fd150e2fa2e2
|
|
| BLAKE2b-256 |
3dacc7e3cc9fe914c5557d333d2afdec3e47820e94ae7d760254fa64a0bdab33
|
Provenance
The following attestation bundles were made for wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
a5d4f94df1d0361bf47f1582b93cf2391f5bd086aaed9be831d24e49f1a4bf4d - Sigstore transparency entry: 1582631850
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 579.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21e496b16d9b589753175cc6399d76cbadd36ff489a3bdd57052c6edb2bdc64d
|
|
| MD5 |
f90c4e3d8b3218756d216e1f45806ff5
|
|
| BLAKE2b-256 |
8ea4d1bdee099dcb6af016270732c3e77dbef841b48125ec37ab604b51e67596
|
Provenance
The following attestation bundles were made for wnet-0.9.16-pp311-pypy311_pp73-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-pp311-pypy311_pp73-macosx_11_0_arm64.whl -
Subject digest:
21e496b16d9b589753175cc6399d76cbadd36ff489a3bdd57052c6edb2bdc64d - Sigstore transparency entry: 1582637086
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 721.5 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37af4b17cf52aef95c41f93301f350a5468b86f3337a50efd5297a65f88e4cc3
|
|
| MD5 |
e721bf3c797749d05620e779a5b10917
|
|
| BLAKE2b-256 |
d78a60a5f04c2627adfd84a8f027210b0832f03eb7e8c333474076b145faa6ae
|
Provenance
The following attestation bundles were made for wnet-0.9.16-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-pp311-pypy311_pp73-macosx_10_15_x86_64.whl -
Subject digest:
37af4b17cf52aef95c41f93301f350a5468b86f3337a50efd5297a65f88e4cc3 - Sigstore transparency entry: 1582637765
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 481.7 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a2f4ad9f98f8fce1bcc5a14b36a235d48174e3e6af52e00fc4b02be226d921b
|
|
| MD5 |
deb7c0d077c33542ecb986ce41159856
|
|
| BLAKE2b-256 |
63ebc62f97cafd56d153a41635ec509f2fc76fc22ed01795e57c6079895836b1
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-win_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-win_arm64.whl -
Subject digest:
6a2f4ad9f98f8fce1bcc5a14b36a235d48174e3e6af52e00fc4b02be226d921b - Sigstore transparency entry: 1582634901
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 590.6 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95ddbddfb27922d676d9fba45a842f8a8f9fe79ab66002cb5b13d1055c696081
|
|
| MD5 |
b6ffa06043826d736262aa3e6df591f7
|
|
| BLAKE2b-256 |
90106a3dfea797548f24716a8cfff08607b0eca8b087b2e31b592e8972314e03
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-win_amd64.whl -
Subject digest:
95ddbddfb27922d676d9fba45a842f8a8f9fe79ab66002cb5b13d1055c696081 - Sigstore transparency entry: 1582634827
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-win32.whl
- Upload date:
- Size: 561.3 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1201164fff349d0c20baf7f2682b797d8f52ec5c381c5de6192dc615613a7149
|
|
| MD5 |
8b09e6fae6ddb9e29c296fb587e89b36
|
|
| BLAKE2b-256 |
55cb5b4a98dd5f6261e6aa8a9ad25a483c60eb5e81ef48beb2b5246c5879a922
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-win32.whl -
Subject digest:
1201164fff349d0c20baf7f2682b797d8f52ec5c381c5de6192dc615613a7149 - Sigstore transparency entry: 1582635607
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5632d72b8847881eb893fd90dfc023dc5fbb71189134f1d085f1c861fb34f9ba
|
|
| MD5 |
5beaf7673972a2ba19734fbf8d2f9693
|
|
| BLAKE2b-256 |
e6acca7b35c312c1f512a94e74224f73a11f558ab32d3ca17aa057bdfc31ca85
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
5632d72b8847881eb893fd90dfc023dc5fbb71189134f1d085f1c861fb34f9ba - Sigstore transparency entry: 1582637609
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca35b566c7f72e77a9b15ec84d397cd473ba24fa04362a71f6c33156a4fb8637
|
|
| MD5 |
586e762ae22ad1226a7919ee1bd640cb
|
|
| BLAKE2b-256 |
a1d54377db1c967d2ef557f23bb514c2775cf826e9c1a4d404f609f127c7cee1
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
ca35b566c7f72e77a9b15ec84d397cd473ba24fa04362a71f6c33156a4fb8637 - Sigstore transparency entry: 1582631665
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 922.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c28fb84c294efe67cd7fd6870c0b3dd05d2d993170b927a563b369087aa91625
|
|
| MD5 |
fb52181b84d77bf4c953e0616c537c5e
|
|
| BLAKE2b-256 |
fb3868d54f42347de9e78e5a7a44742b8180c75cd6a669fdc9b5c08ebc32410e
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c28fb84c294efe67cd7fd6870c0b3dd05d2d993170b927a563b369087aa91625 - Sigstore transparency entry: 1582633418
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 841.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bd522ae5922bd99de6d4125a0cb52d4a8b33c1fb32ab31c511d20d7327a2b52
|
|
| MD5 |
ab087793ea347de2d71e7ba94661e302
|
|
| BLAKE2b-256 |
a8d6a82f4d7096ac9c58b680ad8b06905031050d8e78bee1a41dc61772175ad3
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
0bd522ae5922bd99de6d4125a0cb52d4a8b33c1fb32ab31c511d20d7327a2b52 - Sigstore transparency entry: 1582632504
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 589.7 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe4dc39b62b0e84d05ffc9829b6d56f4ab75152939369f647977f24cf4ad5ad1
|
|
| MD5 |
4ae7eaa8c9d359e7a183a21b1b928462
|
|
| BLAKE2b-256 |
cb1ee1ce0f4bb7d98dd339ce6971a21e9e406ba899812a7888510396b3406af8
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
fe4dc39b62b0e84d05ffc9829b6d56f4ab75152939369f647977f24cf4ad5ad1 - Sigstore transparency entry: 1582635017
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 735.9 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9a6c65c00fcda6b27b27fd123a8e5f3f1e976c3618291c06cc3d515e0140792d
|
|
| MD5 |
a54e959300284b7018d118ab4d706ae7
|
|
| BLAKE2b-256 |
9065bf9257d795f089d2f5ff5c94c78f38cd1f7052bf4aad0dcd625c6e4c9737
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
9a6c65c00fcda6b27b27fd123a8e5f3f1e976c3618291c06cc3d515e0140792d - Sigstore transparency entry: 1582637223
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 474.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
63b2e6ebc46a195773bb3e66390b01c6ff2b7051a710b9a32ae62d4efa6253f0
|
|
| MD5 |
ec95003c28c71977e9e0f644f2bcfe8d
|
|
| BLAKE2b-256 |
9c23013a2a4d0f04dade7134bd995bf98ebf1012b616c470a24df8949c00eba0
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-win_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-win_arm64.whl -
Subject digest:
63b2e6ebc46a195773bb3e66390b01c6ff2b7051a710b9a32ae62d4efa6253f0 - Sigstore transparency entry: 1582635229
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 573.9 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1376362b84b60925f51d9fd7d895970b9942b8197954bce8f49c226ff55ea1b9
|
|
| MD5 |
8c1b4c83c1b74d79cf85b8a1acd2b27e
|
|
| BLAKE2b-256 |
060f6c052f63bb48bf8d1ee5a92de4a5ac87ac74e184014d40815c02b2dc2e43
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-win_amd64.whl -
Subject digest:
1376362b84b60925f51d9fd7d895970b9942b8197954bce8f49c226ff55ea1b9 - Sigstore transparency entry: 1582633882
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-win32.whl
- Upload date:
- Size: 552.1 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79a866d61c7d64a45a639ffd33cb1071bc9753db36f7fcf62c0a6808f4cf7668
|
|
| MD5 |
3526ea68de8f8c68e5d28ce447fa82d2
|
|
| BLAKE2b-256 |
c83b6c8bacebcb88984e52b22edf34430480191f0856b8da7a26f74025dbfeef
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-win32.whl -
Subject digest:
79a866d61c7d64a45a639ffd33cb1071bc9753db36f7fcf62c0a6808f4cf7668 - Sigstore transparency entry: 1582633558
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39eb01fa30e6bf25edf7effbf1ea4dcc1a1032a484a3577d8d6b842979155cc6
|
|
| MD5 |
c418bc027f7b5723ae56bad70fd287bd
|
|
| BLAKE2b-256 |
1494bdd6866b5ad5a04db09654856890cf6039dd00f45a7f0e5c53116cb16b50
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
39eb01fa30e6bf25edf7effbf1ea4dcc1a1032a484a3577d8d6b842979155cc6 - Sigstore transparency entry: 1582636559
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6cc26487fa6f42c4d4584b207995f4210956d5ccf22b3a88ea2cb432ae3f3c57
|
|
| MD5 |
a4003c700ffbd34991104678df3114f0
|
|
| BLAKE2b-256 |
45a17ed3deeed5db774723437261b502bbc135a0051c682f88a4b2f1c70f1eab
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
6cc26487fa6f42c4d4584b207995f4210956d5ccf22b3a88ea2cb432ae3f3c57 - Sigstore transparency entry: 1582635087
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 918.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0801bc63e3a98c919fd68cf969a979bd12c1c7b09792656e8bd989d83fb856ad
|
|
| MD5 |
413b20f72653765c284654f3f59611d7
|
|
| BLAKE2b-256 |
b34eba95d302b3d5c0463005f1c8d57ce64dc6b525cf515f77eab861cf57e91b
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0801bc63e3a98c919fd68cf969a979bd12c1c7b09792656e8bd989d83fb856ad - Sigstore transparency entry: 1582634531
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 846.6 kB
- Tags: CPython 3.14, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60a5f24a559b20bb31e5c423602aafd35c5d5206f139db4dff1c0eeb0c1c7f29
|
|
| MD5 |
59a251d60d27e6c95f16fb5a58941f2e
|
|
| BLAKE2b-256 |
a12f95e21aa400dcb9fbff4a63ac7e5bf263a28353062f5cb2322da652c4e90d
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
60a5f24a559b20bb31e5c423602aafd35c5d5206f139db4dff1c0eeb0c1c7f29 - Sigstore transparency entry: 1582632035
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.0 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9382c9ef606559b2bbd3d40b9ffe389634b49ad60b4537777e7f43a6531b1c80
|
|
| MD5 |
125b62c05e9baebc97cbbdb3d5d81fed
|
|
| BLAKE2b-256 |
4f2a092394028c85aa760d808f8bd1f8f3c4cc6a9d7c6dededd8235cf8903e04
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
9382c9ef606559b2bbd3d40b9ffe389634b49ad60b4537777e7f43a6531b1c80 - Sigstore transparency entry: 1582635682
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 727.2 kB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cbdf23a9f54c8fc6db8200a3f8a0fc8a7c3081eec6cba06aa7fb0a57f52d50f
|
|
| MD5 |
4d243ff53cc2906ce4f363f686f53a47
|
|
| BLAKE2b-256 |
0e9d00c8ee26046497787231eba647de96977bc44484d2596a7be2b2fa16f864
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
5cbdf23a9f54c8fc6db8200a3f8a0fc8a7c3081eec6cba06aa7fb0a57f52d50f - Sigstore transparency entry: 1582635767
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 463.1 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ece6b4fae1d81eac962cf4ff3aae6fe249e51047cddaf38bd7032ac2a72abee9
|
|
| MD5 |
4791e62c846c4155511069652cda604f
|
|
| BLAKE2b-256 |
61ad0af0971aff8ac0245cdf5f2745d0916d13238e40587ffa364b5466a34467
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-win_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-win_arm64.whl -
Subject digest:
ece6b4fae1d81eac962cf4ff3aae6fe249e51047cddaf38bd7032ac2a72abee9 - Sigstore transparency entry: 1582634263
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 558.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bac64beac454bc950dcdc65aac50b490569e4fe7e3eefb2da03118c9ec1de6a
|
|
| MD5 |
2335231b03a3fdc10c6eb8529b386667
|
|
| BLAKE2b-256 |
d706f38004a485809d566cd62663c5516cdc1dfd864cc06acc79f3899b7b2395
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-win_amd64.whl -
Subject digest:
7bac64beac454bc950dcdc65aac50b490569e4fe7e3eefb2da03118c9ec1de6a - Sigstore transparency entry: 1582637366
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-win32.whl
- Upload date:
- Size: 548.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
532a6dcdaa726f921ff219299c782276f1739ff036577fe1a317d0e30e065377
|
|
| MD5 |
1cc050f10af77ca947a0b3a539b4cf80
|
|
| BLAKE2b-256 |
bc468093a7cbc9c245d9846035b73a7be862eb80c352cd1ff248010e6eb17df4
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-win32.whl -
Subject digest:
532a6dcdaa726f921ff219299c782276f1739ff036577fe1a317d0e30e065377 - Sigstore transparency entry: 1582635523
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30f5af137edadac38f2f7c7dccb01a4890c63d05230a577475d4f4e042fa9b2a
|
|
| MD5 |
c689f05d67483521dfbf12cb642fd311
|
|
| BLAKE2b-256 |
4bb3df48e20505975c40401d902854a1ba1d22b87f9976d0b220ecc2a75c4e9b
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
30f5af137edadac38f2f7c7dccb01a4890c63d05230a577475d4f4e042fa9b2a - Sigstore transparency entry: 1582634080
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
078bc6d7c7ab0a22fde8cb04e886ecbcfb94a321728986666fd6eb3240530137
|
|
| MD5 |
f6e89f03ec837e99c9e36f4046f6d698
|
|
| BLAKE2b-256 |
c02e2b3b649d3f6de574297b17d4bdd93ab95b75aabbe647fd3d0421f6073d3a
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
078bc6d7c7ab0a22fde8cb04e886ecbcfb94a321728986666fd6eb3240530137 - Sigstore transparency entry: 1582638218
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 919.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07b09ad9a0c7c599deba78bc7704fff66c2f0a8edb581a8b2c0cd86d14b8c5b1
|
|
| MD5 |
8b95be801ae6c47d6787b825fc89bb07
|
|
| BLAKE2b-256 |
d4aff3d8b084a636b9c3a18349f095f813d780ae32568c75e0f65e299b00add7
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
07b09ad9a0c7c599deba78bc7704fff66c2f0a8edb581a8b2c0cd86d14b8c5b1 - Sigstore transparency entry: 1582638140
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 845.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cafb4a39fe66c01ebb06eb1331c8e1ad4635d2b20bbe198af8839b8548359520
|
|
| MD5 |
77a56aae673561849c2b260af3cc0531
|
|
| BLAKE2b-256 |
aec5c996308ddd15a16a08dc69a578315f6406ca7117ef8ba498320ec75ebf68
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
cafb4a39fe66c01ebb06eb1331c8e1ad4635d2b20bbe198af8839b8548359520 - Sigstore transparency entry: 1582636777
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e7c3415fd5ab6552469d2baf633adf0f94bdb880b78384b5c9c1be620f56b8b
|
|
| MD5 |
412566154b9459db9dacdbd7d5c0cde9
|
|
| BLAKE2b-256 |
d685985cd41b3f74ca8b89ceee1c419b290d9250892e375a48cd6c0830c8f3b5
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
8e7c3415fd5ab6552469d2baf633adf0f94bdb880b78384b5c9c1be620f56b8b - Sigstore transparency entry: 1582634431
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 727.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.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79f6c3ac1b0211eb91529409c198a62bc4e3b2559e215eea1578b4b03d60192b
|
|
| MD5 |
fc37e05114b257b253dfc3819c2ba4ba
|
|
| BLAKE2b-256 |
6a67b617054b24ad561f1dbbefdc9576ecbef5b4eb09ee6527dbde545754a728
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
79f6c3ac1b0211eb91529409c198a62bc4e3b2559e215eea1578b4b03d60192b - Sigstore transparency entry: 1582636009
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 463.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd5f8e55fbd734f7b4621dd8d7f790e253687ebadc6e035770b9b02d6c3f69af
|
|
| MD5 |
35206bdfbf3d9ecd066601640919f0ca
|
|
| BLAKE2b-256 |
ef1a86c12f4e65c48f2bc3db330917ccd8fc0b461fb61ccc64ef1e39e46c261e
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-win_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-win_arm64.whl -
Subject digest:
dd5f8e55fbd734f7b4621dd8d7f790e253687ebadc6e035770b9b02d6c3f69af - Sigstore transparency entry: 1582638318
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 558.7 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c0c6e5cd80e504f55d0a9e08df289f2d9af6be84be4276a54040757af3a0e88
|
|
| MD5 |
c4c2874209519e36c0b4f8661b4458cb
|
|
| BLAKE2b-256 |
3e8a2df226c2311d71b70d7c2fe44d7b3b2498415c591a2ec5816443ec9f684b
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-win_amd64.whl -
Subject digest:
4c0c6e5cd80e504f55d0a9e08df289f2d9af6be84be4276a54040757af3a0e88 - Sigstore transparency entry: 1582637857
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-win32.whl
- Upload date:
- Size: 548.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fedd6b47a9e00ec025323624ed47c27c4a7d879669c4e09bc1459237676869bf
|
|
| MD5 |
19106f2fa8e1be4a1dc928fd38ed4eaa
|
|
| BLAKE2b-256 |
3e62eb79a17fee74c8f8db84ff023fd3743730a2a5ff8e3bb5e5e44de96ae9f6
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-win32.whl -
Subject digest:
fedd6b47a9e00ec025323624ed47c27c4a7d879669c4e09bc1459237676869bf - Sigstore transparency entry: 1582638068
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d3b29e2e97b5a0a825f8266d47ff9e24f261a366c262a0e29f584d9594b5e94
|
|
| MD5 |
5b5451405db01ac08517abeeee0795ce
|
|
| BLAKE2b-256 |
9ee17e63e45f07d5e8a9dc7bbf81859476496026ef061ca23b9931bfa8d6bded
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
3d3b29e2e97b5a0a825f8266d47ff9e24f261a366c262a0e29f584d9594b5e94 - Sigstore transparency entry: 1582636316
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e993ca5d6ab5a133560b3616015ad805e93d28358ab9c830608593559800f027
|
|
| MD5 |
09335439627ac9f2b131d5a3a55d02e4
|
|
| BLAKE2b-256 |
864d190fc75354dd779d1d3deffdbec504d4f9273ce15057862b4795e9bab9ae
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
e993ca5d6ab5a133560b3616015ad805e93d28358ab9c830608593559800f027 - Sigstore transparency entry: 1582637537
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 919.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6852a9c16c99266c737ca3d83d28ca5b91299dd6569c138ff746f49149390590
|
|
| MD5 |
9d130ed2493d337d2938e754b5e39f9e
|
|
| BLAKE2b-256 |
d6cb7f6b07f6d6f1a623506e9974b06b99ec6d1826e7cafa0f869ec3b72d7511
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6852a9c16c99266c737ca3d83d28ca5b91299dd6569c138ff746f49149390590 - Sigstore transparency entry: 1582635433
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 846.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e25d3bc01b66ba947f7d6a0d5b4dc4ce002e3cc5b8e2ec04faef5ce715f080c3
|
|
| MD5 |
fe5478f92ced8f3afeb2edcbf5080a5e
|
|
| BLAKE2b-256 |
6e341f72b32a41d12983038c2eaa1553c07115689a663750203f4d6219e0df16
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
e25d3bc01b66ba947f7d6a0d5b4dc4ce002e3cc5b8e2ec04faef5ce715f080c3 - Sigstore transparency entry: 1582636855
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d8b2c2384ddc1da69584d1e9d7a1158ea4db291f37ccc0fe93b63c3847abc53
|
|
| MD5 |
a5f7041417ad038d2eee8b42b7d51d98
|
|
| BLAKE2b-256 |
d5863b1d3d9da186b93ed0e47b42f556217e9749488b3d272c65de70124b103c
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
8d8b2c2384ddc1da69584d1e9d7a1158ea4db291f37ccc0fe93b63c3847abc53 - Sigstore transparency entry: 1582632223
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 727.3 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c1b87c65a2ee51e1b5207a11f539bb1a65bdaa2e3bf14f48e87a46750af7597
|
|
| MD5 |
bfd4e231f556c9b851f6750bf6857bf7
|
|
| BLAKE2b-256 |
9db7cf0d1608609e18b7b5f8e8feaad38b1fbb4081a1101f3f5d55657f9ccbed
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
9c1b87c65a2ee51e1b5207a11f539bb1a65bdaa2e3bf14f48e87a46750af7597 - Sigstore transparency entry: 1582636257
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 463.7 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d93797013781df43d488cbad98a8a7f8a2fbb71bd98855b3354be41e64dca24
|
|
| MD5 |
13a52267bc0f5fb81cfe0788af232fd0
|
|
| BLAKE2b-256 |
941a243f067e520d25a7d56c030d3c8a7560608ca085355dfe986bd909d709b5
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-win_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-win_arm64.whl -
Subject digest:
7d93797013781df43d488cbad98a8a7f8a2fbb71bd98855b3354be41e64dca24 - Sigstore transparency entry: 1582633980
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 559.3 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
193a78b8e0c328354e2db9aa235e798e57e4c6b9f0314305ef9a8b071eabbcb7
|
|
| MD5 |
3842d5260ce8b538dc9d4518f5b5bfe4
|
|
| BLAKE2b-256 |
d4c7f6a3351f3b3b402b6168eafebb0a6d81a99bfec62bd960c0445f8095673c
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-win_amd64.whl -
Subject digest:
193a78b8e0c328354e2db9aa235e798e57e4c6b9f0314305ef9a8b071eabbcb7 - Sigstore transparency entry: 1582636200
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-win32.whl
- Upload date:
- Size: 547.3 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a921d5a410b024c6e6b658c880d0a41b139ba86f6073e9382f4860adebe362d7
|
|
| MD5 |
80c6e3591d8bfc21c301a08e984b89c3
|
|
| BLAKE2b-256 |
cc6cadb43d08c4691ccae9a88b299226a4b4cb58eae7c32ff811111f41542c34
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-win32.whl -
Subject digest:
a921d5a410b024c6e6b658c880d0a41b139ba86f6073e9382f4860adebe362d7 - Sigstore transparency entry: 1582636934
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a04f757c18beeef989915b7a006784ec024b60109fa2d95dec0a9d017d34bc7b
|
|
| MD5 |
011c970ea87cecd078c0e137c801201f
|
|
| BLAKE2b-256 |
61fd96b341baafe02d44bd21e71156831257f591d2f673d5d4bac9537af8a041
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
a04f757c18beeef989915b7a006784ec024b60109fa2d95dec0a9d017d34bc7b - Sigstore transparency entry: 1582637676
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c6256b22f09f53f8d5f32160a9f2655af4493e66fd2a4c9daa343f41534711f
|
|
| MD5 |
c59c47948caa4800eb107c1e34a39111
|
|
| BLAKE2b-256 |
b3c880c8a76ce012d50c06073408b0ef2be754a8b12bd9193450a43068b4b6f8
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
0c6256b22f09f53f8d5f32160a9f2655af4493e66fd2a4c9daa343f41534711f - Sigstore transparency entry: 1582631422
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 916.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16133e80661de405f61f5b16d5f17e129325b5e69a0a0404283f020de38fbd82
|
|
| MD5 |
3450eaf32f593c9d0b8b42d436755032
|
|
| BLAKE2b-256 |
d51dcda562936c592c8937a15c9369ecc74bd1177568c6f1a216cd3276cc9992
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
16133e80661de405f61f5b16d5f17e129325b5e69a0a0404283f020de38fbd82 - Sigstore transparency entry: 1582637298
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 841.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fbe1749ac14b61e439971e667b634588b095de24b753ae9ec7d8aee074e4419
|
|
| MD5 |
17d8e0275953d623fabe2ac5641019aa
|
|
| BLAKE2b-256 |
54bd6e6c5ae1bc4aa2eb6c94483c00ebf4b8fcb458e24d80dfcc4c2dc2022f4c
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
5fbe1749ac14b61e439971e667b634588b095de24b753ae9ec7d8aee074e4419 - Sigstore transparency entry: 1582636630
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9c5574b76f7bd62e2c78fe17cdf6b56a5b50d8b8307f0ba8f377bab6390df49
|
|
| MD5 |
42ba35fef8c615cdcd5b61ad3e324c3a
|
|
| BLAKE2b-256 |
23760cb00eda883645c9d259340d6c9e8a134610f2182359a232f679eb49c850
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
c9c5574b76f7bd62e2c78fe17cdf6b56a5b50d8b8307f0ba8f377bab6390df49 - Sigstore transparency entry: 1582635347
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp311-cp311-macosx_10_13_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp311-cp311-macosx_10_13_x86_64.whl
- Upload date:
- Size: 725.5 kB
- Tags: CPython 3.11, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ba2d81a7f3fbf29c0ee2d893522b037143fb271adc1292a0ebf76b0a34188ff
|
|
| MD5 |
76aa7df22351826e715623ef9fcc66da
|
|
| BLAKE2b-256 |
b11f40a3beac9227861c193a7b885f977f465e25be5eda094d06843b48899346
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp311-cp311-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp311-cp311-macosx_10_13_x86_64.whl -
Subject digest:
6ba2d81a7f3fbf29c0ee2d893522b037143fb271adc1292a0ebf76b0a34188ff - Sigstore transparency entry: 1582636110
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 559.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74c7fa876bebfa35523d4f9b2d6a05be6adc52891a6262480e8f0458f7f2f500
|
|
| MD5 |
033ff17c9315e69cf888b2bfc4c98bc2
|
|
| BLAKE2b-256 |
3e60787d06da940e6318bd19070389e5231ea57518dde94f15e17a7395083afa
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-win_amd64.whl -
Subject digest:
74c7fa876bebfa35523d4f9b2d6a05be6adc52891a6262480e8f0458f7f2f500 - Sigstore transparency entry: 1582638505
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-win32.whl
- Upload date:
- Size: 547.0 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df43ba1afe907ba12c53bf7bb37aaa50f0e34a0ed3fc41a39955f6210ec126f9
|
|
| MD5 |
3af430d2bda7695424fcd1ab454f02c5
|
|
| BLAKE2b-256 |
15b859eb0cdbb677be8547b0525a3b0cf18126c50d9c66c1b51b0b533f2862c1
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-win32.whl -
Subject digest:
df43ba1afe907ba12c53bf7bb37aaa50f0e34a0ed3fc41a39955f6210ec126f9 - Sigstore transparency entry: 1582635908
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87fecce3e0ddb2908b9dcda875466682d30b552c7d22cccc2f3f853e40bdcef1
|
|
| MD5 |
b0e4a725d19f6bc0738bcd0d81d1c6bb
|
|
| BLAKE2b-256 |
9eaf1a7b5835c81692b8afbc1ed854030cfed5a120df371f57cbd46def1a4b20
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
87fecce3e0ddb2908b9dcda875466682d30b552c7d22cccc2f3f853e40bdcef1 - Sigstore transparency entry: 1582637014
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c3b28eafe5a00c86a0e367b7a4ebbb8b801df07a0d1e1f87b8d4a33bbc4c6f5
|
|
| MD5 |
60f0b508e954e0a8d7f41d69383a4baa
|
|
| BLAKE2b-256 |
f8071361db9f8aa7a67723d4cc754f2a64e3b27f2c1fdf3c5382faafb44f7fee
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
4c3b28eafe5a00c86a0e367b7a4ebbb8b801df07a0d1e1f87b8d4a33bbc4c6f5 - Sigstore transparency entry: 1582633189
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 915.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb7d87a57601805772fe975030cd33e21f6e24f287a1dcb405a65be938d7390f
|
|
| MD5 |
a3928b11d268db7128981d505303ca66
|
|
| BLAKE2b-256 |
8dd87e221ca134a6aa3351d818686cc6c7db137821794a7af1f1019ceadf6173
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
cb7d87a57601805772fe975030cd33e21f6e24f287a1dcb405a65be938d7390f - Sigstore transparency entry: 1582636391
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 841.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3d60ee9bee36661342efb17c88a43a55613642113ffb124c24bb27619645843
|
|
| MD5 |
2c36a5540d04d226452a13db9fa53923
|
|
| BLAKE2b-256 |
8c7535ba7bf8374b67ef9ca4093e5e01d076bab60251924cd821071717855a03
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
b3d60ee9bee36661342efb17c88a43a55613642113ffb124c24bb27619645843 - Sigstore transparency entry: 1582634329
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.3 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d366ae6088ad3eee1a89ab4e34c2ac64a8038af55234d8318912e706a79bdea3
|
|
| MD5 |
3289cb7ad93341624b0ab9bfa33b39fe
|
|
| BLAKE2b-256 |
7d83a48c6ab1d6814d10c4bdf76c3b246eeaef2456eee2547d55bf515458578a
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
d366ae6088ad3eee1a89ab4e34c2ac64a8038af55234d8318912e706a79bdea3 - Sigstore transparency entry: 1582634170
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp310-cp310-macosx_10_13_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp310-cp310-macosx_10_13_x86_64.whl
- Upload date:
- Size: 725.2 kB
- Tags: CPython 3.10, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12a85ee8d00e5300c4c10c28c158048f5c4ec8dd7c5787ebd3d20346068bfdc6
|
|
| MD5 |
14a85fe5b6405ac8f2bd27613c62798f
|
|
| BLAKE2b-256 |
b09217fe283f060343a449637c76cbbd147bb5c9f13f864025ce4f84dbbf52cc
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp310-cp310-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp310-cp310-macosx_10_13_x86_64.whl -
Subject digest:
12a85ee8d00e5300c4c10c28c158048f5c4ec8dd7c5787ebd3d20346068bfdc6 - Sigstore transparency entry: 1582638397
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 559.5 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e264eea9d55f3e9ff8d51801a025c432a4850ee2a3e748891b07931f3a9280e
|
|
| MD5 |
e556761ec651aee25b54a069b22aadbb
|
|
| BLAKE2b-256 |
5c322ed190da43285ff9983551cf2ec4ede04bbbc659f7e22ddfeb1a6df69f1c
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-win_amd64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-win_amd64.whl -
Subject digest:
0e264eea9d55f3e9ff8d51801a025c432a4850ee2a3e748891b07931f3a9280e - Sigstore transparency entry: 1582634723
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-win32.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-win32.whl
- Upload date:
- Size: 547.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ebd3eeebe051a5382f33f9108770bceeb09772bd8eab01c36a420dada53d6bc
|
|
| MD5 |
42b77c5faf122cafd75668967fe64ae4
|
|
| BLAKE2b-256 |
f2a528e6273dbe6bc52d931312ad6d8b2e27d10cebd362f0dd36d537185551db
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-win32.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-win32.whl -
Subject digest:
8ebd3eeebe051a5382f33f9108770bceeb09772bd8eab01c36a420dada53d6bc - Sigstore transparency entry: 1582632958
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57bc3472280b2a9cf7e6ac0eb671597dd413f8b672b413507875f0f9bab7f84a
|
|
| MD5 |
e8e8b1b00239376fb99d1e95a7af384c
|
|
| BLAKE2b-256 |
bdda6a9861622acf0d9dc20a2bc0de83d64544714cf42f3b67d3114e2089c026
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-musllinux_1_2_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-musllinux_1_2_x86_64.whl -
Subject digest:
57bc3472280b2a9cf7e6ac0eb671597dd413f8b672b413507875f0f9bab7f84a - Sigstore transparency entry: 1582636480
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
062597df7819d35f8390c1d9bad679935e7a4d7566c0efb54c99998a34d22e6f
|
|
| MD5 |
a6a90c32ea047135d27cc5ed5b7480e6
|
|
| BLAKE2b-256 |
941ce07d504dffaa696d4bb66a10712cd84d17b1044b4489fa937427a26e27b0
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-musllinux_1_2_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-musllinux_1_2_aarch64.whl -
Subject digest:
062597df7819d35f8390c1d9bad679935e7a4d7566c0efb54c99998a34d22e6f - Sigstore transparency entry: 1582634626
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 915.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.27+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0bb1bd3d165c898579681db940c49dc2a0eb2c7bde715caef34611b9d5229bf9
|
|
| MD5 |
1955036fef77345d3505a1bbe42d45aa
|
|
| BLAKE2b-256 |
74a6b574900667f9f3cba7893c0876c4711871b9f7f085de9671f8d602310bd6
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0bb1bd3d165c898579681db940c49dc2a0eb2c7bde715caef34611b9d5229bf9 - Sigstore transparency entry: 1582632741
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 841.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.26+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f170114b1177fde0ce32e3494334296f8d43395250f16ef83d52f15901fba0
|
|
| MD5 |
dc6122047e524ccc863e4644a75f5b03
|
|
| BLAKE2b-256 |
8adcf80f2bf1eb122e73d363edd40ca82b4e476570cc197c3fd638dabf5a2416
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f1f170114b1177fde0ce32e3494334296f8d43395250f16ef83d52f15901fba0 - Sigstore transparency entry: 1582633723
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 582.4 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b5f0e1dcdd247ad28b79391badb29df001a8577e1c1f679e2c097fa76ee16ca
|
|
| MD5 |
c22365d229dc2395a38d2b35adc451ae
|
|
| BLAKE2b-256 |
660dd03a3c952fb230da3617a49b9fcc9c938f5c2a1d60534f317f07fa7f6582
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-macosx_11_0_arm64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-macosx_11_0_arm64.whl -
Subject digest:
4b5f0e1dcdd247ad28b79391badb29df001a8577e1c1f679e2c097fa76ee16ca - Sigstore transparency entry: 1582637455
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type:
File details
Details for the file wnet-0.9.16-cp39-cp39-macosx_10_13_x86_64.whl.
File metadata
- Download URL: wnet-0.9.16-cp39-cp39-macosx_10_13_x86_64.whl
- Upload date:
- Size: 725.4 kB
- Tags: CPython 3.9, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c726b04497cecd0a7a5f416c47d872874a7474d9598f2d7b34b7a6aac4df8e1
|
|
| MD5 |
d91fe2c431b1d3232eb38b7a8d7f296f
|
|
| BLAKE2b-256 |
8580259db2ad39510e2b4db0d85966d7a69176df61d74d068514ee6656d7b9da
|
Provenance
The following attestation bundles were made for wnet-0.9.16-cp39-cp39-macosx_10_13_x86_64.whl:
Publisher:
build_wheels.yml on michalsta/wnet
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
wnet-0.9.16-cp39-cp39-macosx_10_13_x86_64.whl -
Subject digest:
5c726b04497cecd0a7a5f416c47d872874a7474d9598f2d7b34b7a6aac4df8e1 - Sigstore transparency entry: 1582637952
- Sigstore integration time:
-
Permalink:
michalsta/wnet@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Branch / Tag:
refs/tags/v0.9.16 - Owner: https://github.com/michalsta
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
build_wheels.yml@5f9cc7ddcac5685b628b3b4c8117cccdc71c7712 -
Trigger Event:
push
-
Statement type: