Skip to main content

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

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.2.0.tar.gz (97.5 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.2.0-pp311-pypy311_pp73-win_amd64.whl (1.3 MB view details)

Uploaded PyPyWindows x86-64

wnet-1.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

wnet-1.2.0-cp315-cp315t-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15tWindows ARM64

wnet-1.2.0-cp315-cp315t-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15tWindows x86-64

wnet-1.2.0-cp315-cp315t-win32.whl (1.2 MB view details)

Uploaded CPython 3.15tWindows x86

wnet-1.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

wnet-1.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

wnet-1.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

wnet-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

wnet-1.2.0-cp315-cp315t-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

wnet-1.2.0-cp315-cp315-win_arm64.whl (1.4 MB view details)

Uploaded CPython 3.15Windows ARM64

wnet-1.2.0-cp315-cp315-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.15Windows x86-64

wnet-1.2.0-cp315-cp315-win32.whl (1.2 MB view details)

Uploaded CPython 3.15Windows x86

wnet-1.2.0-cp315-cp315-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp315-cp315-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

wnet-1.2.0-cp315-cp315-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

wnet-1.2.0-cp315-cp315-macosx_10_15_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

wnet-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnet-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnet-1.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnet-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

wnet-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

wnet-1.2.0-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

wnet-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

wnet-1.2.0-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

wnet-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

wnet-1.2.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

wnet-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.13+ x86-64

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

Uploaded CPython 3.10Windows x86-64

wnet-1.2.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

wnet-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.13+ x86-64

wnet-1.2.0-cp39-cp39-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86-64

wnet-1.2.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

wnet-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnet-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnet-1.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

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

wnet-1.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

wnet-1.2.0-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.2.0.tar.gz.

File metadata

  • Download URL: wnet-1.2.0.tar.gz
  • Upload date:
  • Size: 97.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0.tar.gz
Algorithm Hash digest
SHA256 a7ceb871b3d4e762fc4d20908ee71538dd7c61f76ce2b06cc66de71fef4b9ea9
MD5 662c50e1e29ade6ebdc210b2fa7abddd
BLAKE2b-256 c4945cf1b3da29c635628d10cc2adf0e3cfe85db87e8740bb37d9f87fb11491e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b3cfef90b4789af6c120e52c253a4342aec4ed15d645856bf214b8e0561870c0
MD5 6d7ef3a59f3079e7002a05598cb6020a
BLAKE2b-256 87d1c7591767a18eb998c943a0233021213beea2efe79ca3c5693e07e6175071

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 976308a35c6bce043fcfd3e8f9fedb923b71fdaf71bc72491aeddf909faa330f
MD5 3c0ca630e768ef18e6579e3849370b3e
BLAKE2b-256 86252acc0e275a7791c5ddf5f436a5aaf3fe60f42b1b0af7479cde7179c02498

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d529c06e3a2a63d5cf821883da74b2a40993743d77cc88dc4b5825d02d10352a
MD5 8b00b031c516dca0714b88a9e5ebd6cf
BLAKE2b-256 6ef17cc7ee66b405b303fd243a7ea732a946c1ca307a75c3ec3fffef6d026aed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa76b94cf87f1f04c8026a739a3fcb20cf35ba2d001550739c820a184c5474e5
MD5 1e0ff000ac5209562e0ba86275eeac36
BLAKE2b-256 8f0723b2cff0083cda8ac0d6ea35079d57dd9ae9ff288090ab396b5c7d60db2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2632805020a95d589908320b88c064a0b62e365339f8f4246f9f4a5f2d9686c8
MD5 6e287c0bcada1d04864c589bc4c4ba21
BLAKE2b-256 b74d7cc63d709aed061332c6bb741446e24f4b3dfb1a5ceab3e3e2290ccda1bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.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.2.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 feb0696ea222db2eb902a2722eaff9cae985b223b9b29665808515993fe9c117
MD5 8e0bab6a6067829d91f9e38875939c2d
BLAKE2b-256 58013df1c8cd0a3a6135e14af26f195c4fbd09b1061958eba8646f7b0e39f6bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 7240afc11a97614aa0f96cbc7d623d6de4b9a8630d662be21f4bd9d907d144a1
MD5 12b8e09d17d2259dbabe2da287e296d8
BLAKE2b-256 9da2579371d2e0628e839585beb8a226f43ca6fd6fcb61d9270b3a2db9fae658

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 9f395b7ba1e4f6f0fe9bf544488268029d6ae6e9e24c526a3e09b40ee497f89d
MD5 b44d597de4d0a50c22caf08092025bd4
BLAKE2b-256 3f121e726ecbb63c6136306074bd47d510effb82da999e535ea978cc6efe8393

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e88debc61c8469730da53379f399852b8ec9ed76cc227e6eadb688b527232f83
MD5 04872665218fba40a1c2238ee0446b56
BLAKE2b-256 5d5a8285ea2d23784b8cdb038ba374d3010274e560684560ca0c1be5dc52b825

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d4ed6631c6263ea6b8a5b82d251cae44034967e4b6f6a5bdb54e0a9e3c4c5b
MD5 f9b0967cc69e162a970cc7cef820f883
BLAKE2b-256 24d2af0ce645090c96aed158bfdc5d63de955e82b624f18988ff65da31a94e92

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 878bcef9f37fbf95278b30c424ce943ea6d34d3017f65a6f046c1f399919cf96
MD5 70f0e8739709de23a502e0b817019f7f
BLAKE2b-256 8adb6f871edc2a387ae5cec604611a43fce3768b999e56794579f64b643a6dcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 993ac61a1a9deb6f5a3c4719e61f53311d49d507b4cc73538eb97417e0b7db2d
MD5 29b8f9253f79e0bb8ea6d1754b1f2eab
BLAKE2b-256 66d6e0a4bd82367e14892c9b974b8e8bd43063fb1de61f62deebcddfd3f4cb7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 765543ac659236cde46c13cc81f8cad6c6ac617a8d5090247872bf4de49fc89a
MD5 1c6908d09b8da5ec1f4c215d75428162
BLAKE2b-256 a129d51e6fe74651bd62775484f6c16a2fd10c5054fbe18e56e4bed4a183c409

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 508cf8dbfcf21c4f7162f4ddad2bf860ed2391dce80f5e0d6612905b0b6bfcd8
MD5 b635ee63322d0309a78cd6fb86880369
BLAKE2b-256 bbe981875d0f51d41d99637fce5ff258748e2fcab0091c226bf5c7fd24ec6b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315t-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.2.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 d8ec39f9194613bab8bd604b2182179c43c29dabaef1f30a9d1eb0948c4dc300
MD5 31aa4b1545d23199af418294cd4228f9
BLAKE2b-256 b879fe602f7ea14eca8eceb94586111e38cc2315c33620ec29c92fb6a7319215

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 9487e8841eefc96b371c9b5e4b8b1e063ec93174b2597fcb87ee4ac589dabd20
MD5 da7f11a4fbb0867c1e0f54ef588fa2a3
BLAKE2b-256 492175ad73413edfb1849d466ea49b4c23d3b42e1c965b9680d9cba02faa4d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: wnet-1.2.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 2ba0fbdb18c0b5e476c42fb7edd5cc4dc728595ba761b4a9d26997c2142d2bbc
MD5 0c247239f04f97a9f5c2f3bd5a6c665f
BLAKE2b-256 50625803438f41e7b2472415c1c6321485e21ed0eced27845b1cb6bb84adbd23

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f34eb7d302292df0ceb14b989e1ce5bd0cc3ffc5c7c9ee2ee7fae564fb91570
MD5 381811270a9bf8791518e4bd1eb94773
BLAKE2b-256 e0dc276dda31bbedd3376658174975a0994e67d11c19b5c17039f01abd6cbadc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e51ad0e90293d1e180fc19afb4acd8c82406bcba26c8a9957eac2549f4023583
MD5 6c44daa201dfacec1b20ba9cf360f39e
BLAKE2b-256 c48fd53037e1980359915b5ab59a8e84c4fb4cf7665cbc799b787babf2789f70

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b386398ca485f64b975e24f0f19fa17bbead9113eb97fd1f4f14bd63d4b3ae07
MD5 986358292414c39cbb987b03e5eadd74
BLAKE2b-256 7c7feb16fc7154f4259f57413b194f8c516c2d7f2a75221f53664eb9a530a2c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1b0b5a863b61af3f62812e1333d76f4c6c825ccb1a8a55259c5721277939132
MD5 1c9061676404f0836eb95b7c1620323f
BLAKE2b-256 30bacaca630868a494d86670818de83924c01829902e3e416cf56e5bb71b6006

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c1acece0300eb5aca1ad0e4aab7af2db08aba802ab77b002f261f51409b3b27
MD5 7699d04872af437259b969b906aa98c2
BLAKE2b-256 24e6f06233c2a5c121007cb89a7cb324862ae4bb0c2cb6a7a031bcc1f5705ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnet-1.2.0-cp315-cp315-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.2.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnet-1.2.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 99e154dd50fad2e28551468310b4aaad13fff0c1bb4debb82835187ec998e51f
MD5 1e2bed364163229fbc4d1ce089871558
BLAKE2b-256 355e55de24211ef0075d81cb62cda4d3145f408ce86ee51e431242c31756b8e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 ba88965ee80cbce847ffb8d34b5bb85ede594da02fbbfb465fc6dfd52a7b40d1
MD5 f57354985492197df37d2f48e37194d1
BLAKE2b-256 44471abb8e5b30c0e2d3c4b3ffae22cdcd33976ced2d99d005c99993309224b7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e6740c65ab1fcf543916342e2623e52501f24631e0aeb9bc1b86fef99be78a8b
MD5 75915771c44b5b3d99d48a1a8c57188a
BLAKE2b-256 9e584df951e4ba5d02143edcf6f306068fc502f1f7e019e7ae0868ee76ce2157

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 758dfadfc1ae031556bb401e619cb7b808d0f4b43d0134a6c9d4519a6152a156
MD5 357eebcbec82416edb92fffce527fb3d
BLAKE2b-256 c4503cb5623893f064f21029646b8dfc95119399089f0c119103975f8d4d7e86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef91dc14b8c2c04681c2e2796e319865d5eafb4e4adfbbe726564ab5285b0176
MD5 0879df49b6a03a0b59161fc230fdf55c
BLAKE2b-256 d22415b800dc31203325b8ded9a5b09f45ea54f6b8c375ab6feaedcb840c2ed6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01a4338a000844f5d8a29f9313d3777fbf3ad3b339ba5a17f9097efe36250795
MD5 3cb5d64fd0654f43bdd11e956838ef7e
BLAKE2b-256 fa07fe411126f2f6716b111cd7b3166379b4349d38406aff9b24e4fd5c2483d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d99c585c2d6cfac70aef10d1e1a7256d6284a10d9014387e7d1bfd09fb4f8c37
MD5 b0c42e921665de9ded2514f0727e37cd
BLAKE2b-256 1ae648d1cf970f5fd5fd909d26ea903f8cebca48d05a88adbdc9af3d6b13430b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22bd7e1d59a872504988c929cf2ef5c02b482c5ae749435200160cf15b7bc1f7
MD5 07512dc22b1202e0d0d010b9b17267ec
BLAKE2b-256 0b710ea9d744ef6770e62d260103e9f65770a5428e39b5b14f16ce1dc6da0046

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddcef1bb9450c1c1adcfece42342aa90ae665f7b4b92ca2659dabcb51dac0576
MD5 9df1d9df7370c056fb3e0c6547b1bd32
BLAKE2b-256 5649e26218beb53ea0f10f02da9fe0803cabea1627bfe0760c0a485344e0302c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 89cac1192bb62df8a4927786042e009f8e17b96827cd3dee0770253fc2311ea3
MD5 8bc4edf21c6b8e538ea32b6cfe5c9f8a
BLAKE2b-256 eee3fad847412780312fddd52953d49e26fc66df5afb87504801841b48d69355

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3858f2849b05494385558758f823c90aaa1c0aa36f7a153b12c5b28549e4720f
MD5 014c5bcec0838f6329767c7f2ae5086a
BLAKE2b-256 5509328fa84a29a17795b64e2a32fb5ae9bf74a2ebce7dbfe1b17452140a01d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fde345e703638ef7f1b2ba50c3bcadaab6efba57aa48babc27d105f3ce86f81a
MD5 e7bb9a94d566b933e7d9839ee7cc694e
BLAKE2b-256 b496d8bf1074726281d0c8ed4820567fc130c14683cdf750d7f4fc71aae3f98a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c932028086e533e8c2b4ea0f956107c9cbb88405b4d7a1035664973b2e3e40e2
MD5 901fe550d82b8baf311e6b608e9adb06
BLAKE2b-256 cd9b6681b70c4f85f36147fdc5c68cadfaff13734709a6a33d0c627eccf9703b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7357a23ca6e638e57b1a39364f0e7d577bd904a0602050564e21896619b38193
MD5 194f90d1a6316450c28d482cea5a96dd
BLAKE2b-256 2c4f1d7ac80e60f4ce5ddb6503d2f73542a632d451de97b631533e64134e3cd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c14a35b9381b4ce08925273edce84ac3221ee30037e83915e2b322e5da2a2b63
MD5 0ae5e12058d0743d8790010827df2054
BLAKE2b-256 7f6dd3cfbbb95b92f5ed861e0850763586f965805590b33c1edf4fbbc83fc5b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5e5a654b773bb903587800d35a0a153eea9adcf41653337b67881db5c40bc02
MD5 14bd2ce3515e45ebe148abbbbd4a1743
BLAKE2b-256 21933b184d53f12634828f9a10913457e182aeb257f618ea68272639c248bfda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78f7cd05e0c7969b518ae939454babc5ee1f47e963f58ff269cc1ec9909d6fc3
MD5 ee4f5fe80f87cad016af0a8c1b4b46f9
BLAKE2b-256 c8d323b74b8e5f2d9a13b83ff97a7a15545c025b6c9990825882d3fc7f9156f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9d7453c41c196eb9639b2861dda9e7c72a13ebdd5ae3d7f2de93f727913fb8
MD5 36f6adf13036f75f5515839089aa7715
BLAKE2b-256 9b592b3322caf420f3cccbe778097c4dbbbc3dcedb1c89f352b6e0ca6de8ccb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7947064633d03ad2c2e2641689b2c47c0d5494a2a7bb5d3e3f769633dd526103
MD5 2968ac25a1f7a6477412ac038dd2d781
BLAKE2b-256 b89cae70f40240abe461a9b24f13bbb13c8655442f46517eba51df90bb0c3287

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cffff92a815a5585189787a2e1f6d2dd436d74050ae3fb714e778506a216453c
MD5 82b0d40838bb5bb92fad0c0270c8bb0b
BLAKE2b-256 74238f622f1b945f8db889be7987a6c83de8b582e23aa6fbdda14b432f7daa6b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 372dcee0c241c8d6797c549e1a61efa3d6311b537485d34a214ba811dab7ebaf
MD5 26aa7309ae4b658bd1ab1c3a2cb6f5a9
BLAKE2b-256 9e8f20fbbb80b45b0010670268bfbdee2091a957dd1fae86f3f144416332e110

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 655954c136fe2782a71de3da0dc1a2aaf2a401f48a0e92f5f1845885900e376d
MD5 d9a64b61a520bfc8e323233f76129081
BLAKE2b-256 d8cd004e88169b1159461345fae49d66ec0a4c2767817426cc16b7552fd941b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7ef5ad6a3d70a0ad6589e7be17a0e86a884b3280c955fb925d0ea0964e30dc8
MD5 a8e7931c461905583945f3bd44c0e08c
BLAKE2b-256 c60d2ceef0ee9e2ec0a5292fff2966431e2c3002e73134085cb13ca7e2bfedd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c926990827904e2be84ce1a7d662c7a7ca409b1c4e5256a64984285479ec1bb2
MD5 7f0dccab3281c4f4589da7b9dbf47efb
BLAKE2b-256 f22fbb21a39f88afb8c313d77b1608f443c056735ab62680291a8bc4073f5b83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fa1e040e17d5892fd49abf45f210bfc2236e7bd6a5b74535c50db9e260a1278f
MD5 b9f504f6022e3c5a76c6e87d86a61e2a
BLAKE2b-256 74425a02b69824511c1cfa7ba9519d8cde04d2680ffe6c8cd6d9f7b308785b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74e1c21fe25b5d25e9bdf5c6fbb5a03c0ed07615b5304e05f51e9ee9d21921d8
MD5 7fec0e0fc456314e3559ebabd7d9010e
BLAKE2b-256 86cca0b399d8667db91b6efd48168d9a92346a4bab2051c3d7a29d2eaef56995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204b2022a254dff3633e99da43bd7a0c629a733f821a73a56eb9960c4e98ac2d
MD5 dcd327146827327326e1fbf73e2746cb
BLAKE2b-256 6a0f11ff53e0aae254a04a934769d9808775e973682b37596ae3a4b9b09e9627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 934349833103249a2b7f0c7e534cea017976bcaa1b434fefe50449a15714b54c
MD5 6c6d18d74d1f259dc243fec36feea72a
BLAKE2b-256 37266af40e5c2ca0d9946b5ccde6e3b0f830d49920347ac1e41161752ea69034

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 13ca57135ec62cbfb69c9d906aa74f502b33e77777acc5f003cbffcb17f45e06
MD5 de109949f387bba28386c3ea4685175c
BLAKE2b-256 84fffea3251814d80d7542389c8233be6d85d2efd7e9e8ef5d905a62083d03d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0e4d0c94f2fa82f34ec959d5505c6fe23adbf370addc7911104091d2a604e861
MD5 214388b97144eb42a3e76fbec0d93115
BLAKE2b-256 1786f27aded378420cc2fb4ed7a0bd557972188accd0634f8d5f84eada3dfc5c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c085dc616436cd3cdc2d059ea147629e367e114e365f30a703dd5223f05639d5
MD5 6aca2da8e87cd73f8c1101c16f4f883a
BLAKE2b-256 a85b7628eab37ecf213a8ede6de2e7f5c7320190eb45c625fa745e169a55c6a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8beeb7257fdf45bb10de44a2a6fafa36b639b7075f79c554b2cdf46521ec5540
MD5 0634f8b763da8006954ff50cee68f6cc
BLAKE2b-256 c224b78ae5cda0905fea67dbbacec56738450d20c6c67fec0e364e88881686a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c88e93df4c4045bda48d78f812f69183f7ff71d6d27867809bbf593f227412e7
MD5 bb464026a61438dc413b11aa7fb02f15
BLAKE2b-256 c42193774495b8ef24a567f2bd5ff98a0603f59c84757bbd5072fb054bc71d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a375c6acac3c4aaf409254b0ae202b06fba8c33d3f83ede908df98a60e6c706f
MD5 7573cc0e790b980a3848f7df949bcf21
BLAKE2b-256 3377ab25432b18355ddc81084ba330b9d1c8e499e298182f5d5415a1863933a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbc7deaf82bf64e9f345e0eafd7908bb28e2138652cb0c195ebf7731906006c0
MD5 3de4969800059022ad4f53b16513e97b
BLAKE2b-256 aba08ee4ef139d4d9de7161a4898d1e58a59eb5abd1af76053c61f76e8dbe6d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b95760f620e7530c606579090a97be87c8e345cdb6c8fc61f10d1389df43654
MD5 0d69b48ffbd0e76de2217c73804bbcbb
BLAKE2b-256 e8f71327bbdd11872cb949d294ee0713284cecffec2728fa65a5afa7823fbab8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 731afdd07ee8735ebdfdfe21bbafa5fd108aad6e66ccbc1254fe9b7988dff08c
MD5 4892c6eebe8b763e2c3b2269a1e7e9cc
BLAKE2b-256 fa7242ec1d79a85d6e85648d9babb64e5074968c6a6ac987792a523d0649e6a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 326404bfd009bab33dbd7dde42e69623e702df65339901cc7c14a95ed85b5457
MD5 bf6e5a13bf73fd93aabc5f87d9f7e89f
BLAKE2b-256 41c31924214a699949f26db67404310c83806b9a36f500580a6619e805716d7c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9a5b02709c770429446186f018756333de6fb34d0bd8e47a9c67dd77ded664e
MD5 ccc2395d5445b21956e680ce16cf3a9e
BLAKE2b-256 db086ed393324910622667447957696e4edd36c3b3f5447be172f4e509366888

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e79ac6d74633da799ed27cb6b9096133c1bebaf4b02df24e7b2f6f93ff837a09
MD5 74c0ce2853177352a6119eee5ec60673
BLAKE2b-256 aaa1c6eabc104e0961d3f78b4d2f3a39aa4a58821c012bf6668d30d26036fcc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb562bf0356d279cb4d902aaca14f3119fe5f3a539f092d37dff7790184991c5
MD5 94c4dbb59e6cfaecc42590de1693d0f5
BLAKE2b-256 44c59eccb6f66ed4911f3c2e75050e1056003dfb421574e426b31c5e3b39003c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e71a291d560789b228c6f774719d953040c5269257c9ea6e6cc7454a27bb20dc
MD5 4ced8ee5ab405b9ec9447adee53f4567
BLAKE2b-256 2c3ae30bb4c939adb6bc8097ec2d8ab6c835fdb029c6961ac40cf8608b0f3007

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 05667f6eae50acfc955843ce96cb6ba56e1f7588ce1281aefef93a9b0680ef6f
MD5 46f8811238562c0caec75d0792485ec1
BLAKE2b-256 637985ca8e8a7a1ee335a9db78138f9cc8c9efd8d23929f1cb7a134cdf52a27f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fb5cf8794cdc89bfd26e1580bada88bbdf49b801a93d092c3b0ae638cab79bb
MD5 2740ab5464ae49276b7285e2e830a5d3
BLAKE2b-256 519f93bd89950645cc2fdd62e7c8a9c5d587855fe5130219c090f0b51b9f9d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b567f4364294c5e2894796cb120a4fa216483d2d5065c656fef220e3bd19244
MD5 75f34a074b5d98a98e05c6fdcf9e4afb
BLAKE2b-256 a9108336a32723776e3f97f38ab1169a5833daeedd4c914c22f5d1b61b23176f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 32c8c28bf4520d14f685618bbc4d6c29133b6eb88df4e11b8b27a3c194a72bad
MD5 f8753e51d3802e0316d5e913b56f8163
BLAKE2b-256 17df165ebe78b0b8f2b95ab43acb7f043f1814bee4a40e7e8b03240db414be0e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77ae72cedaf156fe2f0426ed77bc94c24d088b9d864a9e2f467828b176cf25fa
MD5 b75027f6a929dcde8afbaa0f2c28b768
BLAKE2b-256 9b9900efd254bd506d6818205986bfc6905dae8bbe779afa702d67e648786455

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d0de661a2ac4ee450c0bb2c45f2490453524f68badfc810d69cb10e7a83d5efd
MD5 96241d725c4f1da94d3973589fe6e57d
BLAKE2b-256 812f4c198bbacd21f54b4d6de70f42c5753ced126c923e34b70f9d7cdc175501

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 438ca83ff4c8acfba728808b23a40730def3c2e6a4ffeb93fd3086a9cd6023a1
MD5 2a1d258d8b28348657f67e12589aefba
BLAKE2b-256 7850a8cc65c8a00d20b7f1f8c7b713b93318f7037db25abdaf49b590415c41f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 310de57299b59343a02c4eec9a0607eeeea4200b6c2bb7843cdafdb372a3927b
MD5 ff2843a89619434b84ee332cd1b15638
BLAKE2b-256 6584163fcac1576825de9a746e8fb62ce3b16131f4f0f6dc7d678797dbe98274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 82ad7fbf1ed357d70e8a05e91c09a32d5379ae928ff835572ed241c8fd4e9326
MD5 2b05a9a478672343730aeaaeb62aec43
BLAKE2b-256 01f97c928f4866144e54774e9dfe124f52156f32ccc171fd987357e5121c1a11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 247d4af195088d278564269ff3681cff15fbda3006d28c931a70a6da06f72456
MD5 13c4470c61897c90ae28c3e38f9bc082
BLAKE2b-256 83f43d20e291c8ca01b2b0a0860b747c874851e975e4e3ca77df17287287da19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb766d9341221e95a88c8a306a0aeac7cb2ac34af382a45fa39fd501ade1ac62
MD5 33b631accba4b3687efa3832a7c62283
BLAKE2b-256 08f874be97f3f571cfd3aafea5be28f0f56858096cb8614967a78b365c4dfd49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb9ffaf023fe4d5a7340cb1a005ad09fbeb3023e273fc542f85f523d07ac7cf3
MD5 ef7b121d2685b1aa1fcffa2fb0fdf7e2
BLAKE2b-256 f335d919bd3d47cb061a1044e23bae260612d7eef0972310e0f3477fdfc6ac78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc03448b2f894442733a9d78fed043c5d6dcf655cc4606543e2d2543ac772873
MD5 4dca1e970f7abc57c8de7519789676bd
BLAKE2b-256 9e0a615ae4f474e66ca68dc73fc5629321f9cd3942becd1f7cfd0da66ba32eca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 532803159bfe7a4f79d7101e27cf29c567d779bf0eb4c9fa3fc5feb060ef1b52
MD5 27b83ccc53395e20287940518c8bf485
BLAKE2b-256 4ebc338fa7a2fa655ef4356ebe8d5561479467b0794507c417e4093a38e7dbe3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e7e1f707cb62ff83fe556a90b481cf91580740fa38fa3022e2f804f42f81d7f
MD5 328388e095291a3329d42d26a2373c01
BLAKE2b-256 c6e1abb103e943b267b272fcdebd6166943fa5bd339d5fd5f2fc8317e936a651

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86bd0845fc83194640470eb9211715fb53b65a58ad7efba58d5a23102a3764ac
MD5 23fe212ffdd23bfe5d968d94d1417e64
BLAKE2b-256 0d2ff1474ebad48fa9f1be2f5f9dcf1cad87e1a657f44aad23dc5f610632aced

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 659457d407342db372b78d4ef5d8071f2be5adb991c6c6375c344827071e0a60
MD5 3bdd868cd430a187b90fdf752641d141
BLAKE2b-256 6ef97e055ebc7dd273944c51b83e2015f79dcee3edc9bcb5a477bd6df6b825c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 62deb2c86150072586191dd34a6e1f5e401cbfd688780d7af568fe6fa6edf564
MD5 07638922a7c04cdee9fcd0434d7db9be
BLAKE2b-256 24bb928db07760a6fffd9d0a566469dd218839cef0a000dff2a34a0745c7932a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.2.0-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/7.0.0 CPython/3.13.14

File hashes

Hashes for wnet-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cef73cac99a8ccad8be690b258c4fe35456725b9592981b6a740cc0a47526996
MD5 afcebea0d1978293f1e9cf8bb65a3b5a
BLAKE2b-256 79e35dea1ee6583a6c6e64a0a33f5ffd1304a2001835fd1a309e41d6f783278b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.2.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 105fdb3d71beae3d9539d1e52f73291d984ebe8250fc7793fabd5da09b64d666
MD5 cbe5fdc2e1837686185f6c7120ed9612
BLAKE2b-256 46c28cd6346f6d99c8d637eef95f7172aef9237f9a76865925f05a281f195b3b

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

1.2.0 This release

85 files

1.1.1

67 files

1.1.0

67 files

1.0.0

67 files

0.9.16

67 files

0.9.15

67 files

0.9.14

67 files

0.9.13

67 files

0.9.12

67 files

0.9.11

67 files

0.9.10

67 files

0.9.9

67 files

0.9.8

67 files

0.9.7

67 files

0.9.6

65 files

0.9.5

65 files

0.9.4

65 files

0.9.3

57 files

0.9.2

65 files

0.9.1

65 files

0.9.0

65 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page