Skip to main content

Tools for calculation of Wasserstein metric between distributions based on Network Flow algorithm

Project description

wnet

Wasserstein Network (wnet) is a Python/C++ library for working with Wasserstein distances. It uses the Min Cost Flow algorithm as implemented by the LEMON library, exposed to Python via the pylmcf module, enabling efficient computation and manipulation of Wasserstein distances between multidimensional distributions.

Features

  • Wasserstein and Truncated Wasserstein distance between multidimensional distributions (dimensions 1–20)
  • Three distance metrics: L1, L2, L∞
  • Order-p (Lp) Wasserstein for any real p ≥ 1 (per-pair cost = ground_distance**p, result is the p-th root; fractional p via automatic cost scaling)
  • Derivatives with respect to peak intensities and spectrum mixture proportions
  • Position gradients (∂cost/∂position) with warm-restart re-solving after peak position updates
  • Support for distribution mixtures and efficient recalculation with changed mixture proportions
  • Picklable Distribution objects

Installation

You can install the Python package using pip:

pip install wnet

Usage

Basic distance

import numpy as np
from wnet import WassersteinDistance, Distribution
from wnet.distances import DistanceMetric

positions1 = np.array([[0, 1, 5, 10], [0, 0, 0, 3]])
intensities1 = np.array([10, 5, 5, 5])

positions2 = np.array([[1, 10], [0, 0]])
intensities2 = np.array([20, 5])

S1 = Distribution(positions1, intensities1)
S2 = Distribution(positions2, intensities2)

print(WassersteinDistance(S1, S2, DistanceMetric.L1))
# 45

Order-p (Lp) Wasserstein

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

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

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

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

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

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

Truncated Wasserstein

Mass that cannot be matched within max_distance is discarded at a fixed cost rather than transported arbitrarily far:

from wnet import TruncatedWassersteinDistance

print(TruncatedWassersteinDistance(S1, S2, DistanceMetric.L2, max_distance=3.0))

Derivatives w.r.t. peak intensities

signal_part_derivatives() returns the marginal cost of increasing each theoretical peak's intensity by 1 — useful for scoring how well each peak is explained:

from wnet import WassersteinNetwork

W = WassersteinNetwork(S1, [S2], DistanceMetric.L2, max_distance=10.0)
W.build()
W.solve()

derivs = W.signal_part_derivatives()   # np.ndarray, one value per peak in S1

Optimising peak positions

After an initial solve, positions can be updated and re-solved cheaply via a warm restart. update_positions_and_get_gradient() returns ∂cost/∂position for all peaks so you can feed them directly into a gradient-based optimiser:

W = WassersteinNetwork(S1, [S2], DistanceMetric.L2, max_distance=10.0)
W.build()
W.solve()

for _ in range(100):
    grad_empirical, grad_theoretical = W.update_positions_and_get_gradient(new_positions)
    new_positions -= 0.01 * grad_empirical

Licence

MIT Licence

Citation

If you use this software, please cite:

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

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

Related Projects

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

Project details


Download files

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

Source Distribution

wnet-1.1.0.tar.gz (67.8 kB view details)

Uploaded Source

Built Distributions

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

wnet-1.1.0-pp311-pypy311_pp73-win_amd64.whl (907.6 kB view details)

Uploaded PyPyWindows x86-64

