Skip to main content

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∞
  • Order-p (Lp) Wasserstein for any real p ≥ 1 (per-pair cost = ground_distance**p, result is the p-th root; fractional p via automatic cost scaling)
  • 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 Distribution objects

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

Order-p (Lp) Wasserstein

By default the distance is the 1-Wasserstein distance. Pass p to use the order-p Wasserstein distance, where each unit of mass moved a ground distance d costs d**p and the returned value is the p-th root of the optimal transport cost:

# Quadratic (W2) Wasserstein distance with a Euclidean ground metric
print(WassersteinDistance(S1, S2, DistanceMetric.L2, p=2))
print(TruncatedWassersteinDistance(S1, S2, DistanceMetric.L2, max_distance=3.0, p=2))

# Fractional orders work too (e.g. p = 1.5)
print(WassersteinDistance(S1, S2, DistanceMetric.L2, p=1.5))

p can be any real number ≥ 1. The ground metric (L1/L2/L∞) is chosen independently of p. For p != 1 the dense transport network is always used — the fast 1D chain solver is only valid for p == 1, since exponentiated step costs are not additive along a chain.

p == 1 is bit-exact with the classic 1-Wasserstein distance. For p != 1 the cost d**p is fractional, so the integer min-cost-flow solver works in automatically scaled units (round(scale_factor() * d**p)); the public results divide that scale back out, so no tuning is needed.

At the WassersteinNetwork level, total_cost() and all derivatives are in W_p**p units (the sum of d**p · flow); take the p-th root for the literal W_p distance, as WassersteinDistance() does.

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

Citation

If you use this software, please cite:

Król J, Bochenek M, Jopa S, Kazimierczuk K, Gambin A, Startek MP (2026). WNetAlign: fast and accurate spectra alignment using truncated Wasserstein distance and network simplex. Briefings in Bioinformatics, 27(3), bbag247. https://doi.org/10.1093/bib/bbag247

