Skip to main content

Python implementation of spectral deconvolution using Wasserstein metric

Project description

wnetdeconv

Spectral deconvolution via Wasserstein optimal transport.

Given an empirical spectrum and a library of theoretical component spectra, wnetdeconv finds the mixture proportions that minimise the total Wasserstein transport cost between the empirical signal and the weighted sum of components. The inner problem at each set of proportions is solved exactly as a min-cost flow (via pylmcf / LEMON), giving an exact piecewise-linear objective with exact gradients — suitable for gradient- based outer optimisation with scipy.

Supports 1-D spectra (NMR chemical shift, m/z) and higher-dimensional data (e.g. m/z + retention time).

Installation

pip install wnetdeconv

Dependencies: pylmcf, wnet, numpy, scipy. Optional: pyopenms for loading featureXML files.

Concepts

Spectra as distributions

A spectrum is a set of (position, intensity) pairs. In 1-D (NMR chemical shift, m/z) use Spectrum_1D; for higher-dimensional data (m/z + retention time) use Spectrum with a (d, n) positions array.

from wnetdeconv import Spectrum_1D

empirical = Spectrum_1D([1.0, 2.0, 3.0], [10.0, 25.0, 15.0])
component = Spectrum_1D([1.0, 2.0, 3.0], [1.0, 2.0, 1.0])

Transport cost

Matching a unit of intensity from an empirical peak at position p to a theoretical peak at position q costs distance(p, q). Peaks that cannot be matched cheaply are instead routed to a trash node at a fixed penalty.

max_distance caps the farthest match considered; anything farther is cheaper to trash. trash_cost (or the asymmetric pair experimental_trash_cost / theoretical_trash_cost) sets that penalty.

Precision and scaling

Internally all intensities and costs are scaled to integers for the MCF solver. The precision parameter (default 1e-3) sets the desired relative accuracy of the cost output: precision=1e-3 gives ≈ 3 significant figures. The same value becomes the ftol stop criterion for scipy optimisers, so the outer loop stops as soon as further improvement is below the resolution the integer network can deliver.

Solvers

DeconvSolver — unconstrained baseline

Solves the network at a given point and exposes total_cost() and gradient(). Optimisation (via optimize(), L-BFGS-B) minimises cost with only non-negativity bounds.

from wnetdeconv import DeconvSolver, Spectrum_1D
from wnet.distances import DistanceMetric

emp  = Spectrum_1D([1.0, 100.0], [10.0, 30.0])
t1   = Spectrum_1D([1.0],        [2.0])   # optimal proportion: 5
t2   = Spectrum_1D([100.0],      [3.0])   # optimal proportion: 10

solver = DeconvSolver(
    empirical_spectrum=emp,
    theoretical_spectra=[t1, t2],
    distance=DistanceMetric.LINF,
    max_distance=10.0,
    trash_cost=100.0,
)

result = solver.optimize()
print(result.x)   # [5. 10.]

You can also drive the solver manually — useful when embedding it in your own optimisation loop:

solver.set_point([5.0, 10.0])
print(solver.total_cost())   # 0.0
print(solver.gradient())     # [0. 0.]  (at the optimum)

ConstrainedSolver — total-mass equality

Adds the constraint Σ wₛ · Iₛ = I_emp so that the mixture exactly accounts for all empirical intensity. Uses SLSQP. Drop-in replacement for DeconvSolver; call optimize() the same way.

from wnetdeconv import ConstrainedSolver

solver = ConstrainedSolver(
    empirical_spectrum=emp,
    theoretical_spectra=[t1, t2],
    distance=DistanceMetric.LINF,
    max_distance=10.0,
    trash_cost=100.0,
)
result = solver.optimize()

Key parameters

Parameter Applies to Description
max_distance all Maximum peak-to-peak match distance. Also sets the sparsity of the internal network in 1-D.
trash_cost all Symmetric penalty for unmatched peaks.
experimental_trash_cost DeconvSolver Per-unit penalty for discarding empirical mass.
theoretical_trash_cost DeconvSolver Per-unit penalty for discarding theoretical mass.
precision all Desired relative cost accuracy; drives scale_factor and ftol (default 1e-3).
scale_factor all Override automatic scaling (bypasses precision).

Distance metrics

From wnet.distances.DistanceMetric:

  • L1 — sum of absolute coordinate differences (Manhattan / taxicab)
  • L2 — Euclidean distance
  • LINF — maximum absolute coordinate difference (Chebyshev); dual of the W₁ earth-mover distance used by masserstein

