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.0.0.tar.gz (60.1 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.0.0-pp311-pypy311_pp73-win_amd64.whl (791.1 kB view details)

Uploaded PyPyWindows x86-64

wnet-1.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (857.2 kB view details)

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

wnet-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (589.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

wnet-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (740.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

wnet-1.0.0-cp314-cp314t-win_arm64.whl (906.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

wnet-1.0.0-cp314-cp314t-win_amd64.whl (805.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

wnet-1.0.0-cp314-cp314t-win32.whl (806.1 kB view details)

Uploaded CPython 3.14tWindows x86

wnet-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnet-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnet-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (876.7 kB view details)

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

wnet-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (601.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnet-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (756.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wnet-1.0.0-cp314-cp314-win_arm64.whl (897.0 kB view details)

Uploaded CPython 3.14Windows ARM64

wnet-1.0.0-cp314-cp314-win_amd64.whl (796.6 kB view details)

Uploaded CPython 3.14Windows x86-64

wnet-1.0.0-cp314-cp314-win32.whl (801.6 kB view details)

Uploaded CPython 3.14Windows x86

wnet-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (863.2 kB view details)

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

wnet-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (592.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wnet-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl (748.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wnet-1.0.0-cp313-cp313-win_arm64.whl (871.2 kB view details)

Uploaded CPython 3.13Windows ARM64

wnet-1.0.0-cp313-cp313-win_amd64.whl (775.8 kB view details)

Uploaded CPython 3.13Windows x86-64

wnet-1.0.0-cp313-cp313-win32.whl (791.5 kB view details)

Uploaded CPython 3.13Windows x86

wnet-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (862.3 kB view details)

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

wnet-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (592.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wnet-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl (748.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wnet-1.0.0-cp312-cp312-win_arm64.whl (871.2 kB view details)

Uploaded CPython 3.12Windows ARM64

wnet-1.0.0-cp312-cp312-win_amd64.whl (775.9 kB view details)

Uploaded CPython 3.12Windows x86-64

wnet-1.0.0-cp312-cp312-win32.whl (791.4 kB view details)

Uploaded CPython 3.12Windows x86

wnet-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (862.8 kB view details)

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

wnet-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (592.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wnet-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl (748.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wnet-1.0.0-cp311-cp311-win_arm64.whl (871.9 kB view details)

Uploaded CPython 3.11Windows ARM64

wnet-1.0.0-cp311-cp311-win_amd64.whl (777.0 kB view details)

Uploaded CPython 3.11Windows x86-64

wnet-1.0.0-cp311-cp311-win32.whl (790.2 kB view details)

Uploaded CPython 3.11Windows x86

wnet-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (859.5 kB view details)

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

wnet-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (592.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wnet-1.0.0-cp311-cp311-macosx_10_13_x86_64.whl (742.3 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

wnet-1.0.0-cp310-cp310-win_amd64.whl (776.7 kB view details)

Uploaded CPython 3.10Windows x86-64

wnet-1.0.0-cp310-cp310-win32.whl (790.0 kB view details)

Uploaded CPython 3.10Windows x86

wnet-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (859.1 kB view details)

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

wnet-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (592.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wnet-1.0.0-cp310-cp310-macosx_10_13_x86_64.whl (741.8 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

wnet-1.0.0-cp39-cp39-win_amd64.whl (777.8 kB view details)

Uploaded CPython 3.9Windows x86-64

wnet-1.0.0-cp39-cp39-win32.whl (791.0 kB view details)

Uploaded CPython 3.9Windows x86

wnet-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnet-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnet-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

wnet-1.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (859.3 kB view details)

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

wnet-1.0.0-cp39-cp39-macosx_11_0_arm64.whl (592.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wnet-1.0.0-cp39-cp39-macosx_10_13_x86_64.whl (742.2 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wnet-1.0.0.tar.gz
Algorithm Hash digest
SHA256 62f96d60411f378c3641d452979d20d790479a99a7028c6aa3c3443323c3df2a
MD5 5cc8140b370a761240f843e15d748987
BLAKE2b-256 963ed90e97171a0183193ee7e8e7490a4cafc2d5fe711d87a7b9d415024bd85d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0.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.0.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f878c37efb03b52c31dc4454a4456b1cc872546508e74527d4eb364d5c0f2dfc
MD5 82e18e56a2face656fe83fc2f3d207b9
BLAKE2b-256 97f0b21373cbc01c496c575c290d61960ff58b229dcd42345b863affc4afb079

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 091aa87ea5e064a4df58d63ecdec4720866cc82d7c367907d8d674f9e1ca1a07
MD5 ca4cc35cbd15f30dc3e1ef72f30e4075
BLAKE2b-256 2061e22ce8fe4a5c83e05c233889534afbf94a022f8620738d9386197865b391

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a45aee0e196a35ba6e985565745a42a7db25d7baca1694714327aa996bd26fd
MD5 5bb875eb9dcdd6b94cad6526574380de
BLAKE2b-256 4257a18a4ef1bba310bba6a123d6b430006b9d7bc186e4667dec93e6f0a558c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4e551501368765b2723c8f37e7f305da3b48bddf38cbf8efde8dbf6a2d04bfd
MD5 38a0da55b28f26e064ab1699bf3a9802
BLAKE2b-256 1e96ab49b3fac2f4994361f7c1589c3a320a1f310c38ac8195e7b038f839a636

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3824fffebe030deb35f9480db9b579de64e752fb86242e989630c9562c52fc90
MD5 cc80a93fb2741a0fec65ff2f34e09478
BLAKE2b-256 1b7ceb0d44cd402d393e5bde01d51145acc0d7fda8db77c0e087885c0be1d28d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 906.2 kB
  • 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.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 307211a8ba97dbb52c9e3af934beedec6ba69dcc69469abefa7fe881ecd92cd9
MD5 9044e56dc45ca2d5e33bfc88aeb3c359
BLAKE2b-256 083a956dbf02164304235e7e243427b1e8e0713f34ec3e72830ce3e0deccbb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 805.1 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

Hashes for wnet-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 64a6a994ea7a868cc7d2daedfb883dd01918af1862a66333aa874d902c7d07af
MD5 df306e39d3b2210e9b727d0d3fae6b84
BLAKE2b-256 c667b6849b18a07ba4d0a42394787781efc50cf7a46fe5b671e66bbe5ea439e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 806.1 kB
  • 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.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 a323e496e770d17d28412c1bd1e291164b4de6274b6eaf89c063ae76e855f99a
MD5 39939bdb277600ea1bd53de1a308a117
BLAKE2b-256 c32173329763970cca2b55c787a33fa872a942f00c31dee8dcb987836ed0007e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe8fe1f9970f1cdfc4f1d2a7125644f84b3d7512e2596babf791db2edc3e05dd
MD5 3ffe8eb88c55f7b1ee20a12182234312
BLAKE2b-256 2ca8a013cd1de96a440b9e301e04615553dc97d1e14b77dce1676d4625898a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f685c6eef1c3d0859a9cc0f1a73dd5175f231c7d3db2bc9937de1b569c624be
MD5 a7feedce0e79f79a52020ceafec1ef24
BLAKE2b-256 dc29358edea0146469f942dbee89fd1306206a87d33090e6d207e76d5e54e83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 abb07f92f6e7b289432744dd5a596b07f57aa322ed803afb28d3a7ff13348f11
MD5 02c723e938950eb310dbbede7370190d
BLAKE2b-256 74657a071272be5f0d958f5c55c55d4ea43920a16968f7c11f845be01e0775a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 548b429a67bbd80bc075af4f1cfddf9f20a23f12168ea0726c1cb260a6b86e72
MD5 174b8ea0514524a44a293740ab086311
BLAKE2b-256 17d6ec44e76f0e549ae63d55e974b04d79805c6b2361615771071bc4d86e1105

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73a7c12a34b386c3cd24aa3c37b2f16f548c98c90419c91bee5db8d759dacc5a
MD5 10062961048d3407c7883b8f40800e6f
BLAKE2b-256 ff5379ec0968b80b9fc936d816bce5464868c84fbd3e8badaba3fd100c6de7ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b3fcf2718eb6397d5713c75cff0bcb4f776957f11e00e254fb573625b631989e
MD5 5663a09849979f806e81f4aa6e05ca66
BLAKE2b-256 21d099a23a775da937c9f930dd13f316951c35d1384644d0a9c3f3cb23609b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 897.0 kB
  • 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.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ac2d3ad5b54c81e42272f68f739092b345ff903f1d0200588d57a6d7ddf347eb
MD5 bb2f2b0bbb4709c3ee710617d4cae9c9
BLAKE2b-256 ac8100570d78dc303ee0756846bd8ec6823bafeaf84d5ce910a5d63bf904c81c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 796.6 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

Hashes for wnet-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e899427f50abccc124b1dea4e5db37568948ebc2998b7a66003d6eac6b266052
MD5 e15d4b4038cdbb12cbe5faf32c2e7b16
BLAKE2b-256 3713d49615fa14d0367c4db8033f746fe7ca90d071874ae60b2123a620912596

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 801.6 kB
  • 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.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bc552bf9f92f6cc9a28c9aca5b3b86be6ff08d8d8684cbee93f74a2ed49f0bd1
MD5 4af7921ecfe2f977c7536d1cea8dfb16
BLAKE2b-256 0fc9004ebe7947becbe2116c39200932d69404cf82b18cb0d09ec94e7bb56475

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea617db3a7e244a8f8ba9d4fffb6f700113822198b1f7ee44835aeff940c2076
MD5 21be1858e7b4511e9bb1915765e6b2e9
BLAKE2b-256 06d4f0289f549a49aa61a2ad6d11b8840e61633bb053d47e797a8ce4edbfa92e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b29265cf6194fe822bb9451b7d931b64fb4257bbc8637ef22e31325a8f7276f
MD5 2ed2ee2d53b91b4cddee1d03969cd43b
BLAKE2b-256 42db03b69db43c2268a217e784d400ce563ee2cae9726625e07217e09abd5d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26b7d4dd25495d664e992f22d4cc14325801c6de9e2834a3b0cbda6f57401569
MD5 402141236631131d2dcdd67f01fe2789
BLAKE2b-256 e2aec0abcfc718a1bb15836ae84220cfcc5e554605d180c57621ebfd6943b841

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b20ac43cf2f91e8b67ca5d9b51ab5c805f3305440258e60625654d5727306c76
MD5 0e26277c7bf24d9075bb04943407cfc8
BLAKE2b-256 f991c4bb292e35122024da9a042f60d8ef83c385feae9d40f8b3620b9312a7a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 592.1 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

Hashes for wnet-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48eceb8b686f1687451d8ced58b73b869f958db1e30a061358d13cbeea9296ba
MD5 a8a3f00612312534cd7f5250f8a42c5c
BLAKE2b-256 39d554374423ece8cd384ae49d13be9ed114e42fb10557832c8987dcb33a0f2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c6cac3f187a420fc8b5baebb67fb1c3a503d25abdc4f2b662cf3e137bab77676
MD5 9e2642227c7af9d80a4b0d7b7200bbc7
BLAKE2b-256 671b79fdf4aadfea8dac5321e2d7427299a9a53628a267192cbc8e9477c9d763

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 871.2 kB
  • 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.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 600b7fffd130d24e138355bfbed704b8437e45417d8d98991ac22142287bfb75
MD5 862894b8bc4e749817a6a1ea6c6bf1a1
BLAKE2b-256 920755c3ed7be2ba1be144b04e72982e57f597770137f7e2b9b98be9d4c0a99a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 775.8 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

Hashes for wnet-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 eb478a7cf5568b7500e0fb7d5ac1a6b36a1510fb04e6bfa77a26855b170b0d10
MD5 050264a7cd05abffb503b3445e5fe6fd
BLAKE2b-256 8f9d3ed615185cc7f627671dd1c4bf17aacd4d7b6070fcfbd3d10ff258c02c5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 791.5 kB
  • 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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cc9d7a377acf7565a8182a8489260ef748349e8f78c9dedeb447a0f2614e37d5
MD5 9d6b702cb6cb6e34e1dc2e3381d126bd
BLAKE2b-256 882e020460089ae3fa99c684a7f366b0b9ee0d8988fbf00a6069c8bba18f8773

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab7df29e7d221dbc4f2ed2ce1657800acaee9a27c83c3cefa409e803b0de90bd
MD5 cc7efa1601493b3256321f39188841f5
BLAKE2b-256 9a775f59730dec16a3935eaa3756535c572437c466b7c324dfebd5ead18ce21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e61b69e01b6f1c4393e51fd034db8aff336d86f7195a3dfcf21a11586f38176f
MD5 967af0c748dadbae399182c9b903969f
BLAKE2b-256 cca5cfa40b983999f1139fcf6f0ebdd127662f7f9fde5634b6a2e02c8b64e908

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cb58581a256779e71c9180b06095ce1ec6fda2258c4fdf611485e19cdd44274
MD5 9775f59b2b8af7bda3c3615c48d89d93
BLAKE2b-256 9944c409cca58c40d1361685544ca30353ec8fd23fcdc7a9583fd80f0654cf71

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f4abd72fef97a29ac2d6368ae60b7b275561f1c73111d67b389a8b6905278fb
MD5 4ef08ba5690937929467d5e415093e8f
BLAKE2b-256 e827e482f324445ce74db9ab30455b829376752d04afc4935cbbfd77b69854df

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 592.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

Hashes for wnet-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 619abbdbe3129913a84f1ed061550305a4be122bf273405604da3793ac929031
MD5 e086dc12b82296b55ae37289ae7648ad
BLAKE2b-256 c09cbbd35cdf98bf4bc5d13a1bb2b0989d141cc4cd3dd565665fea787232b1ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 98b4c111a30e467983a742fb4f63f53ed5772517c6335b5654a2f277a72f2942
MD5 833f1924b22a6550754fc18915913e16
BLAKE2b-256 b3738e4b5172de2d56d9bb9922c5eb2964264e3dceeb9d9ed1aa4ce7dde908e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 871.2 kB
  • 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.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ae75a5a17ab850ef862bda5803373792d58e2cf4eb62988ee3c6e8ee9ab7b10a
MD5 0f80b3d30bd817369141b4936b0a9288
BLAKE2b-256 6c1e7a6a89e0bb10534749f1d8ca5f594aea6cd4a966bade112162e05df74f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 775.9 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

Hashes for wnet-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6482eed1c5025a9f7f0b0e0b0185c9324b73f27a0eb0a2257021a28ddbf41ab2
MD5 5942e1a57f2b8bbc4eb90ff100ccc764
BLAKE2b-256 84a03f397d3990e85dce95304c24c2aeae661c4d2f1a47342ed5dcba542b0dc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 791.4 kB
  • 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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fd0927fdbec99c60e582b8e18822674352103423f6ba071c285a48603e9c0f75
MD5 d4c5ab4c5d0a7ec53f1aba063d43a9a6
BLAKE2b-256 f8d7242120bf8f85458fefb06381626ac5596c62d896122f79adbcfd27a1d1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 309c4851eaeab4820ffd08458c783833fca68ba54ca23f1495944b088fde6c69
MD5 320b40f3e023adf54a8912c3ec313141
BLAKE2b-256 d2a100427473e1be542ee98c48bc4171f99660fa8e7b62fe99fd736792feb5c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9a0e31ed14b7fa572b575be990b87da71f466e37424e90422cbac2b01ae1e6f
MD5 b95e4d830f7e20587be1f44fcbe1db0a
BLAKE2b-256 10ab37f0f3e79f8530fc16727c80976447b1ef2880eead41b37b783b8d79b765

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4954a562d7e52d27e1a7b879db12bee0ff2572ee34903fed678dd5e4e2f2034
MD5 03059e2a4b116229407720c6e9bea600
BLAKE2b-256 b8f6c3e7effd5d92e958d1b6251ce22b216fb8da06a6345d8ac8f9f7da39db8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 238c2593f5feac95c3695b185ce57008312b4680f83ab48390b605bdaebac639
MD5 4ee1ec59c35ce7efa483b52721cfca90
BLAKE2b-256 743bee756751b1b1be723327cb39ca83bf6790105357f7f434df05dfe775c1bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 592.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

Hashes for wnet-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2ee144f81f1db64853d2d866f2f73fd6ea5433970d8c987281c31f1797aeb63
MD5 4115834a4681fa4f181e87993f932067
BLAKE2b-256 adf137e1a87fbcea9090e409891856af479806318b626ed8df4f2489ccce74da

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 96647e31b8a4cb70115059bbfd80e810ac7eaea63e21b6fdd7e7c805528d00a0
MD5 6b1c66ad38b49d5b8a52ccdde16080b8
BLAKE2b-256 4e59b4c24febc49eb707e94fda14c0234c2bdb1349495c609baaa3af2f33b4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 871.9 kB
  • 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.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 05e3e04ee9c60ffe45589020e0a9e29a2826ca1a9cd97973e29584389c91b51e
MD5 99d0dac7f3f966e71f7b83de0054bf6a
BLAKE2b-256 85287b96e7b22e52dd96217deaf9aca23e91860d71975736f2a349649b7fe83e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 777.0 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

Hashes for wnet-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eeb58e7ec8bebbd918834a8035a6424bb131b942a2eea4c12ea09dcf311667bb
MD5 6545b1234f6fb0c6eb08a456496af838
BLAKE2b-256 071bcb0a6d8c48c331300975a29b8712fa9314735421ff982bea33c8a4d8e864

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 790.2 kB
  • 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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5100714329a9e9c5557ad6d7b7283cc6f661b8a4da342d086bda9ad88d7e0cb8
MD5 90b26d11c6fa15c19b354fbe16acddd0
BLAKE2b-256 f568eb260f2a38eb12e141a786b13dff4c832038206189262ec0b0b288c194cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bc2bf295e329066416e36a1de8e279184568794f103a6a4ca747a8edd788d54
MD5 4e5eec5aeb7adf19f810a7664618426a
BLAKE2b-256 51a502cb9d73c73084117935c315f311e73fe782ffc4b44dc87d50f2b49c2e16

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a4725682e800ea5e56af26cb16a128e07d1b4a6d66cd758902407c9e64718ba
MD5 f687a9f04aa7f764942186947fb880d4
BLAKE2b-256 59f5fe14759b5fa80062b635e9e48e3374b2f3d60f96fe1f016cb1d9ac07a736

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 404f14cfbcfba10ca523b87c8eee63772c0e7ae334b87d0bb0dfda6d4c83b00d
MD5 3d600fa74fa383db8198f6120a2d760b
BLAKE2b-256 5d6ad510fdce4d8cb297ddb2f702af9af2564990ea0d74d1ff32cad826e2478a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca258657d58b89a858bd9e776a77edfe3d9d59a7f4975d5201d952092ace773d
MD5 43f8152382b2174d3dd6ed375958df1c
BLAKE2b-256 54815ef2bbd5602f8518af7b45e8368a76773071e5b69fd8e7b6aff3af02186a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 592.5 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

Hashes for wnet-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd74dcb5c4aeaa6519f100cd3eccdab995313ee4878e2673546808f235fbbd5d
MD5 ea282544dd031acc6c8ccef4b6e314d8
BLAKE2b-256 cfb2a0a814128016e4801bbe6a99205d2b8a3fee141df88a092dcc2a57b524fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec2b3b524c1cfbd6043d7de53952deb8f25fac59c1efcad4c4d723825cad3941
MD5 a223c39cfc9e1ae338c13f56b6488eff
BLAKE2b-256 d8672987b3037646fbea28f7bf723b54ff327814b45ac7aef95f87c82d68ca41

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 776.7 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

Hashes for wnet-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 babafc1cff40befca94eba2eddccd94b26330be3f0efeb50dc65a819fb79c44d
MD5 919cd9fdcae990534341e244a4fd56b9
BLAKE2b-256 6a9e8b447adfd98350a46a9dd3179ff259e055d7a0523cb074e55c0f31702df9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 790.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

Hashes for wnet-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1352ad3f91c9e9bcf2aa4bd8b9e1f791ceffc432f05ada6e81f263e5de9f5565
MD5 d55a62a82f8d2b216f02548ee2ff53f3
BLAKE2b-256 f25a08fdf5dd5ea275541ec81519bcbaa7072ac803a06b1be65a08c2afcdc148

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8cc665a283d9cabdaa766bab32d0cd193c55e9b3f72c9fc57a42b21b61b01989
MD5 f07757baed76fef25a899543c99a7d54
BLAKE2b-256 3c1e55fc822e11db778b4a0c6b1c82f7871234ed49548b6bb28a82ab3ea74eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 188842c5874e08bc3782181f1bb62839eee32a9b7ab8cecf7b70a93527e53ab9
MD5 c2a34d2637ae83c69a2a2557f36d617e
BLAKE2b-256 acbec784e1fb8d4c7f11a50cac57a5d112093daa730071d354b2be3fa23036f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c09bc87a48587a14bb0d6d0d00b928aaefbecc102e2b3f578016b94f11dfa790
MD5 f79f6d547ad2bf2187eae315a52e974e
BLAKE2b-256 12b9e712327883f4f2a1eb86248e010bce6e05f42b8c5a7fa9ddd46620f4cc99

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aded345f893d27a6d94a651324f4e7cf0c75994194d43431605c180d2b2c3fef
MD5 2899e620adf46168517e4e1ee846558a
BLAKE2b-256 cc6303e3a77f8a9282573ea4d7a5f65e190298f8caea7bd5551dd93bd5be1b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 592.2 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

Hashes for wnet-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f2c33901d5229d11e56e352b4459d5a5aac0297cde8d9291ef58edd9fef1f1e
MD5 0897bca1635b7d9f8006c7c8da52adb5
BLAKE2b-256 16a9c9d1477ecb0362436e6de8ff25cafba6287783b81cc5d5425bf5060f3978

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 840b3dcc672b0f91d3bd3066eb38ca6843aa24b856ff87d3e5613745903b499d
MD5 3ce26c21bb4cff6f91a2824b11aebb56
BLAKE2b-256 92ad36f2a9f413029f949a23f0c789c65c74c5db0f6d14d5be74a00afebd189a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 777.8 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

Hashes for wnet-1.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 696686ee5fd9d541484b384ea6d63e494be300c6431cbefd88edffdcf9b4b50a
MD5 866a7678100e7eba9f3d27ffd0ed5f69
BLAKE2b-256 2e0a09c655f2a1900709ec0107f8cec9a9b816b1d44ebba72233bea687dd1cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: wnet-1.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 791.0 kB
  • 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.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3f35aa06f1b4afdaf7d0f1212d7593a3cf1aef7ade0d056caaa44b831e1d92a5
MD5 6f8bb414ce890bcbd70b3a9ba66d4980
BLAKE2b-256 9e0313525567424f6b3202909a129eef5e6c1865d718bd7b21c0db1002c2c90a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.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.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6292f8131daefe0dc8bab4345afec99549c97954623a89ed36464db389e4e429
MD5 2688d937d94da720c48f3e5a8efce2c8
BLAKE2b-256 0149a3a14b058fb0f9a5510c241ad88ebe816869a88e1d940fc94c950627ebaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d244d2be32663d25c4a8512d22b7dd7b56a8486742b1ef8e05c0f37dc43a589d
MD5 b65ae47a7afb033c33e6563801ba71c3
BLAKE2b-256 37bb3bb48f3b6e281be58fb5b6b288f0e67af0a854ab3a066324eb08a5161c7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6abd105f5569e30547a57fd1900d25dca288fc223e5e756425c4f5ff70ff9d8d
MD5 a3f5065cfb5e6a5f640c668ff476f946
BLAKE2b-256 a9212bcdcd50f9d3ff0f18407f2a9db43ae586b2af3ca1b346b7656d1168c5ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.0.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 49795971587682361c1105d274a32f553fcac221767424c4ee0ed78075bd5d06
MD5 fe6615662d28977e2eb6ffcb53c2f719
BLAKE2b-256 88ebae54e395254436c14f7b750519e09ca3c3444cb44457299ca41ef4f11629

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

Hashes for wnet-1.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e1df35087c85ea30463c2298127d2069badd6bc0cffbcc83ebd1959f8b41742
MD5 0e95b57b5fc138e408b5170d1e1790c8
BLAKE2b-256 9936fc53a86c26cbd02bf5dfbde22273bdd2329622d81c74e89b896412b5ce26

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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.0.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: wnet-1.0.0-cp39-cp39-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 742.2 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

Hashes for wnet-1.0.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b9acdd4ec24d99317771d9492356888385f7ecacdd2a60e9e0d6aa2441f06de2
MD5 7d1c309c965bf0a44477d28570e90f1a
BLAKE2b-256 a1836af3358dba4eaa6c89df4040e5a5be33aa929a183e3351b3a1ad53716d95

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.0.0-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