@article{krol2026wnetalign,
  title   = {WNetAlign: fast and accurate spectra alignment using truncated Wasserstein distance and network simplex},
  author  = {Kr{\'o}l, Justyna and Bochenek, Maria and Jopa, Sylwia and Kazimierczuk, Krzysztof and Gambin, Anna and Startek, Micha{\l} Piotr},
  journal = {Briefings in Bioinformatics},
  volume  = {27},
  number  = {3},
  pages   = {bbag247},
  year    = {2026},
  doi     = {10.1093/bib/bbag247}
}

Related Projects

  • pylmcf - Python bindings for Min Cost Flow algorithms from LEMON library.
  • wnetalign - Alignment of MS/NMR spectra using Truncated Wasserstein Distance

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wnet-1.1.1.tar.gz (71.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

wnet-1.1.1-pp311-pypy311_pp73-win_amd64.whl (1.2 MB view details)

Uploaded PyPyWindows x86-64

wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

wnet-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

wnet-1.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

wnet-1.1.1-cp314-cp314t-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows ARM64

wnet-1.1.1-cp314-cp314t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

wnet-1.1.1-cp314-cp314t-win32.whl (1.2 MB view details)

Uploaded CPython 3.14tWindows x86

wnet-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnet-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnet-1.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnet-1.1.1-cp314-cp314t-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wnet-1.1.1-cp314-cp314-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows ARM64

wnet-1.1.1-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

wnet-1.1.1-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

wnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wnet-1.1.1-cp313-cp313-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows ARM64

wnet-1.1.1-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

wnet-1.1.1-cp313-cp313-win32.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86

wnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wnet-1.1.1-cp312-cp312-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows ARM64

wnet-1.1.1-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

wnet-1.1.1-cp312-cp312-win32.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86

wnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wnet-1.1.1-cp311-cp311-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows ARM64

wnet-1.1.1-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

wnet-1.1.1-cp311-cp311-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

wnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wnet-1.1.1-cp311-cp311-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

wnet-1.1.1-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

wnet-1.1.1-cp310-cp310-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

wnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wnet-1.1.1-cp310-cp310-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

wnet-1.1.1-cp39-cp39-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

wnet-1.1.1-cp39-cp39-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

wnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnet-1.1.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.0 MB view details)

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

wnet-1.1.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

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

wnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wnet-1.1.1-cp39-cp39-macosx_10_13_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file wnet-1.1.1.tar.gz.

File metadata

  • Download URL: wnet-1.1.1.tar.gz
  • Upload date:
  • Size: 71.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1.tar.gz
Algorithm Hash digest
SHA256 ec0f480ebf39549a4c6c4d1522f4bb7fdd99a3db95d5239e1c096b798b55a82f
MD5 5f64504ff21bbb2aa30e24a70238bd7b
BLAKE2b-256 8318b3dfe6694682e6297a7c0d4419bc9be1e5042da89e0f8c630f13e2614074

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1.tar.gz:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 786373898e209c322538e6079661b6cba3f51f179750cf735692a06704d7067e
MD5 4ad484fc1dd74114ae7ba84622910791
BLAKE2b-256 266ed59510ced2f5c3cd5e3a85d9a73a5071940b118f4eab7a91e213c1ac2f87

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20d6ed72a801a05a753a57e0b99a855edf61d4a7c929bf1e32ba19c796718e9d
MD5 4efa11cea9ff85d45604703d0dad1136
BLAKE2b-256 d3c7ab1d7f93b39b78f9f79c97c69ceb9120b79a3adc5be892a5a4063d9bf4b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7391fc2fe40f6b997cf061a345d17c0c22b140c8b2537c3e2103a5bdda0f32a8
MD5 02ed42b98ad13cfb2b6b9d53588a4231
BLAKE2b-256 ddfeab4b99e1092c298c67e03831fef69adf6b6aacd27687bc32ef9e4407d096

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34f1aad0b954010f4a71c23b6c194873f04bc9dc6916294e18decff5ea65d650
MD5 f7ccd1a81db561383c914e8bc37f3369
BLAKE2b-256 846da1e8468c4392e87b0983ad341ebd6ad745409633bb408a098cc9721adde4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 20e8c0838843846e7ae576b2d19e19a70b4254655c75531c370157781e436216
MD5 50948d02578f9065fe940d0b0c898ae8
BLAKE2b-256 24fbb0e28971a738e0d42472e5d008eb35ec844c0efc60e898997b2303dcb83b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d287876f81bb6ef29cf47e426cc0dd07d5eaa078568af9eb138dc3144b7a8a5a
MD5 d1e78b9967d94a611043bd398c457271
BLAKE2b-256 adfb4b90acf99459b94bf466d9557257278f471f78ac1935b1bfb1102654f6a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dcd98e530909edf0a0efb746375593c8311ad4871cdca4b31b900f6707e53e9e
MD5 3e2c6727aff286ad22eec95e5f75b561
BLAKE2b-256 4616a77062e52779c28f421c94f5b1fae77975e2bf0432af6bca6c63ee57fc35

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d615a7d8b181f5b47eeea7a18addccb33e9e25b8acb0efef5c027f0af9ccf347
MD5 21dc7fb66f8dc9210811d62f31c37ece
BLAKE2b-256 66808c0606f2336ab2054e1d975d189161bde4d7add4cc4eeb76a3e8a005ca04

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e228d1066fc59e3f97b719a034699e941408f2d31b184132a4f8b5639b0d0506
MD5 df43baffeea71abb9ed6cb17aad4c0d8
BLAKE2b-256 e323e977933b2ce39ee990523637f026a68293d7f6cabc55e2a09bfed093d205

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41dea2e349cf9ee231d51b0085b260e91ded84ff108e0947460b15f52cf07d4c
MD5 062f738daf7e289bf42c6aec6b6e7042
BLAKE2b-256 b938976c5add45fa8bfbe9c04b9a4f15213609a65d3e822f793c2b29a9f4470c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 efbcb29f223da8cd2a9168d4b7f8dd63a25211b5c381e009cf9044b9f7f855af
MD5 62cd457237697d1f6847eab2693f0496
BLAKE2b-256 35ddbd41b12012c4adf5f0923a231c2b7ffc14d6ea06084530e717a45dec586c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c2a9945392c98b6b9bf472ec6897eb4a0a8307bc326617bc526a2536c14b0a78
MD5 c83942f4d6c6856be0ab6a60560ab034
BLAKE2b-256 b968555919e0d1c667164dc1947e791591415b20996b04cb1c67d038766f1552

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a73d31436e02e5246c042f919946ae6f6df6d5b5ee706579c84490044724b8
MD5 eac7603221e1c08c1c12b56c6cad8689
BLAKE2b-256 093ecb0444a2d906ffdef2ad238a9c9f54da17be7af75cd499cefecc9d079a39

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 49b8d36f9992b2d49e4b12508289592ad79b3d27298215018452cdc61b6627c6
MD5 b71156414adfc741a01e4ba6a900fe56
BLAKE2b-256 402894145a4c8dc4f84ed499b6cd532d207e18da3a0d92075c62eb247add74cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8584fe1ea5eb0f5188706e7b81c19fbd805763156e85231c2c5783f904076835
MD5 f80a24c593f92066e4ebfebef21abce7
BLAKE2b-256 4e4eeb62acb51d94b52f404e8a4e5701e1a103beb54c36274f569597728e3b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a1c534c4d2cebc899a519a340b53d0619956c67e4604824d1633d8a2bb2ebb79
MD5 32697130c986be294ec380c600f66373
BLAKE2b-256 fb6195d6e996c45318c1e5ac84b33f09e3fbcb86c620704df438340df37cb7ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 dc97d0bf228c4e0b9c82031501ae436df743523dd57bf17a81d428cddb205bf6
MD5 cbbc6edcfd6c7e5288372b40f8900df4
BLAKE2b-256 09794ac84cfb9ac7318c2c4608379509de0099f33545c3bd51d7c510e1c32c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21e86770103d9c308add51a16f8a899f129fbfc72843b84a93f9abe599278998
MD5 a01f0d6de5a83d7bf0c969c7d58c900a
BLAKE2b-256 52d8f307955568f97ef5ad2f76c5768bc3238efd43164c40323b45c7a6772580

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53e362a2f9626b13b781dd713374997930c17591c6c7b1391a4b563a4e1cebfa
MD5 b4818adb89ad01480c2a612484a53505
BLAKE2b-256 742a9e047f622c81b7ccf63e46897974fb49618ebac227f188b49595a82f5a23

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 08d2af5bce05add62560f7a090200758cf87ee905c3b7197933b23f9cc21f01f
MD5 3a81b2d4201645d1f831440472c6ea2d
BLAKE2b-256 40ecda0d4e62f9548841edfd95bc38b29b869406436cbdb3594bf5054a4a3227

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8a52c880621e6396a88b9f4ea495a1dab307c8561c3ab7b719280f6b6f6f2ad
MD5 534a7d5c7efbbaff754decae2c59b7b7
BLAKE2b-256 db006ca228c2b9917ec211cab433e10ba243fbf5bde03c8c7f7e2660cf75c2bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbd93b9f79bbde26d0a257bb81e289f83375a24ab43de329df35f973950936a5
MD5 83b0901bebb66eb91cd308f84715cb2e
BLAKE2b-256 ae57dd07d94d70ff41d2e8458856ad80de4c24dea431d405c39e887207695ab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1190a81d1cc13374603b7da794208fa0f296fc9b593f58b74b6d42132ab4cdce
MD5 1d0ea1cd39070cdb0f97a459f8962973
BLAKE2b-256 ee47f0c90debcbb1427e69dd106665a7df02a6d6b385dc831a7e25ad7685a0f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 51fa05fc9a5de3f2acc6f909dea3316ff19ef141eb5667a48a0df437ffcc1e26
MD5 1388f8630d8bb2d44eb9b573c094e633
BLAKE2b-256 afb6ced570d231e3c242ad1bc72d4882ff2aac3c21c41f2dab31656071d2ce53

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9543e5e9247f9ceae617b76b27701f0d3e0dc0d18992d753c429430630d27df5
MD5 4d27ee85414e69dded81e33fdf9e930b
BLAKE2b-256 01fa435676b31468aff5e913d695ffda158f881c90a97a362abfe3b1a20db887

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b8c2ad7db2bfdd6c91349df827c2337fdc925f4cb06f4866365dff89ae74d2b9
MD5 1a387bbf0db0f3588cc60131b219d813
BLAKE2b-256 622dc53d562d00469012eed6cdbcfe840f9a9ef7b2737d6fedd75c11464207cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 280034acfe29ad051e3640d473d6e7ac1693d7eba2f53e39d8c270dd1dc0c115
MD5 9fbb8e8df51c32d86cd43c317e37122d
BLAKE2b-256 9fe659420c79cb799374ac8ab6cf17ecc7bf9448203d121e0ea02d807780bd58

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8dc89833563af3192d42749b0f05de56efe83fb5959f7e58330c7183752a96b
MD5 7ac8676f7861a4459ed7400a7b06c554
BLAKE2b-256 90c6f1328969de4250df0dd830f1b6b75950771993fdf0c37199d174a5e0954f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f4c9ef01d64a028b152bbb400feb452e038e39e69045b00872d3e51b9d7f646
MD5 2ece9c4ea11759f75a264c250545cab1
BLAKE2b-256 45c2a44ad4289012db0c3bfe69c9df2250f3debfb5813daa038e337a0780cbc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d270fa33869a8b83f834a700c6e402046b8bca865a5ad38eab9a39e7f2190888
MD5 9b58a3d5d67a10c9313f9ddc0151e26e
BLAKE2b-256 8c5c46e54b5d281fe67e7e12394da9bcdc3498909ad9bb23a283d84c0da3b723

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b95258e815103c3142f990d8ff8e2ccf4b5d774fd7c490014ec90b3f05dde0ba
MD5 1db27ce316df6fbe9b97ee42d9dedc2a
BLAKE2b-256 ea326947264019b8bee84ff179a4bb27c9b2ff03a953ef9b5994c497420ab180

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8ddb509687118dc55cd117d588930da397e8004b2f6bf93cb51552cf27dd25d6
MD5 9470eb6e5a06b98f03631713da3445ef
BLAKE2b-256 be9f7fe0eed8a7b30079ee65a4a74b9a96876bbfa49304f5636261599ace5147

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9a5b5583f5217a57f2017ec07af944364bd3d5a57ab0c09ea62b28169af06e0b
MD5 1f94780cb7138b3921919ef2605d93cb
BLAKE2b-256 e24c781569a23a14bf66164abde23e84981346ad01a9149cb26f8bf307008ff3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2bb10ca4d33fea05c1543f25fd3475a80b996949585ed5da6ac4c90056004d0a
MD5 b0445f7849d6fb290adb80e48a6ba873
BLAKE2b-256 9edc0fd6a5b0e487c4fd471227c320f02b669c17ffe94e47b141388026a35c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c61ec46a7d512ac8888beaed79458c2a90945534667298a6dbc1c6e224c1c793
MD5 4b13673223996d4829afa46c254b8873
BLAKE2b-256 d8bc11bd61e49c9033e3372e4adb74bca539d4c61ec05ff149d50c76c876dccd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 044002baf88d9ce83627873a2296fa9b146125707beac9e2a414736b8e5aaaa0
MD5 0b6528fc8a6ae75d33e6dee9f2d4db70
BLAKE2b-256 a6ecf818eb262d4b37960d377e69e278e9fe2212085570e07cfc5d000322f3ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fb2ce09c1e0af052107f04f2eed89b00e56b60df857270a6618832520eb94ec
MD5 88cdae7f79c26982fbe138d6fa8cf057
BLAKE2b-256 3b5bcd4f08b16178e3a64ddb64b0d3ad0b63c109694e7e2cba0dbab5f57bf44a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf35892b6432e25402f35ff1c25efb1b6c138eb19617dcdd4ce68f9ce6a3e945
MD5 cffc0817ebdafbf69b36dfd69d3e1d10
BLAKE2b-256 f0da474b0ab7252994200c95212384ba56441d856f6ee8828dfcf634bbf04c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d30de31f54d68b94fef87b85f9adf84b9288b0d41dc34f87a6ed26db2ad0a88
MD5 4f4c6cf25805256689c61de013968513
BLAKE2b-256 36576c8c4dbab7ac728a913ccd31345fc2c5420c41e2d198c34be008a8aa13b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c37f18be2025367d9a0a11234256136c9d60550c958b2d78afd21cf949b43c5f
MD5 0d8d1c6427fb18d0f0628b15453cfa27
BLAKE2b-256 6563af1f71158b352c3ac5d0c8f3191b79016073b64f0455acc2393ce43c935e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f0cfe03723fad83571ee43acdd04f771d10182d98b614a0a011e9ca2887afa3f
MD5 e2386a6e8a09a1690d6dc482c8318cf1
BLAKE2b-256 3ec53675a0d7a895c34829628f69c58389c3385b8b848b22f02bf35c0d70bcdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 571c4334c38a674e5c038616b4fea77ca15a73e8a9afb4685af6af6ba9bd2e8c
MD5 398bff4d980c56095e5168d820317c3f
BLAKE2b-256 8d6d48d483e3bb95dd3548e78f866d911ec6b561a7be6260759051dcc03ba46f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f41231cef7eb9a56ae62dfb01916eb0dcdae088615a75538810fba92d150627a
MD5 4a5fb7037b34c87165b332c92620210c
BLAKE2b-256 cece49e9e3aee462dfcd31d688c0444f4080a30e0e68eff949fc6779114b096e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f521340e19744bbd857f99df1ed4bca3bee9813b1b34923496a7dbf345d479b6
MD5 3d3165bd95d1067b65b35bb3ca511256
BLAKE2b-256 7f73cf8006003f3aa66fd1d435098f31f08f8400d5390e0b449e9e5704c5ce9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da3bbfc50f2854c8a03f5b11188433e96e0904b054b2c78858f76395b466bba2
MD5 3b295777716cfb30e3f27738d22298ef
BLAKE2b-256 750c770d81d15476e46bbef65507c0b52c0a60748ea06f4a1c640b4bf62f56e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0981314578af30046f70512798b95eeac25cc2393885772991015f0d7b87531f
MD5 f27c879007e955642ea256c51466793e
BLAKE2b-256 9eb31aabee8112ff993c5f18f9bab4310e0bf1df4ec43347d0008e23aa3851d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab9c30ec18ee33e128e64c879aeae5896c1d98bec99d7f93ad3c8f32b467ed1
MD5 c9ffea7b429e219b76d64325c729c89f
BLAKE2b-256 1941424851fd6c918486b2c4a11f1f7a61a6e752dd98d70029d92758514516ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79eb089f7e48427f84d3781edf200e72f3aa75777ea58ead940c41d4bc751343
MD5 8b6fdefe970a251496390a74bcb05981
BLAKE2b-256 373b5208ef580df03765f0dbe89caf049ee552cfb2ba4301f81acb34e89e0354

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5429978bd4e47de4c1d6ae96f51fb4d8b042c670e5047f92bffa8b55f60aaf40
MD5 34c21b84a085d34faa7f695c6364cc24
BLAKE2b-256 4d97031bcbf2701f2b9c5583b4fdce485e8e9b54135db97a116fd433795eb527

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a8821fa7a96160652ad04f7ce326773c69d4416da68f0bf43b64e6de8a2c4657
MD5 140ef7a0f569d4ff771772e2d4cd721d
BLAKE2b-256 f36fee74c6877f40ed54b394cd930ff1461d4a74890b084bbd77658ffdd00c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b65fe4a9ddb708bfe466fa420267f0419ceb1acb843cbc867e289eb335cd524f
MD5 c913f36fcf3ea912ae8e8a824310168c
BLAKE2b-256 a1a17cf10dd8286beb868ac3def8f2dc274187abb98719c8bb30890ab0a9a008

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 89ad85af576a9a867f55ab966c71098f05c63d999f6f010adbb67ea980b05e19
MD5 dc634b5a7f31be403aa2370ce8e65556
BLAKE2b-256 394c4aa3b869d41583c3ea199047f1d5b10a965dc3251c79f99824d2865d31a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a05b7f500cfc11d5574682f14d8e434f09784a7effc8803f4e9c7c961a835812
MD5 d28871f34c037b1a2eeb3fac70fcfe79
BLAKE2b-256 ffb9f69b5023d01d4da76ba05cf3f45651876c1018f2097dbb1c2bd2e3f24890

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e199a32bbba0fec6844a22cf7cb082d0fc0b38a873f3e0386284983232c3055d
MD5 05bfa80aec6e7913843e718eed0a68ec
BLAKE2b-256 4e37ccb5442233918b612d1023802ca284b748b682939e0ce96c5f3429bd9ec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74f14cca4ca7f6dba4291b93b47de78877670468451bca03504a2c8b0903714e
MD5 ee7d4f1fd62556a12482111a76e39f09
BLAKE2b-256 053e1fbb988ae4dfa2b718c4f5af2a62a62166f6fd947d7486a1de48c0aaabfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8bcd4ff9de80506fec498871c56d398a9e635aac67826a1ce7a77b33dbc97ed7
MD5 5e2ff95a8d7e80725c927436b5bef9d2
BLAKE2b-256 fb54b43ea1e314c0c3ffd16a93b815cbe8110e40b26b4c74cfb8ee5126d8d82a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8f56719932258bd14cbe2a4d1cfde0ac6223f4e6f0332c8160a7a8e656660fd
MD5 2433d9cea129bf8750b91da8d1cfc933
BLAKE2b-256 a95fd09d21f68748016b81aa047e6ee5af2c6eec45b9bddac96e687d26640b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04f3a0fa97059deb04250c1b487212cd94b22a5efedcbaa9b745e679dee0ca32
MD5 43b27a55de57ebc58441c911a2730404
BLAKE2b-256 e922aa2a06d1e93a039ded24714a4da5db7b892c5c08bfd4968b666da291505a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 19f91d62144bc65ee1f86331e85d18f04559e68b1e24f089077449ddfb76bad1
MD5 d418a5eeb0f0d9b242043e2db5b6898d
BLAKE2b-256 fb1ef40e7197f8c8ce9c915c2280eb35f12479af33e202799a8770755a3f876a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: wnet-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnet-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 73066d8f88667fcbf4519e9507aa4dea15b8f20e1de53eec22e6cc018e1e07ef
MD5 86ea26725392be0208fedc775286b33d
BLAKE2b-256 1320be16510d30fdca288fe193568d086bf4e7c1548d9674afc27c53c9eb09b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.5 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

Hashes for wnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07917fcc971dca006b87804aa45e2db8f9d5a984b7af79e700edc1f45a9a0c70
MD5 e52ecaaa6e4c03314c0174d950a37ad7
BLAKE2b-256 40e99677355a6c48428fb5e819a794d1039862458c127e1f8604e234ffb72ca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5be2887b3931c544712585e41168e714566b4dfcd07a25ad54ecd3a91ad5091
MD5 fa1188128c6eaa748ee5ecc704d304de
BLAKE2b-256 0cd7b905e2a322ed7073f6067a64c7c9d76b6efd23c4ba108397e6fe5923e953

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5989644f311c36c1061df1be300f58825411b6bde779b29f75af19efd63fb44b
MD5 74c5ab377962919ac836263aa19c722f
BLAKE2b-256 ffda2450b52833843e778e6810daffca91581feb190d30bbde2f4edd269298e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9390d7429c324055c8f8e9abd6ef0914fa5cde0bac82831d3a9d24ff03178ba3
MD5 8464e60921a67a19c13c58fcc068b282
BLAKE2b-256 85fb301edaca7b26bfd98211b79586157b11dbc1d9cb5106487b57637fc5c92e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.2 MB
  • 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

Hashes for wnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dbad736303bdfadf63ceb5e98c94b3abcfab103bb396e7c9bacef3bf4d73f84
MD5 9b0ce3a40103c9c2b1324b67cdc65477
BLAKE2b-256 01b664a2391830a87119ed47fe69233796014a4b4d3e75852b2bd921d18e752d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wnet-1.1.1-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.1.1-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9287ea292f4da8b21683430f30fe0b7a561cd1063506424e6a122351201481aa
MD5 f37b32e352cfc562242003897f964a6a
BLAKE2b-256 c937d8b25e77e45b1b4d5d3058df903d0918f91182359e371184dc29a3da4f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.1.1-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnet

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page