Loading MS data (featureXML)

from wnetdeconv import Spectrum

emp = Spectrum.FromFeatureXML("sample.featureXML")   # requires pyopenms

Architecture

wnetdeconv
├── Spectrum / Spectrum_1D   — data containers (extend wnet.Distribution)
├── DeconvSolver             — core: builds WassersteinNetwork, exposes cost + gradient
└── ConstrainedSolver        — adds total-mass equality, uses SLSQP

The underlying min-cost flow is provided by wnet (network construction) and pylmcf (LEMON-based MCF algorithms, including warm-restart Network Simplex).

License

MIT

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

wnetdeconv-0.9.0.tar.gz (16.3 kB view details)

Uploaded Source

Built Distributions

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

wnetdeconv-0.9.0-pp311-pypy311_pp73-win_amd64.whl (48.5 kB view details)

Uploaded PyPyWindows x86-64

wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (50.2 kB view details)

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

wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (47.8 kB view details)

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

wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (42.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (44.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

wnetdeconv-0.9.0-cp314-cp314t-win_arm64.whl (46.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

wnetdeconv-0.9.0-cp314-cp314t-win_amd64.whl (52.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

wnetdeconv-0.9.0-cp314-cp314t-win32.whl (47.7 kB view details)

Uploaded CPython 3.14tWindows x86

wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl (511.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (493.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (53.8 kB view details)

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

wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (51.1 kB view details)

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

wnetdeconv-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl (45.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnetdeconv-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wnetdeconv-0.9.0-cp314-cp314-win_arm64.whl (46.2 kB view details)

Uploaded CPython 3.14Windows ARM64

wnetdeconv-0.9.0-cp314-cp314-win_amd64.whl (50.7 kB view details)

Uploaded CPython 3.14Windows x86-64

wnetdeconv-0.9.0-cp314-cp314-win32.whl (46.3 kB view details)

Uploaded CPython 3.14Windows x86

wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl (509.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (492.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.6 kB view details)

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

wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (49.6 kB view details)

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

wnetdeconv-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (44.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl (47.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wnetdeconv-0.9.0-cp313-cp313-win_arm64.whl (45.6 kB view details)

Uploaded CPython 3.13Windows ARM64

wnetdeconv-0.9.0-cp313-cp313-win_amd64.whl (49.7 kB view details)

Uploaded CPython 3.13Windows x86-64

wnetdeconv-0.9.0-cp313-cp313-win32.whl (45.4 kB view details)

Uploaded CPython 3.13Windows x86

wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (509.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (492.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.6 kB view details)

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

wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (49.5 kB view details)

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

wnetdeconv-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (44.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wnetdeconv-0.9.0-cp312-cp312-win_arm64.whl (45.6 kB view details)

Uploaded CPython 3.12Windows ARM64

wnetdeconv-0.9.0-cp312-cp312-win_amd64.whl (49.7 kB view details)

Uploaded CPython 3.12Windows x86-64

wnetdeconv-0.9.0-cp312-cp312-win32.whl (45.5 kB view details)

Uploaded CPython 3.12Windows x86

wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (509.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (492.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.6 kB view details)

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

wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (49.5 kB view details)

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

wnetdeconv-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (44.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wnetdeconv-0.9.0-cp311-cp311-win_arm64.whl (46.0 kB view details)

Uploaded CPython 3.11Windows ARM64

wnetdeconv-0.9.0-cp311-cp311-win_amd64.whl (50.1 kB view details)

Uploaded CPython 3.11Windows x86-64

wnetdeconv-0.9.0-cp311-cp311-win32.whl (45.7 kB view details)

Uploaded CPython 3.11Windows x86

wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (53.0 kB view details)

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

wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (50.1 kB view details)

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

wnetdeconv-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (45.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp311-cp311-macosx_10_13_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

wnetdeconv-0.9.0-cp310-cp310-win_amd64.whl (50.1 kB view details)

Uploaded CPython 3.10Windows x86-64

wnetdeconv-0.9.0-cp310-cp310-win32.whl (45.7 kB view details)

Uploaded CPython 3.10Windows x86

wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (52.9 kB view details)

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

wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (50.0 kB view details)

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

wnetdeconv-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (45.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp310-cp310-macosx_10_13_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

wnetdeconv-0.9.0-cp39-cp39-win_amd64.whl (50.4 kB view details)

Uploaded CPython 3.9Windows x86-64

wnetdeconv-0.9.0-cp39-cp39-win32.whl (46.1 kB view details)

Uploaded CPython 3.9Windows x86

wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (510.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (53.0 kB view details)

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

wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (50.1 kB view details)

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

wnetdeconv-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (45.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wnetdeconv-0.9.0-cp39-cp39-macosx_10_13_x86_64.whl (47.3 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

Details for the file wnetdeconv-0.9.0.tar.gz.

File metadata

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

File hashes

Hashes for wnetdeconv-0.9.0.tar.gz
Algorithm Hash digest
SHA256 d292db9cf6e8a810e36d9a78c15df26ee6ebabb45348873e3aae1886ffdc8723
MD5 c599579174a8ccd65bee99c4dc0ef5fd
BLAKE2b-256 eb9e22714acc1edbe4ddf711e703140b5c0a90147110c3b1360250f48f4d2c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0.tar.gz:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 86d9aa655b4bec3d818baffa15809763408674228b21fff4551f64410bbb94d3
MD5 b47763cd47391c52791b6460cf3b4a5a
BLAKE2b-256 4a30d07643e75c5317e83b896191ea72632a5ddd5b54532ef7acf185bd23f223

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9588209a09838f764cd3fbc149b77b75d49b73edbeb3bc2ee7f40040ade6db49
MD5 26ad62f0cefbbb7c52c98bf1f8220c82
BLAKE2b-256 dda9916513eddb79dc7de680f83c63cefb8eb3c03240557b3a7d12500cd4e7b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f0cdcf2e6efc8779b88620ae316733beb276575dac37bd3dfa6978e14742d24
MD5 ed357ef3a0bc7a4844afea6492529e74
BLAKE2b-256 f3f2547f380533e209b2d327c64469e9a5ddc7d76867665031a68a6451351fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d98fe3a2a922cc4170c1efed6965daa828230a69c0d7275b43b8a4a8078a73c
MD5 bd1dfe853b066d8cb2141bbb1a9fb1e3
BLAKE2b-256 14cb15fb2b111e5e01b8ca4fdd89bcdafe8fd529a6fb64488f71a624966d1f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a68925430034153fbeac615da7480907b427a0fcd015735c52a89a114fe90601
MD5 3a1b318963b4defc28579472a5cd2901
BLAKE2b-256 0acc8a6618861b5ee7c0b1e3e1af35cc88456643df59e122e6dbf2b705d1b00d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 46.9 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 4e27cb63b8134a4fd94cde9a9011ce29c10048ead91d6fb5b46edd0ae603d61e
MD5 0d91e8c0de1dadb0ab7a3836410fa714
BLAKE2b-256 8918020a6ae346d264437347bbe78c764a0fd1e54bb0c9263b1e7e6dbc087199

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 52.4 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 wnetdeconv-0.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c32ee2f510854c9b440d263ba0f15d281a64cc310cfe946caa9bc53bfa6880ba
MD5 f50b3db418d30b9cdfe1c85af81fd701
BLAKE2b-256 22dd1dae0057cea84512e6997755f49220e84dc2799db29dde1f480312e3e2a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 47.7 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 wnetdeconv-0.9.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2ce0b634835e1c13dff001ec3ed0841d73d064cac60c6a92b423089e7429c231
MD5 b2bff9b50a484a1a8d9a882a5389e723
BLAKE2b-256 921e4c094be1b804f5d624312f39b1bd9a25c15447c642ffd0edbc6bbb125ba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5059c27057d48bc9b33c90c32aec8f85f14e3866132257f905ce7f427aa1f32c
MD5 09f3eb7d2072f822999687136b7f8139
BLAKE2b-256 4afd66a70fd55a1a959da1859b5cb43dd71171a60296404623c5cbaef6dd22a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e4787dc3b73a20d18ddef2f138272843f21c567869b8f6764d216fe7a424d80
MD5 8c293d0fa260ec049bf43b13be106e73
BLAKE2b-256 897e51e1f042ae7ef00fe1fc596792245c389edde55f0bbb5d693bc70b66da99

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 72adb1aaa68e613f46b0990a1ef0d0b9fb0fe54d42c74af7f5843018d2672b9c
MD5 6c7dda4f834bd8b2996af7750739dbb4
BLAKE2b-256 c87ed92c5ca32bcbabb4c1d86965c9ca44a752f2700fafead83f92fdb2f6ff02

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7e9a6db6947a9e21f9e2c2899220042328fb490615ba0b19f31f1a79cab4088
MD5 18a37d97a9613e54d72c9a5cffadb0f2
BLAKE2b-256 76e5c30b1af653f6fd6f02c90fe570769de555a51c79de545a9941113a7498b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfd9b6530c42e0ca09055f155e6f0ee67bf8ad9d6244c7d5269b455d1158a866
MD5 45f47391890fd877e5fcbbd7b2feb3ee
BLAKE2b-256 00735a4cd75360cd4ffc025c26b7c3414a0b3372a535e39ef395b0a3a6bbbb73

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 27d88475e5702c13bd87f2e9e428795d7384e69eb63444e5a3bdbee0c04ebdd7
MD5 b00bad255326c6b88b1c124efa67dedb
BLAKE2b-256 4c664c74a40c86137f79fe9e4b6c09214479c12c8c2214adc1c5895bcbe02bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 46.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 23670f54dc5a8c0680ac98e3114ca9702e3f730a16e4665ee553748b1854c85f
MD5 ebe16e8e4bdb748bd3290e151442788c
BLAKE2b-256 a0f50976af9036a38134876667ba245bd4016abe89c85624c3ff3276fab2734d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 50.7 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 wnetdeconv-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a3ca62da0e3957f884c655f7d22216285d66403d7e40366b41fdf45c5fe1e443
MD5 4f4fc4c8adc20f3abe7bea46a729a31c
BLAKE2b-256 07c6951f6b3845ab33490c73a7edfe3bcf7c919e1948543536613f134c726d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 46.3 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 wnetdeconv-0.9.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fbc2adeae9f3b42cc3c713b67893a16e14d9225a249804a11afc83b308a834ca
MD5 833836806d476328a918309e3fd9fcb1
BLAKE2b-256 40145cd9ba07c030c6c878f92d1714925cd8e5ec12ee6462e688da010c34e57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea2433c5ce90a4f7cdf642e0cf8a4a93a57067e403c6918b7e5f895008020e89
MD5 5b7f921fdd10a50ac7552cef7267efb3
BLAKE2b-256 7d5ec23d81ead2b455802758b475dd5614b75f79f2b82d14a69da7d786bdda81

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd60a8d5530069ce0db2e101b693453b7b4985c1c3f77065e9d9fab50a4ec20f
MD5 4384bd89b5ac5658ae86e55cfa73817c
BLAKE2b-256 ed10eb733be527263858f491442a2f72ef02565eca090253c72314de744277b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3cae70d2c3d0c987cf7b045fe2c1a71f96a3ed32367990a0bab46500bd5be1da
MD5 de7b4d0cf5dc35a271ff2ed23a161944
BLAKE2b-256 6b9af97c4a60c33350423180526664b9d94398f4c5b45330e6f4b18635eed504

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 976c63e0da9f6b706d40a549096e13f4444d6764fa711a06c7ea425f7595367b
MD5 145efc83632ff12e4fb149e6a6526589
BLAKE2b-256 35567f5e0bbb7dccdbedab46fae52e654e9b279ba878ddcf7b3896ea12ad576d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88fb6f255b6b189796d3072efe51b42d354e230c9dc74870b41fbbfd49b9d49c
MD5 70b3cf8ddf5eb25d526df82d7f506a1c
BLAKE2b-256 6d86b5f8209a3ca2b35f49bbc730eef4662c79bf1939e9d66797b3b90159eb69

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 94cfb40f6cc7ee6b536e5f20b79dd4c970d7468fa8f2c3cd244b306e4c98edee
MD5 b012810ac28d2542376dbbc880cbb27a
BLAKE2b-256 2cd6e24b64a98a34611d73f7bb949e8d653adc065f0baf26a5370d7f82c3c653

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 45.6 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 wnetdeconv-0.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3eb545eda16d853da36f034283342a41882075af6bff9ffb87cdb0333ca8c15e
MD5 11372912c222990a8d96e0d619b15528
BLAKE2b-256 f5ea1afd82936fe5d8fd6a002d06de1fe1a7753163011d9f720729658cde25a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 49.7 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 wnetdeconv-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28b79d765d5d0ffcca73d197ec8b572be9b42ca70b666a27fbb5bb149acff672
MD5 3ef0f1cc8342a91751366e93c38f3b3e
BLAKE2b-256 dd819064e739d5aee56ab3658e9a766e55ccfa1f5b9978a885a53a6422df4c15

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 45.4 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 wnetdeconv-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bc8d34b778ad7028901e00efa8cf24b36d647a8c9cedebd0f7d432575fd2fab2
MD5 734f77add14a06ccfa64af6258118c92
BLAKE2b-256 f78a15d7b76b1cd5f65bd4de72d04e476cbf7653fdce129d9d82735e1fa1d4f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f89f28a54f96b16c829a5ab675334af43431e0413e5280fc6ec6092a3f20f052
MD5 da7543b692e07c4bb3b8bd28cf3928f7
BLAKE2b-256 9611fb681ec3c3e06fcff0d7301d648a291b472a7ac0bb43f366897ea38de5a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38d40e4b4a7243e466dd07e00efae96b8f2af4fe10210cf0a849852ae4f7c224
MD5 8c28547746c63e49d9f327f758c84334
BLAKE2b-256 bdbc3849140974ab42e54cfb579681d099e85a225425e67c7d60719628941eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7848bee1f8ee3379b199aff69955818a3eb2ffffeba8a2f8205012440193d395
MD5 aa7cc7fea59c28ab1f48aef379b0a571
BLAKE2b-256 9adeb6538a4069ca7576b0547a89f5525eab3cb4e09e46f9f098764eefcf0062

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ac2616c082fe13caf3c7efc4ddc7ad3af30338267f4c9ba34096ff6ea24bded
MD5 932009bd56339238a0181301c4e0db91
BLAKE2b-256 4dcdce4ba874f905d59d1eed7986f302a464bc51c64592ecb2b1caeb3a3ee648

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e42942c57a397c44d216aeb63171c1d19a866520d764a417c9144a5a79e422a3
MD5 70f0783ea189e25bc3e391a28fa9c2c2
BLAKE2b-256 bc71b78d5ebaca02380485c6a87dd3437cd0a6519d1db211e492beba14fe5269

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3000639a92b31b0746c3414d5cd15cde889141aa9674c445ba3b984b48e71f78
MD5 828eebe03c2856a7d9bb234b3e996a2b
BLAKE2b-256 14bcbecee5d36e17d620c7f1e59991c47720552099078baeccb851e48ce2befb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 45.6 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 wnetdeconv-0.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 32c0583495c76077f433153384d67bc04dd68978f98d9756a1b2c3d3fb152f82
MD5 39d40424506fd7e81a2477b61df019ea
BLAKE2b-256 ff4bde28019a64ed5147a2ee6b685142b5a6044d44199e27d04663a863f53951

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 49.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fd27dfe07233f5a3570ead74a2dced72f957df7621064af5063ab3cf7925d1e
MD5 fce5743160058beaec18c6c6bad9acfd
BLAKE2b-256 c81b59f81b14f57e54faca3f3d3e1922e63d72d42a48594e21e57a439a777068

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 45.5 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 wnetdeconv-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 45533428c97735448022df1487cb5a8d6b2c7faa3868d51877ac247f997fa750
MD5 5e665352004f5da3681f6054d45ea11b
BLAKE2b-256 46aaf4d4d08bd29248cc3dbf21ae30b4e2e95cceb0063be01d3d9d345e940fd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e01fcbaf55d797d3dd32dc09c51013fb79cad94c7d7cfe287725a8a7c7808b13
MD5 7bce0b99a4699881e29762e92e9112ec
BLAKE2b-256 c2708018d6ec4f4bb3f5430c2845f3632b0d35ccabc769b749fbcfa971db551b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b04ef46e14e19e6544b55908b30021974588f59d1c1c967c18e06cfbeb57d181
MD5 35005fa7f3e8d8e875f5220bdd3b9d13
BLAKE2b-256 580137bc50f7c8610b53aa676ecb3a40a3c906b11a917f535f6fd03cd2ca215e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dc0ee94eae057e571f20e7fed63d24b281fa8cb2c3e32670f2449262a22bc5fa
MD5 5d6bfeb61d7e141c2b1da3f8880e3fb5
BLAKE2b-256 890ef5fd440984917fda5048f118c04a8a28edb6cd34eb78496ad9ab7213100c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca2c2b9c7be7c8aa8a07b06c70339ba03c48f233a469989f3717e162866bc638
MD5 23516f57454009cdce3dccdee35cd2fd
BLAKE2b-256 5b594d8f132479a69d7c5fdbb23a144c91cb5b3609288fb63eee9326ab941f5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcca644f87777f857b5db8efcc0b31ff5e6d3707392f9fc9ff0344c59a622ffe
MD5 2a9194d224dde0d5824450424460250a
BLAKE2b-256 665090b5ea7e2f905e6d94cfcf55cf5f6e1c4b8e7cfa7e9f76b93bfdee7eb1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 58eb678f7e5d9ed1d16380c670501572a754509ccf3947e0cb11871730e7e032
MD5 a97cd46251f02aed4111612a8c19018e
BLAKE2b-256 3b98065714452f9b9d850ef933c8e06dd8fe0e09af1ddd98fcd3d2876fdec966

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 46.0 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 wnetdeconv-0.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 82b6f49fb48ee146b79b94ced3659d1325fa680c887b70034e759bbf6848ae2a
MD5 0e54dad45792ca3b7dabf0b0603c993e
BLAKE2b-256 cda27b26851230f5cf0cc273776fa099fd79a851cb362f9181a91308710048fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 50.1 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 wnetdeconv-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 352cd72657e3e1ee0377b0de09ef6896f00b7de569364e98762719159f24e6b9
MD5 a47c29085025be3ca0b1a870d5c0a8d7
BLAKE2b-256 51ad2d22a0d41382e8c5feb887e74ca71bb62090fe539f3dfddaa68dd7dc454a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 45.7 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 wnetdeconv-0.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 78143c02ee155c362329dceacff0bd17997fc20495b09df56843f8cb5d1939d3
MD5 71f3f512c74cc1734c3add1bcfb9677b
BLAKE2b-256 b6ad82a52885cecd9f128264e19b10784edba16ee006a80691bf8efc65c16024

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37d50164e08e3ebaf12d5d0513e76b6d66277d44990770689edbacbf939ae42c
MD5 cfeb7b67411fd18659ba4ec3f5adb45b
BLAKE2b-256 3d344a1433d2d52078c0fbc271e10498ed52b314c0c4b5a74f653bbced265d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ddccc9927211ad404f6ef7b6dc4ff942e112fa02f499894bb18cc33f21e01acf
MD5 db2a71171a5910e6e908ddc7c3ad8a92
BLAKE2b-256 b2e6e5734a1c72b94ff4795d2c9984d2b094df7bd2e330623fd3665024ad55ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f60024519a55d243c914dfb8fe870be08d8b12fe247d769bf49ac43c0d71a28e
MD5 d8476271c294b7c0964f2efe1f9d941d
BLAKE2b-256 814f4fedff1cdd8a6e282251ed25ca41100d94e699931f55dd3aba9a9829b4cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 898244ee251faea2d0b0f25e118b5c36590d5ed2e48b75405ca6c25206ea6ce8
MD5 2da9603633a803758bb509f46d9c9467
BLAKE2b-256 2a709612e507309850f889bacc918bf0d00b0a84e5c99bc3250cadbc3bb8471e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b424f2a243ad4c810d3f9124b86c626880795352825c2caf9a43e410cc2ff7
MD5 6016bf28bd028096a50111b04d9f4f09
BLAKE2b-256 7512f8be941c8f9878d3389d24b925dcb884100b5dde217f5b2db7514d33b157

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 17e9929146e295e7b683fdf96d2c16d397fa4d8992d338bd03b485706850c47d
MD5 d9aa9c2f06236fbeff260d8173751219
BLAKE2b-256 963ea867f85e167b8e1b01ec248638c2bcf87a53fff81539dd2ef4f9b5358375

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp311-cp311-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 50.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee3b13263285edeeaa6f543fecc81299d4188c72422573fb0cfbb1c6cf297667
MD5 240b91f50815f62e1cb0a9d4401f8865
BLAKE2b-256 59b1f8fe337a9c6fad9e4275fab3feb305e110a43af84b758b2063d1c7646e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 45.7 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 wnetdeconv-0.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4f7f361e5c05a56d212fcbcac01e823d350a3e42bc2caa5458f4f59a2afd63cd
MD5 c0fd128a3b0e0e7f221376b91a5a2041
BLAKE2b-256 8f0dbb2b18084c84123ae02b4e95ebe8d5a23b8ea327b5d60df6757fdcb14f64

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 945caf196d50ba75ad4e4a80df6f95472dd5f3abd2c27f2b1fd4e215c4343015
MD5 da9b620e8dc393c8faae2fbf206b9531
BLAKE2b-256 95a88807c114c0abd8c7ead61ffda05cfa4543fe950a265f48c1f5184ab59623

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98b1d6ed03361edb7e842f0e0084a4e8fc6e0dd31dba33d9106d7a0134f174b8
MD5 b64252da659c860fcadfdeb83fa0bb21
BLAKE2b-256 d7916284ad1e534ead495a7d9cd3d88306afaa961676ee8d49914c0dd988cfed

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb5ccaa86390bd8b96b0833b466e1e701573f0669d1a08be0b00e67b30531a89
MD5 e4e3b8491b57295d80b7062abc1d5558
BLAKE2b-256 7645d3b10fee127b623719ecc205bae68e1faf47b2898cf3d10609fec7bd13e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 539b77253c90061f575a5e3d0df5df420f74e6c69d61851dcedf47690b7d522b
MD5 67ecdeb2834a2996956ca13e2715e4a4
BLAKE2b-256 4fba604a94fcbe9f89c7288ae272a225b3c83b3fb1fa531482dba10bd7296100

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c314e02186de9a3d2d7e26270d9bc8ca11be130249a5ba3c1364dc1083dabfc3
MD5 28b7ee12ad3df226775ad40d234893ed
BLAKE2b-256 070a0057992b53cae1cfffa6ac1df36480b316e2804bd14e6311b0f5a3fd1f90

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b751189c5379af34d026142e702b69788d203346567bed89622b85c6b19b8fb
MD5 13f6f78c6a8d24d42777a099c74c7bfc
BLAKE2b-256 416c7e985b9f6010eedbac4352cf32d414d38479574b22192106daf5892c003b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp310-cp310-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 50.4 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 wnetdeconv-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc89a1306cd87c93cd197e94e582b03efdfdaac72693853e6f0e7dbd6623c54c
MD5 787aa60df57adcdf2f1a40e4b2b94dd9
BLAKE2b-256 71aa284a1d2124af824002047259fb104e47356199c80715a1395e8a0dba0d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 46.1 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 wnetdeconv-0.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 279ef55fada62e077d423d421f64f5555b024fd06729368fb97640cc3aef0b6d
MD5 20171fdd340331cd8ba3ae7c5c48d6a2
BLAKE2b-256 32ccf1b798e50f57d88793dff26017a9d2d4549128b44127d994f2169894d967

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bbad9c4b4e7120d1f26e5ccbc17e2f548186d61fa817776d9e055d743815c69
MD5 2ac6d8dc565d7d8928650360eb44b6cf
BLAKE2b-256 a68943580674af1fed5ed8d9de4557a5a6def66209ebd13e293ddbc4d0c2991e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3514c31dc64db8447afaa488ede02cb21d44a4bcfd2d3d2c55230bbcde8462e3
MD5 aef165a4d8823067f9ee9064a8b8a075
BLAKE2b-256 ef332792322d3f0e76bcea7774b846d6e3124ebab3a5b16e40cadea40f716894

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e59b0391a4c9e9ca69e77bd7fadba970370217e073df4fbef0916a82ac9d3e3e
MD5 16aa30fc95659e4c16c34d09355b2b6e
BLAKE2b-256 fc96d923772c3fc1e80f3eea45efe3b9bb4f3eb4e88a90ec268a54bf495684d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0198dd01913e20b6137b6e0917dd7551274adcf5d19fdbadfbf65b99181970ec
MD5 ab33b6d146aba9dc2ac98019ded40ff9
BLAKE2b-256 65bbb093695583a1ecd9cebe6bb48e7ebaee3c3697bde8c920d9a22fdf61a73c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fdc59788430f63d54e37bdb8475cd5f753c2491c2e39821513e778e217b5356
MD5 c1512dfbbac4342c4636a63bcaa5cf20
BLAKE2b-256 c0d0ce850f56adbbb831e19fc688a8db7788c22721ef3f19b8bd4b98e8191e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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

File details

Details for the file wnetdeconv-0.9.0-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.0-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1826e476584d1bec1e23509ac90db3459ec97b1e04aae5a9a2230cf7f9c0483b
MD5 fd0239f04a5395c627dde7e5cb833855
BLAKE2b-256 9658a882c5184146682e5c51b5131fd5b188d864b35bc9a95373ef4455a720e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.0-cp39-cp39-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on michalsta/wnetdeconv

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