wnet-1.1.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (871.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

wnet-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

wnet-1.1.0-cp314-cp314t-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

wnet-1.1.0-cp314-cp314t-win_amd64.whl (926.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

wnet-1.1.0-cp314-cp314t-win32.whl (872.0 kB view details)

Uploaded CPython 3.14tWindows x86

wnet-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnet-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnet-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl (886.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnet-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wnet-1.1.0-cp314-cp314-win_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows ARM64

wnet-1.1.0-cp314-cp314-win_amd64.whl (917.9 kB view details)

Uploaded CPython 3.14Windows x86-64

wnet-1.1.0-cp314-cp314-win32.whl (866.9 kB view details)

Uploaded CPython 3.14Windows x86

wnet-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (874.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wnet-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wnet-1.1.0-cp313-cp313-win_arm64.whl (986.3 kB view details)

Uploaded CPython 3.13Windows ARM64

wnet-1.1.0-cp313-cp313-win_amd64.whl (893.4 kB view details)

Uploaded CPython 3.13Windows x86-64

wnet-1.1.0-cp313-cp313-win32.whl (850.2 kB view details)

Uploaded CPython 3.13Windows x86

wnet-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (874.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wnet-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wnet-1.1.0-cp312-cp312-win_arm64.whl (986.3 kB view details)

Uploaded CPython 3.12Windows ARM64

wnet-1.1.0-cp312-cp312-win_amd64.whl (893.5 kB view details)

Uploaded CPython 3.12Windows x86-64

wnet-1.1.0-cp312-cp312-win32.whl (850.2 kB view details)

Uploaded CPython 3.12Windows x86

wnet-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (874.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wnet-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wnet-1.1.0-cp311-cp311-win_arm64.whl (986.6 kB view details)

Uploaded CPython 3.11Windows ARM64

wnet-1.1.0-cp311-cp311-win_amd64.whl (893.5 kB view details)

Uploaded CPython 3.11Windows x86-64

wnet-1.1.0-cp311-cp311-win32.whl (848.9 kB view details)

Uploaded CPython 3.11Windows x86

wnet-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (875.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wnet-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

wnet-1.1.0-cp310-cp310-win_amd64.whl (893.5 kB view details)

Uploaded CPython 3.10Windows x86-64

wnet-1.1.0-cp310-cp310-win32.whl (848.6 kB view details)

Uploaded CPython 3.10Windows x86

wnet-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (875.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wnet-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

wnet-1.1.0-cp39-cp39-win_amd64.whl (895.2 kB view details)

Uploaded CPython 3.9Windows x86-64

wnet-1.1.0-cp39-cp39-win32.whl (850.5 kB view details)

Uploaded CPython 3.9Windows x86

wnet-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnet-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnet-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

wnet-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

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

wnet-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (875.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wnet-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

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

File hashes

Hashes for wnet-1.1.0.tar.gz
Algorithm Hash digest
SHA256 ffeedfa3578475bf093274661be9cbe6216ed2a0ae482bc9a08a4573f5a4621d
MD5 807649a8d7e8f5b8caff275225f4d9ec
BLAKE2b-256 b495b7e2ae0a2a9b55eae3bd54251cd1320d9f474069a817987fb2037b950a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c56a9b6e54dfcd0db9cf8228f7f25ba79fbbdcbeb6566b60f49a1c0f94541381
MD5 223b2ee35c322dcf92f63209034e5523
BLAKE2b-256 74459246438cdaed4e121062fa43e1a50d20cf8e4aea9d8bcdbc6305cacf722a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-pp311-pypy311_pp73-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8ab83444d1fde1419f13306cd63f34ad36b3b639d5e524312669d97d5c8a83c
MD5 35667cae97bc7a702b1f48abfa2fe88c
BLAKE2b-256 9f8d49ef99587975f37dcd4e3e55820b68b0785094cdb2afca50aac20099cb9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc6d57e4480bad10bd3071f2cb029c14d12b8ee9f678a4f8886688f513935061
MD5 6a417ad463c6a5389425715369fd09e3
BLAKE2b-256 f850888b9fc9c0721c979385c3cea0d6d8fec359a05aec3ffe300cc08427df3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f004275dc843d627b6fa88fd6c5e17ee21802072dfcd2e364f605f8051919cbc
MD5 7f8d99650e6dbe89557e45465f073788
BLAKE2b-256 abae95276bb640e381a1d5cb468d8170749e664562e5cd5b062104474fbad5ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e2b1441e2efffcccec53ef506832b2c7f1519fad793b61cd60b384f9818240b
MD5 38bcdf1c40994d54bb88f13de25f057d
BLAKE2b-256 e791d49416ce2f145364192ad3fe2f0fc0e462ee806c64048d86f1cfb1f454cb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7bbdb8c6cc311b8bc46685cee2fea64dd2901d229b473a116c300725c6746da7
MD5 0ca5ef8a144b54f6a498d9416eb537a3
BLAKE2b-256 5b6ba8d8ad0b74072250f3907161e21eac699493535f5f0656d4ec0e7d45ce2f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 238bfbbab36219e5528177db5c5258dfa7c8323adc057d811c997bedaa809e0a
MD5 be1091139995e73fca8584be6b5e1f51
BLAKE2b-256 63f8f3753c2735bbebfa52236666a87614deda4217ab2be5c705b87516a922cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 872.0 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.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 65b6b103950427a5a92f7c6f65501b6f1645b84bb759fbf1144a8c19ac593337
MD5 17049d7a34a913bb86a6cfd58e2cf1bc
BLAKE2b-256 1bad865d5cfe653ea8bcdf7d3ce039faf7da1668a7d16c05bc7310fc1057c2e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3f6a29729c355fa1ac79eca110b0edbf5703575f327bc806c15201211b74597
MD5 158356ba93d447985562ae530111b4c9
BLAKE2b-256 91adcc19da0ddd653809b627dafad347c0ac1587a2a5cf81d5adc46f1779458a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e31a7b604c6f9c16728f34a16462ac2a9a7c2624bc4a07c220b6f663eac0de3
MD5 b1f844598cbd62f194a02f0e8f4e014d
BLAKE2b-256 705917952a5d8eded4615c53cb379817a88547b061d73ae54a56e2e460472718

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a0e2ac43aa9cf922d7e5df14fcae29a0b01c55403f7d7930f39aab9c30297edb
MD5 92df21d7dced636f4baca0e8ede3ce45
BLAKE2b-256 0b469783b3fb88b2b880a0223fbe909d834540d393a58e79a216ffd97701d586

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a8f338fcfa3185fd7e06021e5129d46bdbfd3471e62ef4dd0af1b2098cfe439c
MD5 03ef793206c1275c20bcca21a1d11571
BLAKE2b-256 7e3add421d72f71a3b0983f27d46ef4da501b328c12ff6aa386d96fb2dcc6042

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fde9c05ebf5a4ca6bdb851f0b6b3a62b22b5159374497309f235bceb36e67ed
MD5 f2fdd6cead447e4942f30134536269e4
BLAKE2b-256 1a9cdbfcfe523c38eb5f00a40cee8798cc09606f47a97cb36dda72d36d404291

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 58f7c9cbe38c91bfb3279833523013ab8da57c0236409e86ca7f413f9251e768
MD5 7df9eed4c20d6a19aace37998d3c2913
BLAKE2b-256 6c50a935cc9f0205b5650c95458c9ed6aa7c425a560fc3b50f38af9abe8b41db

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a61ce303ebe96aa5d88f9e5a9cd0099bee3f3eaa4330bd7f2b31b8ff3d57e513
MD5 32a6db848cdd37886e0914c9e92ecd10
BLAKE2b-256 e9e9d934bc90645f8059b589c21eef93c81a312827097ba40f69ccd871d04c61

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 259a0b4fd87a88834953319b5405a80394b9a1642257f011486c25eeaeb5a85c
MD5 36d76374f91f3c6f8cb1e70c13755b84
BLAKE2b-256 d0a8ef11049291967d689ea981d59fc17cd15c94a06e712e4a167fdf7ac0a566

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 866.9 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.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8f715ba381ba632b8ef8a75b6ce5fdb8438006ee5cca60714ca0c5d14e124ff
MD5 202c655eac4b95df698505900e7c9273
BLAKE2b-256 cb74b1bc66847c7cbe611a249f98f32ac00bc9846967f0e658b13f6667b86c7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aae0a39743b71fd7a2949f93ed9187291b990bd13d5eea089b85b8231a93165
MD5 9200ed70d78e0e0b518c430822862c60
BLAKE2b-256 20699f7f19bb49ca2ffe26b63aee5e859d38b1e2f30abd2137abeb1cd8964fca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0481330daed3b40fc849cf64d93173f158c2f2ce6031487facbfd29919a7cd57
MD5 271671c376f008f5b4a56b735f6a19f5
BLAKE2b-256 8c302070ccf37dc6383edafecd417560ba9225b79db4cde5607d11b57974bda3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23a701f5fb57390b580c19146683f75fd0f5c8f8bd33c3b5cfd12c0e28390e90
MD5 db8320f1a765a2bbe4d31b74748c8195
BLAKE2b-256 becebf34cb28c5e64e06729dcef821b725cdb87e84d132e94be4d74cb59f1d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 215e655777bec961e4f68a9f0596b09141dbe0212826ad9f711dd214e9c43f9d
MD5 cb3b185fbda43fc78e50916eab7b0aeb
BLAKE2b-256 53a5ef9ca9df47a859111c965e411c3366d098e46adf6477e5029dd47d8730ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 874.6 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.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 965008d590c5d94a332755cabd7798d3a92d235e4d45f49fb3724b4c71a00ba0
MD5 1979c61a1e5803e784b4c1d9fff13768
BLAKE2b-256 001d9105ef2b0a71f52dabdf5a4fed52c755a81216a136e826bdb70d2b7851cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3be834b85c405b751c8e642e177bbd2bafd0d78d387f132c5b2f24127fa1383b
MD5 b2ee5ce4977b90eaec96d29cd99c474b
BLAKE2b-256 a992ff1d06673af1fc2dd2e3eff9c2c1afdd9da810b8c65b523daa8e87201ab1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 986.3 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.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0002e69f4bebb833c29738f5cd5f9a060bf72d522dd6d6a05b58b99946c1e3c1
MD5 e2918062c555ace0f8dc5582d262e7bd
BLAKE2b-256 01a09b2c4ec2243d0e61b8f0d9d8261fdffe3f1b061d2e7e2434f22d8fc02a3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 893.4 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45338e19281e97cf12db33c07c292f7b36cf3225a32f4e5c3df0df6f304404d7
MD5 f00fd54cbbf590cb5e90afe06faad7da
BLAKE2b-256 f46a9c99c4c8dbfe47f5579049b13e9d3036c72f52d2ffa5ed388883cbc53fdb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 850.2 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.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 75838047d02d529812d1ba0dafe0bbe206b389c2fb45f14e02b9e336fb1294ca
MD5 b161cf2e73f6bebe65f59b45a37bebdb
BLAKE2b-256 5a0a293f5bdc5d7e7e1953b74894f7d47a2bb245b13d34edfe6a6aaabf9df677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 268128527da1c5c304824a40f0ffe0b81b5081f0dfa14a865de6d475309fb8dd
MD5 b0ca02a64b5dd02468fb76b51bf5abd0
BLAKE2b-256 4057621ecb586bc68990b7adb25edc98b4167fa313924d26616b71cd5e515761

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ebf5ee906280de1bdeea437585ec28bd5311da7fea8d54572aa371da86020a7
MD5 ca81fe45145902c453cb9abf3e9683b7
BLAKE2b-256 1fb39de1f25a1b3864f900bb57f17c2dc19c50e4e3e5420dbb337adb8e3f960a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f651ac979a552a0a5c198498fb622d2ca1169f15cc751513b2e26a94d9a23511
MD5 799ad77b5ee0c306974f31f6a92c0979
BLAKE2b-256 6d86ff0d798b3a3571d29b2f455beb99d9bd4e246d62649494177b8030826962

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b53746508805e75bf6621fb20f2a4564042d69542557ee3e8aece16e0231016
MD5 5d61dbe1574a206725ca6ab0f7e5f21b
BLAKE2b-256 2de2931d1f4a4da7157f3d8ef29c7280e6a849b88a1dc49392f859de5e5f7df8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 874.5 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.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b007e6cb087bbe467e4dada67c71e904c715d0743e78f7b7c7e79246d908b10c
MD5 beba4aee867b7fef2dac7e4598575669
BLAKE2b-256 8c27cae1ec770f73af938b873ac8fb63c02d0197f54af7b4a872e955eb4e9f19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8a69c729a3453ce6aefa8417d77d9065f202df557abca547c3ebabccfabb4058
MD5 ed3974a11a22af16b70987fba54b4de5
BLAKE2b-256 26cf6d6f756d44a10dff94d92b255db497fd38ee6e32de9f35b684abfb142d46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 986.3 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.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 7ae87bf9141ef7c294d64ccebc44c8349e3083148afd98c0b73d476221dde6eb
MD5 830ae40386986bad77d75e12335026c5
BLAKE2b-256 3223aebb2b3abd365098fd0e5a9a281e1d796f5b146b2b6ce1b337c76991e128

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 893.5 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 772f1ada0951458ac3e22c854f881e12bfb49eaff46ff331f8eea9f09d847b0d
MD5 d1f57866c7830da4721b504920eb5995
BLAKE2b-256 b1e5154dfc61f3d8ba8cfaed40bc36c33c5038f5ba4f7d2b1a741c5bafff2f02

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2cc0d53d522bccc97c034733927d77f10f3197a5b470f04af62f3d1d33665bc6
MD5 740802811b918b32d8ee673020746e4b
BLAKE2b-256 89829721033ae2974e97c4b063252304dc0f1041d6031b0aa60cc726d0aef17b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6c6ead113b523272a165e199ccc532cec6692c5904421af5e75107db340899a
MD5 2a90a733d9e0227978c74eca9f429c28
BLAKE2b-256 e6d344cc0e138e1771e60166733fc140ce9703df2c6845eddf4c4a6392e5408d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5986b3a7105a3d883ad25f64b893b0415222c331ee4e6693d10021bbca703c7
MD5 5f7f4618daf9c8c901ee1c7b444e7e4d
BLAKE2b-256 9d578cbfa9e91fd6cc1ae77da7a5940330673cde257ce458f1225229ced04fd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e978ec05eaf31b5cdc3474545cfbee6fe4901a47d582ef4aa058b98857907626
MD5 1ce29a302b15ec7447b545e5919ed056
BLAKE2b-256 4b94d470fbc1e37d6f2401b93f7625c7c6c96881733de6d210369e3f341221d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d150ee75e3e719bacb2dc59aef7aae67b5d4959954dafd408bd5ff917e5c160d
MD5 615b2aea6fa99fdd0d6883e40b3fdb63
BLAKE2b-256 3ff677c3d9b5d5962ed04ff7b448b386c6813ce9f556d9e2f1b207887cdbbd94

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 874.6 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.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 930e316cc85437c3df8279686777a4bb40435783d15c8a44851ee20956ebab84
MD5 38bf48732d2bf13e26b94d745e2c150d
BLAKE2b-256 c3aa7bdbbc6313063075dc2efc2e2cf33143cb07d3414823028bc9929b3a5182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ceb6c6eecb14db463b89bd8c63bf370b2065863d5c11bf5656c70755e5bdc8b8
MD5 e99d4d66624c5cce534501efab720fff
BLAKE2b-256 78eb08b25945ea0f0aad157d9f86a96923c594f2f22ab9ec65213ec61344e406

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 986.6 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.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 073730da6c8277c9c494f8096c42fc99bb6297b24e42dfc4fda9524d7fa6a364
MD5 6c996b5d613f5220ac5741920416c6d3
BLAKE2b-256 c85e709e77c665a4267475508503c29aaaf6e530b19b703a5c744786df6f1dc4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 893.5 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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 56f11eb88834b75e1a3c286559728e8eb3d878528d7afb7d6cbafa2d6b98e8ec
MD5 c228deda9399331208d99282bbf15275
BLAKE2b-256 625fae855279b857c05009bb6cefe6e1a04b2df884ee33a2f70fdc5536e7831d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 848.9 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.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 abfa0062db4c841c921edb4142a5f3b3132f4bb8a93856ad74287ec47b831749
MD5 1688afe7782cda26adacf9e7a2849199
BLAKE2b-256 28af71aad9f69dbb290e26c83ce178829b8c3782b041d2d29cf2c9e18bcb5cdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37ea74ebe32252a1293ffe1377cc5822647bf2bdaa8b187af40fc77306bdad94
MD5 eb0c9a86114b28e676bfaecf38201b9d
BLAKE2b-256 da102cd315563bea1a42d60add325cb406c3e3c3909b061ca86a0dd054562f73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3885e8f826920a5c9431679c54981d6337e564e00e332167ce71be61e047097c
MD5 0a9304b2f24f54186389976218466047
BLAKE2b-256 f346e629eb18761de4aadecae54e78d3b187e0ff859b9361e03d2383e644952f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5837ee40dbdf68c0e06586e4878c1b75c21c9e82a77f095539b8d3d69006e52
MD5 71131de51b67123d5334f034574f0531
BLAKE2b-256 2de99d6c0f32ce9fa63c40e308e04c409c7e5b3013b266af4df32df406d65535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1dd6d7e8321af6adfab1f8997f29b857f820e2154d4fc408d33b684ccc614a06
MD5 b3fbbe91e7bc9fc1b30d99a34a70be90
BLAKE2b-256 8936b4585a518d4fab91a59dadf9717da924f96c78da26733c39a4a597cc42d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 875.0 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.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6708987d412bfac8ac12789b60e1f8b931c12d0bdf1ad973825d54d0e54ce06
MD5 18e4d29bbc6e580ef500c293caf7f5c4
BLAKE2b-256 23031c2750896394baa926b57c79c5242a2a9be7758bf5d4ea6d1d8b5ec84e94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c8c5ecd386898bd8fbf70671d09eb6f95edb7035ccd64cb2f9826f562674dc1a
MD5 dfe104173ced3311389da0de62bd4766
BLAKE2b-256 897c462ec6d3a3942b04fa62a3477c59e12e30e6bb4bf3e371bea3ef81c7260c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 893.5 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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea4b04536e7ffb84179bc27d75ab2671d29df7bb9969a473082e845796033fb1
MD5 4737249f463d0a425c3cb24417b5bf60
BLAKE2b-256 05ea721826279da53abaed1b4bc3df94c56565160eb242a80444e05dbfc506c8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 848.6 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.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b2abb4d494ed986f3c8f56fd7145e786c6cfae3b2984a8e7965630219ad2f19d
MD5 10e2b843ac25e2f345e69806d7ba657d
BLAKE2b-256 0b82d682ae8e2305ffb1a52223725ef8f766eef462c45f46025a93a99294a888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f6f37c83920fa00e5c2b44e5f1377f1ec4f99378e68a259cd71b080ef033af8
MD5 663221285b210e56da47917dd78fb0dd
BLAKE2b-256 bad01d9758300fb709bf540f4fe15bdfdd605fb8db931441c24a99d6335fd9c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8aa734d9dcc2091d9b143f86c11d63708fb60f0252a82f2f90a0599bc40098d2
MD5 3809850364cefcba557b02ced232310d
BLAKE2b-256 75e571b07ec66259ad6fd62bebd053a81e3f1a35b5ee53283d65c35c58858618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f754a861e62cbbfa1650724825284f64ad425bebad49fb85d741d0af9fa6e87f
MD5 1eeb0013adad0cb898a55389915e7848
BLAKE2b-256 3cd9b4b994807273d70fca09f7e2e0893e4b255ee536336b4251a50bbbd2ee01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1fb698a3d570fa16a54dcbc617d3846e0a08fb54628e675a3d4d1ac199ee436
MD5 af97a559b1b657ae0f192574712817e1
BLAKE2b-256 25261f2bfbd0d69d716c426bbb68ed6edfc53a32e176afd9e24625a807dc71ab

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 875.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.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d96edc567299cf66b95b0efc025b3d6872d2c6545dff5f447d01bd33a913c4ad
MD5 cdd60cb1a0641273660704bf68ccf7fa
BLAKE2b-256 6492bb9000f454a928f64600c5804fdc82c3f355d2a9ed79dcba590234d6e1df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 11bea7efb5cb00791f739e5a0382358a28d1a77daf5e2e8838af1fb8797effcf
MD5 e9013f3aba3e1d693e0e8bbb2b62663e
BLAKE2b-256 c95f5f50d37aedeaf684a1365945db454f8f2b9fc96ea213f37181b10c420e13

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 895.2 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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7dfa0b2bdac0d68cf3db0d5a8850ff6d6ff3a59f82db3cf58b7728c8cf7eb5d8
MD5 1d58290e2275656c78df0dc4ff2e1939
BLAKE2b-256 9eb4b82135464129bd0458a4b5bc6867eb950eb4e90299fbc8f9ed8b0ee39ee1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 25679d89a0114415290c5870d74ba9a1503e3655fc5dc094535571afd07beb33
MD5 8573c7b1b7fe063de7de7e46f50cd8e0
BLAKE2b-256 874a7fe8f8026854e1abe98cb4007eb4bc1270013995c086333e2a7d323c11ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for wnet-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d0db68f472fd0117fa8a8c8c22e0a8416bd03a4a699934458d4306d63fee493
MD5 55bbee1019806f948f9fb474de5c4ac1
BLAKE2b-256 427550339d07472f3261cc52df5aa0b4e5851916db979e4760d47178126b19c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90778d7068f8a500a310fa09d7ba4d282244e77f7652409c1299f89a7e6c9045
MD5 847b73592b4f752d23d114fe5ca499c9
BLAKE2b-256 6a5e39000113d19d6e247ae88a2717bb602fa6e69cffeebf0596b1b492901865

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 282df26748529f1073978d8a88dae3b0510593fc81b76f25efc251209ea4cbbb
MD5 06feb90ec64502e7e13c1c8289e2ba3c
BLAKE2b-256 82d4768d6add2e8b2cf7df56fbf9b1247c4f4bbc4c7d18c911e0d60f314c6efd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 788eb893d070ca7ec82efb35640908bb23eb93737b11d65e900fcd94b79eb02c
MD5 c8b5a25366ffe05ee63ada8800246fc5
BLAKE2b-256 157b8bfbb6fb53e7c7f96c9ccda20ae30b00749bf0ea8bd72a54f5e957e6d48a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: wnet-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 875.5 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.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204df98b805537b04fe52af1e5da1915bb9e74b2bd13b6f6920eda81e7bf54dd
MD5 332929cac9a8616d3266f996d0b7ec08
BLAKE2b-256 c98aad0489b40a3cd4a6b56f2badd10becc61e1c7dca57ef6f6115cb1c68bd2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for wnet-1.1.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 980775e98a26e5d30a8f83c399c3d7d234cf1fbc14f75cb34ecd5273ab468920
MD5 645d2029004fc9f7f05f2d629c612ec1
BLAKE2b-256 9d9f41e01e0716ae6e1e2d78c0d3f10fd66c67d87d21b27598bb0c5c761763cc

See more details on using hashes here.

Provenance

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