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).

Related work

Sister paper: WNetAlign applies the same truncated Wasserstein / network simplex machinery to MS and NMR spectral alignment:

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

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.2.tar.gz (21.2 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.2-pp311-pypy311_pp73-win_amd64.whl (256.5 kB view details)

Uploaded PyPyWindows x86-64

wnetdeconv-0.9.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (57.5 kB view details)

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

wnetdeconv-0.9.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (55.4 kB view details)

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

wnetdeconv-0.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (48.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

wnetdeconv-0.9.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (50.1 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

wnetdeconv-0.9.2-cp314-cp314t-win_arm64.whl (428.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

wnetdeconv-0.9.2-cp314-cp314t-win_amd64.whl (249.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

wnetdeconv-0.9.2-cp314-cp314t-win32.whl (247.0 kB view details)

Uploaded CPython 3.14tWindows x86

wnetdeconv-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl (516.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl (499.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (60.6 kB view details)

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

wnetdeconv-0.9.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.3 kB view details)

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

wnetdeconv-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl (51.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

wnetdeconv-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl (53.1 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

wnetdeconv-0.9.2-cp314-cp314-win_arm64.whl (427.5 kB view details)

Uploaded CPython 3.14Windows ARM64

wnetdeconv-0.9.2-cp314-cp314-win_amd64.whl (248.8 kB view details)

Uploaded CPython 3.14Windows x86-64

wnetdeconv-0.9.2-cp314-cp314-win32.whl (246.3 kB view details)

Uploaded CPython 3.14Windows x86

wnetdeconv-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl (515.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl (498.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.3 kB view details)

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

wnetdeconv-0.9.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (56.9 kB view details)

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

wnetdeconv-0.9.2-cp314-cp314-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

wnetdeconv-0.9.2-cp313-cp313-win_arm64.whl (412.8 kB view details)

Uploaded CPython 3.13Windows ARM64

wnetdeconv-0.9.2-cp313-cp313-win_amd64.whl (240.9 kB view details)

Uploaded CPython 3.13Windows x86-64

wnetdeconv-0.9.2-cp313-cp313-win32.whl (239.6 kB view details)

Uploaded CPython 3.13Windows x86

wnetdeconv-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl (515.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl (498.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.3 kB view details)

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

wnetdeconv-0.9.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (56.8 kB view details)

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

wnetdeconv-0.9.2-cp313-cp313-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

wnetdeconv-0.9.2-cp312-cp312-win_arm64.whl (412.9 kB view details)

Uploaded CPython 3.12Windows ARM64

wnetdeconv-0.9.2-cp312-cp312-win_amd64.whl (240.9 kB view details)

Uploaded CPython 3.12Windows x86-64

wnetdeconv-0.9.2-cp312-cp312-win32.whl (239.5 kB view details)

Uploaded CPython 3.12Windows x86

wnetdeconv-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl (515.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl (498.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (59.3 kB view details)

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

wnetdeconv-0.9.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (56.8 kB view details)

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

wnetdeconv-0.9.2-cp312-cp312-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl (52.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

wnetdeconv-0.9.2-cp311-cp311-win_arm64.whl (413.9 kB view details)

Uploaded CPython 3.11Windows ARM64

wnetdeconv-0.9.2-cp311-cp311-win_amd64.whl (242.0 kB view details)

Uploaded CPython 3.11Windows x86-64

wnetdeconv-0.9.2-cp311-cp311-win32.whl (240.5 kB view details)

Uploaded CPython 3.11Windows x86

wnetdeconv-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl (516.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (60.5 kB view details)

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

wnetdeconv-0.9.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (57.9 kB view details)

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

wnetdeconv-0.9.2-cp311-cp311-macosx_11_0_arm64.whl (51.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp311-cp311-macosx_10_13_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.11macOS 10.13+ x86-64

wnetdeconv-0.9.2-cp310-cp310-win_amd64.whl (241.9 kB view details)

Uploaded CPython 3.10Windows x86-64

wnetdeconv-0.9.2-cp310-cp310-win32.whl (240.5 kB view details)

Uploaded CPython 3.10Windows x86

wnetdeconv-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl (516.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl (499.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (60.5 kB view details)

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

wnetdeconv-0.9.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.0 kB view details)

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

wnetdeconv-0.9.2-cp310-cp310-macosx_11_0_arm64.whl (51.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp310-cp310-macosx_10_13_x86_64.whl (53.2 kB view details)

Uploaded CPython 3.10macOS 10.13+ x86-64

wnetdeconv-0.9.2-cp39-cp39-win_amd64.whl (242.9 kB view details)

Uploaded CPython 3.9Windows x86-64

wnetdeconv-0.9.2-cp39-cp39-win32.whl (241.5 kB view details)

Uploaded CPython 3.9Windows x86

wnetdeconv-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl (516.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

wnetdeconv-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl (499.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

wnetdeconv-0.9.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (60.8 kB view details)

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

wnetdeconv-0.9.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (58.2 kB view details)

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

wnetdeconv-0.9.2-cp39-cp39-macosx_11_0_arm64.whl (51.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

wnetdeconv-0.9.2-cp39-cp39-macosx_10_13_x86_64.whl (53.4 kB view details)

Uploaded CPython 3.9macOS 10.13+ x86-64

File details

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

File metadata

  • Download URL: wnetdeconv-0.9.2.tar.gz
  • Upload date:
  • Size: 21.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for wnetdeconv-0.9.2.tar.gz
Algorithm Hash digest
SHA256 1fb2ed4e4fcf1d3e7a26aebef2f7dddd3d7b7482e0b4d6b15f40dbd3676a673f
MD5 c65c302c44f5b346d0bca7b11b5f6bc8
BLAKE2b-256 8519345342fe38cb7082d4e22ea92eeb073018a9bf6c1cd4895d927b8f82bf2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 19a35cfa59342c5f55775e12c1bcd06a5d8c37aa4c35adf6b5a50414c66d5084
MD5 8a5dbdcaf902c8bfb78318832bd1e12b
BLAKE2b-256 24a32f8359d3ca3011845af5fae29d795c78d3d0049ec54738adca959f0e1eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-pp311-pypy311_pp73-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da887f4533f3ddb3445e3f4a6331f82b1ffce512fabd24cf1186e681f9520f95
MD5 74ffc30c178447dc1bd2113803d4300b
BLAKE2b-256 e8a3751bd81eb59e9b48091a57dfb0c21e16906b71fe3b8a7ea549e2c9c9bde0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-pp311-pypy311_pp73-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a484ca4f933922f106f60e4430c507d0e8a3aa3fd7bcf91ea02fa31b6fe7619
MD5 d6eb390d26ce772fc1d816d86e19c5c8
BLAKE2b-256 84ca7c9ad2c6c7390c45ed5e133418566ed29afed4ef32e37e25fcd2cb9ebfe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b4aade9ff6fdb53ac71fe12f965deff3c35455bf82eba5bdf69086d6f519f3
MD5 2f9c7ce5978db7969c72051ddcc19cdd
BLAKE2b-256 698cbad7f8ca72f2d8bb61cf3077a39ded6ed89c1241f772d22200d9df0a40b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b0843237ef723d447bfabce10118f6d3c3541045a6d67ad8541d95df2680dfd
MD5 a0efb92ce37fce42f66795b8ac788463
BLAKE2b-256 8c0d4499b4b5cd8f2127bc61251cacc94d7057c45dac8a85ce40186e47b4e931

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 428.3 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3976d3821b0ed890c881dec62c9acf1979b09500db375c1bc0f7029748d484a7
MD5 2ff8f5b780f5a9495a08ca3bdd59cefe
BLAKE2b-256 68545e369f10d5222ed359fd95b0dbe7378ab9c91dbe9336238a98fd52b97b24

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 249.8 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e144e0376e4839b8b5dec0e1458e3ee2c9a39913fc9e88b79c7e084647b06453
MD5 c2106412ad4a29a61856c2c0ca8e5fb3
BLAKE2b-256 88f997695f446c05939f636ebac309bfb59041e8963c2ec77f8f69c7b56fdfa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 247.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 wnetdeconv-0.9.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 cb1541122b6ca3a9d5dd8fd06280a88efe61952ee4787b881a5098b5c7925f81
MD5 29d18d9f95c03e0ef0a0efa027b017ed
BLAKE2b-256 c4886a9d16994a0766edae4987e75a8ee7d513b6cdb494c47856ad56d162effe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 124a60ec9c1bf4c6bf09f59e3ae6e12847c9c8003009cdce59857c5a5aa5f712
MD5 0839e6cf06c77ee6fc9b42d4cd8e59fd
BLAKE2b-256 f9eeb9b73a26e2e3d6b4dbc7cbd14d6fd882949ed4b91aa7ddd9aef06dd3aef0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e9570f042665cd77b85759a9558b25a2e74b1b107d256c312bab00ba95c6728d
MD5 6c8757b4ff109071c02c524be5739f9e
BLAKE2b-256 48913ef23bda3a1e9ed30db0343ef4d0dd6316983ebddafd5cfa2e2d166ed9cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 546d30570d9d7d4a6b3db3a362f74d34c781a58ad7e29559eab9f5fa858c3fd1
MD5 534dd64b6992ddbbb4296385a36e0ce0
BLAKE2b-256 d44811440daee7e43cb2b5ced706c20120495e1e3eb48a68de64eb333fc9ee46

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 045206f2252af932a678785da6a031acc1768ff793483f233699a2923808b8ac
MD5 23f278a3497a10115d084e6e4bc4e684
BLAKE2b-256 51b0b5de21663e9bfdf71d016b9f1a5f85e77bdeac9806ca52a1b0e9625c56b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca1f0ae9efdd7d699ce8b35cbef9c8d7d8c116413f01f4e8553517445be34283
MD5 8920e3ce9e44525ebb16e113eb707b2b
BLAKE2b-256 29f266da3718ba069fe274b324235ecc761133aae7868b5bf8f23e2c22242478

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e853cdd520b1f810faf10b6205b02ed87a1d801b4dbe2c488b46e259cff9436
MD5 b927eca6e1efca0b5c4e0b6ad18e33c1
BLAKE2b-256 49276a101c6b4b5db542d13f984787e5cefd899d9fd3a69dee95f528d186d0b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 427.5 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4be8966970b1c84bb6a59affa560ebc8da34a0843325f00565ef87328854deba
MD5 08b1c534f4b81640a53bf90da755fc63
BLAKE2b-256 17a49ea8287586bc7ed61ab8e2ed1158d6a0f5ce9ab08293a038641dbc308069

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 248.8 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 879bb6965ea6a755524e7488f828d7197d4eefaf67e6b091326bf058bd0f3ac8
MD5 f7ac4410df0b8fd4375dcbfe43d840ac
BLAKE2b-256 07d650f8f5a31f39ecf826a32f00d0a4dd257a01611487b71707ac4af8865582

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 246.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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 01c9c912f16fa83288c1bd4c1e4fd4455ac5b1fe2e539884222f64d7e0af43be
MD5 6d8a1ba0f4724dd97dd01fc98e211864
BLAKE2b-256 38705ec2de63689a7ce941483028e1ad36cd0d8a6d95b71d3ef6ca702cbf07d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90eef00aab5888a82055e0c00a116860d778dd5a8429383c4b6ad21f62b1507f
MD5 072a04a32a5cdf30749b788296a36479
BLAKE2b-256 6303c186a2a05225da14ea4111b6849db277458d14c61ad28dbee0880206c186

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7bee59d1266e145bc7d444b51beefc5e7b2ceb060f7b69d736f4ef5766b8e63
MD5 241c51f8cb5abe0bb13f61f7127198f3
BLAKE2b-256 55036696e4a9e53cbcd8d2a8a76090a1947a7ef2c8b94ba18c88800f4227e71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6aa6ad5351b8ca03e7eb5c32c8ea0e0b2bc05762c459962d286950571264213
MD5 f5153abf9b9cbc8861cd0b43cd8888a5
BLAKE2b-256 acc255f3f4c93ccb2fc1bd9e59dee7ce65bf9c002ec9e72962c898b666563310

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a4d68db81e95ae8814a2b022e1710410617de39a07b414aff8584aa5854854d
MD5 0f30f0f44660b3995748d49433703f5f
BLAKE2b-256 8e5a53dd20b056d288ff0fbd377daf7b5780c468138a1841ccdd7c039beeea7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b3a2b5cb541bdc54fbb12c3f10a1eaa0098cb6fa615d7713f90bcd1d7c48624
MD5 989160a030af8a6e3dfde7041d27f9d9
BLAKE2b-256 e0caa8183c6f3f188ecd6ad5661ddf1d8db866c86d7b8a63282fd144cc515afe

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0af105197246a2a208bb6f3feaec4e0290a040c3308025e29690f1203f513b9c
MD5 2fc817af593471a60335cc63ec873a3b
BLAKE2b-256 1e932df088c4dd5042125fb97c646f5ab18337f0ff4fc0517ed02890bbc1b4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 412.8 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 95ed7ecb94a1831c7e237a016badee0d19aec2f863eb8df8eda94625d6d04475
MD5 fdc05860d483ee2986d141fa7826df51
BLAKE2b-256 1441c6d767d7fff8e87a1592700f29f29d7c7676e338e7fba3986fcb592621d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 240.9 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 669578364f3650f0219dc076b445b87861cba1f51e9381a1f8ed43021f4877e2
MD5 ede617d73c214089ac3b3c92af04dc63
BLAKE2b-256 74585a5f7e004018169d35e446b336ec24a62cd2a72b11cb1e84ac89cf3c4b3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 239.6 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a577778b8e6138b8b8f9bf78a8e4a5be3dd05198b9b117df0da79b1f9dceac55
MD5 19352d4f428ae42c966c83bbfbb19cd2
BLAKE2b-256 b168b2849f0c6e8ef359fdae89b99367512a9c2d720ed61cbb7f25c53a40ec06

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9275959cccfea915b0c713016de4fae0153baf07ee0835828f96032122d108a8
MD5 8f36a498242d5e893f6ad6b63acd6afc
BLAKE2b-256 ed88e8cadba2edcf153041f5572e230bc8444790bf75f59c7c08565d877523d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6bc89be92ccf574f995485a76812567413e4f4e3fea84a20e444f509c04cdf4d
MD5 ff6410c8fdca73281cdbeb64ba256d8a
BLAKE2b-256 cf4ebc7486432d8c944c674a360193e9a76588c8f2fd213dcaaa868973fe8b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b51c2729c0b59300c98d1d1b0e82ba32e31f2c1ea611e0384a71a612ec33123
MD5 7db67723d216c6934dd5ec5f6f0d42bc
BLAKE2b-256 5b2cad512fe2ba7551dbbc93d3cf15fd8f78a0749bdf56374022f4d6d2fe1687

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2e3487c32a6b8d79820d63ec5a69766f949341aab7451a832fe6df091d7b832
MD5 5cf9ba2c623983ff3cebe5abc7ed6fce
BLAKE2b-256 5495f9c4cb96bfdc714a37cbc8a85e43a13ff9967853ddc6f60ae19741f8718b

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 667d60e849b3259ffa9278f2ec32d0a07774fd889bf70f0e35f361124450b4d6
MD5 9729a6bd883cb74b07a01666ef786517
BLAKE2b-256 d226f462674e79f9fbf8cdf1e2863dedfeb497ba0c713b949a62ec9f8f7e4236

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a8a9ac2064d0c782b05a71aad45764f49494c273d9757a91e508108d79d13b05
MD5 33b55d876ed91e9d47611388f8e06f97
BLAKE2b-256 dd8630fb90c73a2a5aad5c33f4364bec23c03b9bfac10cb1b207719b3ae8d8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 412.9 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 00a2b37dd52267766bbf5197fda5199b073864608df1a1686446305d6c4cd284
MD5 3970266b1b1d1880166c6e2d922ace6b
BLAKE2b-256 2f9f76cce0907bf8e026a646676cd1657f2b677008b8864d1561db59e5c49b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fd91fac62d61b9a33e600159ea84ce592e2a65b410a20ee30fdff1f9136d4e2
MD5 6b347f4ef7ef5320dc846f919516f7b9
BLAKE2b-256 a48d660786b76d2afc1dc7d401e3cbbee25f43ea5c908d65a15a2ea6c2f441ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 239.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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c5ebe73f38f0608462b08e1ec950b75eafcfc02805c68297cbbefbccb33fc29
MD5 a1cdcad1c460a3b3318ee1a0ab54d132
BLAKE2b-256 18ecc003a5279cc53131a9f0877784ca347c364f912e765286cfa4e920aea281

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe9439ff30c382259596b2ded609efc0de0dbb7bda47ea43013b7f699b82d468
MD5 46de8fc4e95a033d8db480ddc6ff3244
BLAKE2b-256 fd463c745d6fc12a8bf256cf1d9d875fab8a1ba1917406bf88fb62faf7f676cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92b3bf77ad27ec2cbaf986656615d0f7da9d092e4887b15f79e7793ed9dff8fb
MD5 2f29f0e6940616081a6592c9619e5a3a
BLAKE2b-256 7c8cb845917fc3428564ddd92b455a973de3664150a0f4d25d429f58f1fd2282

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 841e99730622f29a8434b43817b103e274bb7817ad8346dc4077268ff96890e8
MD5 f14d865a8b4553d86874357cc67ac2bc
BLAKE2b-256 01a8e662eb04d843c7a2689db1458082ded4756611dfb4611926a1130dcdfd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55f439a84a53dc563c27a63ae6a3f66c43e73410df6c1a4281011ec4b5de32d0
MD5 b46e71c7c02e17c4cd2821277a50fc17
BLAKE2b-256 b2407693e53f643e5761af1e790736213683a7b0e36a0612438a3a1b69f83669

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23d0a1893e9452affce3a7155a2578101a222db7a17498ed01f8317bbcd0dd6a
MD5 8d1eb43e0e3cc75354b4db2b5c2ccd73
BLAKE2b-256 da79c945a74c84b8660ae2151e4e62e9f28e3ac6d9aa13af9edd9619b2dc7aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0393c4bdcc01df31627551c96288abf9898bbd088c8ea64b4ba2bcb4bc87429a
MD5 244dee6ed9238de99be5bbb220ac5f4e
BLAKE2b-256 7c687dd99353a01fec58c09261ca36ed51abeb253ca36b33505fb4be0df530df

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 413.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9fb52aa96410a2002202b2a1e18dd60ba254ad895e270e09a7d183099d2118e8
MD5 78f513a4e7fb1a1ec54a4e452b3c81dd
BLAKE2b-256 cbc443bf1cde3d0f567c4e2a7c4549c3cd23bdb9aeedb494e3d935f2c3a08292

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bd6638cecbb0460ef60ddf62677c4414d00ccc3d4d31ee41e11536306766f8c
MD5 6bffd8070bc6b68ba4a24acdf95ae11b
BLAKE2b-256 03890e440a935cfcecd24e4b0cd2342b5181028be43865ad4f27fb4d4fc0968e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 240.5 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f2a344a8550bdea0f8547c62bf887c146efe343136acc8dc04b954ae3c14db82
MD5 f4301946bc01fcdc29677cc7c6fe071b
BLAKE2b-256 9b969bc68c37ba58af63c752e8e6ff2404773510e9d5de0bbe1e5014bf960666

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5750daeab094d2df8bcf41ea033c39dd5665b89297b7adf3d5de5f516b741509
MD5 3737ac2ea95456b7ef3609cb37303464
BLAKE2b-256 f06f3cb26773bd2509a7fd48762459194f3702c81a1a71bc12e61faaefc72bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45b2ca9f07addb46c64ac552da9c9ce5fc0411fec2f4be21508c3080ea65ea6f
MD5 61e62404864728e786e4109ae90647fa
BLAKE2b-256 628479e1612310d8eeba767a48518286fdb9fb6c4ec1cd17de3bb899d458fbc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9737f54484dda6d8760ca5290c8234d9f92813cdc6d7f8fce7d5b385f66ef6b0
MD5 aae8a00bf5535b4106be301596749981
BLAKE2b-256 e7edfad1458e47bc0b352d0381fae0ce1f17f0ddaeab9b5758938d13d713ea94

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c6f62c2b9596c3b494e470d7c597b3d867839496f79ccf59e6e04766d87bb60
MD5 f6e29edf82796274a3be6ae9630f0c64
BLAKE2b-256 b0ba21b1a1bd268211ee88dca28d87db559d547fb99fc356aa367956bf107f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 472aea462ce849bacf612bde48c99f785823728d326f5121e50b9c6c55c8ba7c
MD5 c6837cf53109d6025500d01dd31492ce
BLAKE2b-256 e2d9d7738726ef5ff9ae1ea45195dd0302da765e505ce3643ea5ba901032e3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp311-cp311-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp311-cp311-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a94f10a161ca7e0bd84aaf4ad969811d433969abecee24c33b4e5af1e3699bd
MD5 c21dd420e132b3604335ea900494396d
BLAKE2b-256 118cf2293d18d22b497316a7380f4d9fef0766aec907c2b6cb52f2090889b632

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 241.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e39c10e0fe42d1bce8ebf655105940637f04a536760b903e691512291cfa3d33
MD5 4b2e927be269cae348d67763a0878155
BLAKE2b-256 671f2c7e44a8550c17197283630078ccc1c2c015802a0b52b5870c35effe85f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 240.5 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 70b0ac26304a86a35eaa8e46347c4bc0b9756f6d856c1e60aadaefb4f0a4969f
MD5 1ba06346f282dbda29a2e0df95ecb288
BLAKE2b-256 c793e83d2639879ca86de1b8d9f1a04e7e35103a46260c9ee1aa8e767b4c7393

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a53f4e6871f8579bc71645738554e090cc16ef7c9143af8aa769c97c9d27a8c
MD5 5b89581f035fc7922d82d906096ca6ec
BLAKE2b-256 0f803ef293d1af3916b5da2d562a107672917bf0be2384245fc9a3077fc3e5e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 974aa845ca18ecaac211d6e8aa8db3fc9ff1e34a7e3d2d2e5bcf34ee96cbbea8
MD5 c63e702d52d18c3a098f8f023eb86fe9
BLAKE2b-256 de43ca3f385da2b6b066446f14babf5d50a74ee5b8f12900f3cfa19a827aa535

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 84698ff92829484a9070e929d4609ae56e47dac664f80129605f73be195cbc93
MD5 46722674af88bcf861a9d57f5503b16b
BLAKE2b-256 a98083ec437e86ab9ee0a96513d839aa0c3a7965a4233076499d3a3fcc9eafed

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bdff9685cde6f8d9859b5b4adb8fa989a05aab484207c76c31bd953f7d65ad05
MD5 519f132f116c00a32a108e844c60e61f
BLAKE2b-256 7198554e3d415b7dc123a6d66a06121a313bb5bf52c960325a78326947caf68e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54c80049bb873319a3c58bf8a9bc7d432ab44e37d28107825713f1001595554
MD5 f7b0604ae5adeba39d8124cc99eba81a
BLAKE2b-256 057d694bcd432caecd030bca6ff70cbea1474c989f59413e0fff8b1c1d67e18c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp310-cp310-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp310-cp310-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 55e52e0f67a0c3f1629e6ebe95c6a868075a800256eb437c6bbd1be019f8a0c0
MD5 04ab84c5f3c46ddab6eb88f60c429ddd
BLAKE2b-256 02b2bf94982fc32c7e7dbe4d9a7be7e3c93d56081ccd1461b60e3795ea8fefc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 242.9 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0385c9d2cb0037407ea38f67233cd01f82729a32195af2fc91f3bbaa8231b4ef
MD5 f057846ef2c5b815b97ce9b9cc3d6395
BLAKE2b-256 6dcd622d3b79edecf8f9357c9d24e6daa832ff61a5cf3b5669246a7a504219eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: wnetdeconv-0.9.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 241.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 wnetdeconv-0.9.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 430a47d0e4d110e74838c5e838e1f54db35580d0b30d33da59496fb00eb4ab04
MD5 c5597306f71aa749e4e4d8e7414070a0
BLAKE2b-256 5d104b6a8676737e4b3faacf9f68025766a18431143f91df2d3c570b58c04f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d91fff8a4f9de70ba11ef43849e7e6927c09cd3cc34e73c32cf964a66231d0f6
MD5 24deddc5d182b21d905b0711a2b3f739
BLAKE2b-256 e2719118a108b0f77ccb9d468e6549546d8d1d73eae07b312b47d2a21393293e

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aaedd7eff9443d3cbb93bc9382b3f8a619765e5ac6f41caaf7485ceb88a20b55
MD5 0a9cd3d62a9de1f07fbe72bf34ed99c5
BLAKE2b-256 9b14672dec7f7be63570a4b8725f7726815c416800bb8cc6f80413ff56c6b5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f81d471c811c3ce4ff0cf68b8bf88b600158a4d0cbd505106daa35ba7f2c6aa6
MD5 23d6d18d453f1eeac6f8fea71faa837f
BLAKE2b-256 fcbdc83a464e90c17fd1cb776e8aaec54cdf2b7bfba5bb358f46741c7c21e8a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f4cbf75a85ccf339a40705e066d464c47dff41315501dc45044ca5b44d53fb1
MD5 9543bca6c080339cc6bca4e542fe4e2b
BLAKE2b-256 bb850457bb5677d7a306ae7fb201e72a24598221144a610ff4eb8946af3c9c77

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76cb034852e1198d02ca32f0208aac8d2c2166a62064fb29c81477313394f8a3
MD5 45e3c8cb32e76297d26e10a734dee11b
BLAKE2b-256 12c33ce359dd4348114be7477ea19ba7385cb0824b2d69c8de3da402278e690c

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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.2-cp39-cp39-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for wnetdeconv-0.9.2-cp39-cp39-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4dbc4a1efc87494d21cd42f476ed48b6f54ff8e0985ab34f4b6e37fbb432f843
MD5 38c6c5ad9470ceaefc98bd31e94b674b
BLAKE2b-256 601a9c9a85f871cc7a52f7ee19cd910ab6196e86346f51a9bc3351f2ff722640

See more details on using hashes here.

Provenance

The following attestation bundles were made for wnetdeconv-0.9.2-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