Skip to main content

typhoon

CI PyPI - Version

Typhoon is a rainflow counting Python module written in Rust by Markus Wegmann (mw@technokrat.ch).

It uses a new windowed four-point counting method which can be run in parallel on multiple cores and allows for chunk-based sample stream processing, preserving half cycles for future chunks.

It is therefore intended for real-time processing of load captures and serves as as crucial part of i-Spring's in-edge data processing chain.

Installation

Add the package typhoon-rainflow to your Python project, e.g.

poetry add typhoon-rainflow

Python API

The Python package exposes two main namespaces:

  • typhoon.typhoon: low-level, performance‑critical functions implemented in Rust.
  • typhoon.helper: convenience utilities for working with the rainflow output.

The top-level package re-exports everything from typhoon.typhoon, so you can either

import typhoon            # recommended for normal use
from typhoon import rainflow, goodman_transform

or

from typhoon.typhoon import rainflow
from typhoon import helper  # for helper utilities

Core functions (typhoon.typhoon)

All arguments are keyword-compatible with the examples below.

  • init_tracing() -> None

    • Initialize verbose tracing/logging from the Rust implementation.
    • Intended mainly for debugging and performance analysis; it writes to stdout.
  • rainflow(waveform, last_peaks=None, bin_size=0.0, threshold=None, min_chunk_size=64*1024)

    • Perform windowed four-point rainflow counting on a 1D NumPy waveform.
    • waveform: 1D numpy.ndarray of float32 or float64.
    • last_peaks: optional 1D array of peaks from the previous chunk (for streaming).
    • bin_size: bin width for quantizing ranges; 0.0 disables quantization.
    • threshold: minimum cycle amplitude to count; default 0.0.
    • min_chunk_size: minimum chunk size for internal parallelization.
    • Returns (cycles, residual_peaks) where
      • cycles is a dict {(s_lower, s_upper): count} and
      • residual_peaks is a 1D NumPy array of remaining peaks to pass to the next call.
  • goodman_transform(cycles, m, m2=None, bin_size_compensation=0.0)

    • Apply a (piecewise) Goodman-like mean stress correction to rainflow cycles.
    • cycles: mapping {(s_lower, s_upper): count} (e.g. first return value of rainflow).
    • m: main slope/parameter.
    • m2: optional secondary slope; defaults to m / 3 if omitted.
    • bin_size_compensation: optional widening of each cycle by ±bin_size_compensation/2 (worst-case compensation for quantization to bin centers).
    • Returns a dict {s_a_ers: count} where s_a_ers is the equivalent range.
  • summed_histogram(hist)

    • Build a descending cumulative histogram from the Goodman-transformed result.
    • hist: mapping {s_a_ers: count} such as returned from goodman_transform.
    • Returns a list of (s_a_ers, cumulative_count) pairs sorted from high to low range.
  • fkm_miner_damage(goodman_result, n_d, sigma_d, k, q=None, mode=MinerDamageMode.Modified) -> float

    • Compute a Miner damage coefficient $D$ from a Goodman-transformed collective.
    • goodman_result: mapping {sigma_a: count} as returned from goodman_transform.
    • n_d: $N_D$ (cycles allowed at endurance limit).
    • sigma_d: $\sigma_D$ (endurance limit level).
    • k: Woehler exponent $k$.
    • q: exponent modifier for amplitudes below $\sigma_D$; defaults to k - 1.
    • mode:
      • MinerDamageMode.Modified (default): returns $D_{MM}$ (FKM modified Miner).
      • MinerDamageMode.Original: returns $D_{OM}$ (original Miner, ignoring amplitudes below $\sigma_D$).

Stateful streaming (RainflowContext)

If you process signals chunk-by-chunk, repeatedly calling rainflow() and merging dicts/Counters can become a bottleneck.

RainflowContext keeps the accumulated cycle map and the residual last_peaks inside the Rust extension, so each new chunk only updates the existing state.

Key methods:

  • process(waveform): update the internal state from one waveform chunk.
  • to_counter(): export the accumulated cycles as a Python collections.Counter.
  • to_heatmap(include_half_cycles=False): export a dense 2D NumPy array for plotting (and the corresponding bin centers).
    • When include_half_cycles=True, the current residual last_peaks are treated as half-cycles (each adjacent peak-pair contributes 0.5).
  • goodman_transform(m, m2=None, include_half_cycles=False, bin_size_compensation=0.0): Goodman transform directly on the internal state.
    • When include_half_cycles=True, the current residual last_peaks are treated as half-cycles (each adjacent peak-pair contributes 0.5).
  • summed_histogram(m, m2=None, include_half_cycles=False, bin_size_compensation=0.0): convenience wrapper that returns the descending cumulative histogram (same format as typhoon.summed_histogram).
  • fkm_miner_damage(m, n_d, sigma_d, k, m2=None, include_half_cycles=False, bin_size_compensation=0.0, q=None, mode=MinerDamageMode.Modified): compute Miner damage directly from the internal accumulated cycles.

Example:

import numpy as np
import typhoon

ctx = typhoon.RainflowContext(bin_size=1.0, threshold=0.0)

for chunk in chunks:  # iterable of 1D numpy arrays
    ctx.process(chunk)

# Export accumulated cycles
cycles = ctx.to_counter()

# Goodman transform (optionally including the current residual half-cycles)
hist = ctx.goodman_transform(m=0.3, include_half_cycles=True)

# Summed histogram directly from the context
summed = ctx.summed_histogram(m=0.3, include_half_cycles=True)

# Heatmap export for matplotlib (optionally include residual half-cycles)
heatmap, bins = ctx.to_heatmap(include_half_cycles=True)

# Example plotting
# import matplotlib.pyplot as plt
# plt.imshow(heatmap, origin="lower")
# plt.xticks(range(len(bins)), bins, rotation=90)
# plt.yticks(range(len(bins)), bins)
# plt.xlabel("to")
# plt.ylabel("from")
# plt.colorbar(label="count")
# plt.tight_layout()
# plt.show()

Helper utilities (typhoon.helper)

The helper module provides convenience tools for post-processing and analysis.

  • merge_cycle_counters(counters)

    • Merge multiple dict/Counter objects of the form {(from, to): count}.
    • Useful when combining rainflow results from multiple chunks or channels.
  • add_residual_half_cycles(counter, residual_peaks)

    • Convert the trailing residual_peaks from rainflow into half-cycles and add them to an existing counter.
    • Each adjacent pair of peaks (p_i, p_{i+1}) contributes 0.5 to the corresponding cycle key.
  • counter_to_full_interval_df(counter, bin_size=0.1, closed="right", round_decimals=12)

    • Convert a sparse (from, to): count mapping into a dense 2D pandas.DataFrame over all intervals.
    • Returns a DataFrame with a (from, to) MultiIndex of pd.Interval and a single "value" column.

Woehler curves (typhoon.woehler)

The typhoon.woehler module provides helpers for evaluating S–N (Woehler) curves.

Key entry points are:

  • WoehlerCurveParams(sd, nd, k1, k2=None, ts=None, tn=None) - Container for the curve parameters: - sd: fatigue strength at nd cycles for the reference failure probability. - nd: reference number of cycles (e.g. 1e6). - k1: slope in the finite-life region. - k2: optional slope in the endurance region; derived from the Miner rule if omitted. - ts / tn: optional scattering parameters controlling probability transforms of sd and nd.
  • WoehlerCurveParams.with_predamage(d_predamage, q=None) - Returns a new set of curve parameters modified by a pre-damage value $D_{predamage}$. - Uses the FKM-style transformation: - $\sigma_{D,dam} = \sigma_D,(1-D_{predamage})^{1/q}$ - $N_{D,dam} = N_D,(\sigma_{D,dam}/\sigma_D)^{-(k-q)}$ with $k=k_1$ - If q is omitted, defaults to k1 - 1.
  • MinerType enum - Miner damage rule variant that determines the second slope k2: NONE, ORIGINAL, ELEMENTARY, HAIBACH.
  • woehler_log_space(minimum=1.0, maximum=1e8, n=101) - Convenience helper to generate a logarithmically spaced cycle axis for plotting Woehler curves.
  • woehler_loads_basic(cycles, params, miner=MinerType.NONE) - Compute a "native" Woehler curve without probability/scattering transformation, but honouring the selected Miner type.
  • woehler_loads(cycles, params, miner=MinerType.NONE, failure_probability=0.5) - Compute a probability-dependent Woehler curve using an internal approximation of the normal inverse CDF.

Example Usage

Basic rainflow counting

import numpy as np
import typhoon

waveform = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0], dtype=np.float32)

cycles, residual_peaks = typhoon.rainflow(
        waveform=waveform,
        last_peaks=None,
        bin_size=1.0,
)

print("Cycles:", cycles)
print("Residual peaks:", residual_peaks)

Streaming / chunked processing with helpers

from collections import Counter

import numpy as np
import typhoon
from typhoon import helper

waveform1 = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0], dtype=np.float32)
waveform2 = np.array([3.0, 5.0, 4.0, 2.0], dtype=np.float32)

# First chunk
cycles1, residual1 = typhoon.rainflow(waveform1, last_peaks=None, bin_size=1.0)

# Second chunk, passing residual peaks from the first
cycles2, residual2 = typhoon.rainflow(waveform2, last_peaks=residual1, bin_size=1.0)

# Merge cycle counts from both chunks
merged = helper.merge_cycle_counters([cycles1, cycles2])

# Optionally add remaining half-cycles from the final residual peaks
merged_with_residuals = helper.add_residual_half_cycles(merged, residual2)

print("Merged cycles:", merged_with_residuals)

Goodman transform and summed histogram

import typhoon
from typhoon import helper

cycles, residual_peaks = typhoon.rainflow(waveform, last_peaks=None, bin_size=1.0)

# Apply Goodman transform
hist = typhoon.goodman_transform(cycles, m=0.3)

# Summed histogram from the Goodman result
summed = typhoon.summed_histogram(hist)

print("Goodman result:", hist)
print("Summed histogram:", summed)

FKM Modified Miner damage (from Goodman result)

import typhoon

# hist is the Goodman-transformed collective: {sigma_a: count}
hist = typhoon.goodman_transform(cycles, m=0.3)

# FKM modified Miner damage (D_MM)
d_mm = typhoon.fkm_miner_damage(hist, n_d=1e6, sigma_d=100.0, k=5.0)

# Original Miner damage (D_OM) only (ignore amplitudes below sigma_d)
d_om = typhoon.fkm_miner_damage(
    hist,
    n_d=1e6,
    sigma_d=100.0,
    k=5.0,
    mode=typhoon.MinerDamageMode.Original,
)

print("D_MM:", d_mm)
print("D_OM:", d_om)

Testing

pipx install nox

nox -s build
nox -s test
nox -s develop

Release files for typhoon-rainflow 0.2.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for typhoon-rainflow 0.2.5
File Size Uploaded
typhoon_rainflow-0.2.5.tar.gz 29.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for typhoon-rainflow 0.2.5
File
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
typhoon_rainflow-0.2.5-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details

Total release size: 77.9 MB

Release files / typhoon_rainflow-0.2.5.tar.gz

Download URL typhoon_rainflow-0.2.5.tar.gz
Size 29.9 kB
Tags Source
SHA-256 checksum
How to use checksums
196dc9eaa1a9e6408de77415e207fd8fbdc5faefe7bdf29ac13a8b6a06c4256a
BLAKE2b-256 checksum
How to use checksums
501f13bc6d3591ecd7a265d7423254aa3bc8aebe5a6e29dfb0b3109505dc65c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 734.9 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
0712c8f05c3a86f55bfa51ae11e079d7000325901e6fbe06dc06053ace733480
BLAKE2b-256 checksum
How to use checksums
98660deb51439b3f8af3873a0d70b0e6941259394a1ab0cd03f1da2f399625c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 774.2 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
73cac3ccec01b3819740e9661ee476927ad473bcace53884965e21d7e5dd42db
BLAKE2b-256 checksum
How to use checksums
93cd1041bbef2067fffcd484395a645d23f3141ee49c9fcd2e76705cf961a1d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 808.2 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
b91c4de3d5a8a8ded6506d6bfb41b0d05aa9430876a67c6da003e1becfc83f0b
BLAKE2b-256 checksum
How to use checksums
21b7f95dbd70a75f64764b4808843023cc6a0c112891d26da13a6353b968cd25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 694.8 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e66f23daa05b39b4dd306eac23b7bf7b25b528fdeed4bdd62f14cdbc4a5e1bbb
BLAKE2b-256 checksum
How to use checksums
467708d58610265f0e7efeb23e6bb1c7fcbe916dfef7f233152672a2e9fc05a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 530.5 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c236b5c07654459a380c2a81d197770d9e8cc95927cb7c49106cf57cef28ed1b
BLAKE2b-256 checksum
How to use checksums
b0a00546b50aa85a1346efe121ace814ede6b958ede7310e5a1dc762d64c5cac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 552.3 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ddf2963feda02bff5792453d0473082255bce7a7cbb58944fed72613ef399c4b
BLAKE2b-256 checksum
How to use checksums
85ad962c997d561425a53853695f910f97231331c2230873543c8dabc0e0fe95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 675.5 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
25045a176a2423ee056cc54e3187bc5201a3bdbb583753d008a1f7269775ed95
BLAKE2b-256 checksum
How to use checksums
4d6d2521e0217ab8d0e253886e31877b4072a0b006bf23b951dc787a453e4477
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 567.7 kB
Tags Linux glibc 2.17+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c8ea80d7f94dada29969efca372bd27a0f7e2dab74ae3259287cc10a693b25b9
BLAKE2b-256 checksum
How to use checksums
3e8a447d3b4248fb90b47be9850405539d016a3f6917aca690eda6b53b94e89d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 533.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
4992ee4c06effd53dab6d57d83e40184c3aa09bf65092d1f369844bc2adb87f8
BLAKE2b-256 checksum
How to use checksums
88838d6c206e516308982f4db7f79858bccec70b0ae085a405211d6cb4a823b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.9 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e2ff85f7b18b4627a40373a82c224054c2c3401247d136fe88ff9d9137469042
BLAKE2b-256 checksum
How to use checksums
50858b7ac2dd148515341a8d767588e6374f169699eebec4a870a1e439a9a3a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 735.0 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
5ce3646317364062f070578dc86cc29c2560f4de45a83b932fbeb7512d3d2aa3
BLAKE2b-256 checksum
How to use checksums
78c6c4a5ea342e27615dd0845f5d38b90e3594d0bcf09786b71d7f34be36db39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 773.8 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
86a74e2ad3009a5dfde2483b95ef670dec3b0ce01f1885e12b13d7c7c9f47806
BLAKE2b-256 checksum
How to use checksums
3a546741fc592ae683959a6352adf0cf58428f36e1899d3d29c5b14212b44d2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Size 807.9 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
1541d4bb88af2f75d481e22669a10ccbbd41c0cbc6a0d1815e0e666ab9066588
BLAKE2b-256 checksum
How to use checksums
cccf7cf466fd8c2a064ea3866f755715743d803fc1eb7ec4a913f83d1651f28b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Size 694.7 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
99f8793f3573394fa6d9dfd9deb06b73f3e7ad993d87fc9b472ea48e25f024b2
BLAKE2b-256 checksum
How to use checksums
960ab715550ffd91d769812c80be72456cdc3c4e2d544a2d7aff219a8cc62e52
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 552.3 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
ec55e24b7b1866f251cfa2703f989838e097f7e05ffc36756c379825095ba81c
BLAKE2b-256 checksum
How to use checksums
68652823b783c9778680d591a96f3b07d1fe1d483b75e3f19bd0deb50b1a6908
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 675.2 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a7b281ddadb3a436ea98caad2c6bc2154ca694ed0c5f3be2a2d8e5abecb008f8
BLAKE2b-256 checksum
How to use checksums
9e53ccd73fa60fdc0b3ff08da3ea258efed11379136918e70a16d821fe7e3c6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 532.8 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
58e961b37f060cdc587e81e719a71c6ab4a08a9844973dba879264143c58824e
BLAKE2b-256 checksum
How to use checksums
a460973fd06183ab47e87e2ab425f5fe1388a4a0e8515a2d9b84370d578d9dbf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.9 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
3c2b26dcce751cf44bd8132f2e1f1332d053f7473a8a7173d3e5b2e515e4b1dd
BLAKE2b-256 checksum
How to use checksums
4f2428824a0092a09770a0ae3dfd86b1427faa76bf23e76b9c0815baff772935
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 735.8 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
2bd9e7dcfb45935b08029e5486ff74c240d8df45d5afc082c1ea353539ccab50
BLAKE2b-256 checksum
How to use checksums
218a9fcd37c10d305d436a295beb6eea92e9ba7cdd8e2e69bd9d4fa971090e7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 774.0 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3d1ac0be7ba92aa26a4269a7b9dff2c2e70fec3f197aafc4fc6ba3845cb850c9
BLAKE2b-256 checksum
How to use checksums
eee04bfadc35aabbca77a394aed0ba64194784fb4b328979cf07f3299cca58e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Size 808.7 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
022f59d587ada9676321dfb07b188877c722632a5ed1e57d0ff8e10dbc442298
BLAKE2b-256 checksum
How to use checksums
29fc55a7886d552e70e0a4ca900b84e3002b1927ea636648a534d88a015d1220
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Size 695.4 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a0893a7d62b27228659e655c9c4c2d258e554212819ad78fde611878be54d5a2
BLAKE2b-256 checksum
How to use checksums
810daee6ecc3682759d5eafdc6fd14922c74165ac8dc9d40af290f73287560d4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 553.0 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
559a816bc6e1fd3b1431d7b94c36bc9f2f803ab4710e925cdfd3126f40677cdc
BLAKE2b-256 checksum
How to use checksums
38f7530febd71d41f99bdc348e9e05b045351f827dd5b2c545d57e9cc9090c3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 676.4 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
3a102c2206f860fb3df15a4f07732ca2f0ebc6c8b8eeafc15db0f19a68ae2275
BLAKE2b-256 checksum
How to use checksums
8caa1a0f8de45ba87b1b5d3ceb2c0077bff3a5f4aa7076d881676448a7e67bc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 533.3 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
df984ccb3cfc728b93f230ffbfe23cf65b397aa1c96bf9bbb2cd0ff9518f3682
BLAKE2b-256 checksum
How to use checksums
aed5cca77fb9bb40bf4aaf36260c3a42777827a51c55b0f63cb8d09eb077ca80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 519.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
e40101a86dc4bb4cef672d7ed69de7352b270d8834cf0942337dffd8474f5e2d
BLAKE2b-256 checksum
How to use checksums
897c7d5e5aaee98c2fdd5ab18c3df069d7756cde324a43e331098c34927f1870
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 733.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b3fc9c3ea5d748cb86510cbce885d4deeaa70dff6be4d6b624295fd0f9b4a30c
BLAKE2b-256 checksum
How to use checksums
ada5f6563e72cbd683e55c0abbca5ffb7d32b5093db47428d3958b7a3ed765bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Size 771.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
87db95b799427e28926d10992bc43e6ab9706bd9a071a988e5a39a21eb8c7fe4
BLAKE2b-256 checksum
How to use checksums
bd93d923ce24f14861b560732af6fc0deba0664cbad1c570dfc1fa6025c9c998
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 806.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2635789d94ce386076cad8eb4c25713dbc2ddecb7a332f6fd5d3222ae1ee4920
BLAKE2b-256 checksum
How to use checksums
b16bd823bea4da9c3ac7fa7dd33c06f722945daeb46bab021063bbe23ba42fb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 692.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6d3957d2882d6230bec249e4a3257bd87255398b27133705f3f39474908c5c14
BLAKE2b-256 checksum
How to use checksums
403da3dca034fd1e4229a74ac4585fdc173919735717d413fc5a4c76ba535dd8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 551.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
394b0da68495980ab9ce13fa5d04ddf1fa2b5a71f8b799db22ebc4ec17cf8b9d
BLAKE2b-256 checksum
How to use checksums
4c1033ec96a176604214b154223be9cfd1619573c6c196e2c9651f4f74312bbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 673.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
42b7d989b80659b92d579a452f47d071bcc0b960eaf449885c9ed45ebfaaaf09
BLAKE2b-256 checksum
How to use checksums
e523342e4163a0d231d7683653fcbe95fda56a50b3726a4746ca109f51132629
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 531.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
9341b5c56a29a0d5e0a78f79659c0037872585450c3f681551ee022e136ff19f
BLAKE2b-256 checksum
How to use checksums
86c88e845a1de95b3bd8cf46ee30b47af9cdf8a66649d9dc0e6a3ceb92251708
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 516.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b164df38682612738ca8da10616deeac52a5f448ab2b9d21a94f2832762ed6cc
BLAKE2b-256 checksum
How to use checksums
695513e240942ae8dcf64960d3fb6b43b291529426867861e6bfd32ca6c91dbe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl
Size 331.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
54cf509b665df3e7bfde95e5bca4ff70c168cfc10764a12ea5ffca99f0b432e2
BLAKE2b-256 checksum
How to use checksums
3e81f20b3c1cfb8dcb6babe883a73c30101046954547367ddcd344349aff669e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-win32.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-win32.whl
Size 316.4 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
349fb76c43da3e4bcd62415ee9a2adf878c7398b4d3662d756f1e7c3007176f4
BLAKE2b-256 checksum
How to use checksums
745b95d13dc473ff71b65f1ab1c14a654d150fe6fd825553e29907b8ad514e20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Size 734.9 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b2f246d5e8c4acc5a6c3f4f1c93cb03818b2ca4ec85838ce643dc1232eb40463
BLAKE2b-256 checksum
How to use checksums
41ac373bc3b74310ad7d11e35f701cef821c35e47bdb6638a73aabd4b3ee74b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl
Size 773.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
61aaa4740fde83cacd28118c34047d87669a65cb4b429a0c220e2a783e0cb00e
BLAKE2b-256 checksum
How to use checksums
3825c3cd48f65605d1f933dda0ad4877248c30793d153f651851979ef143274a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Size 808.4 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
1f3797c3c367709225394df72e1fe4448c8ea7897654b02fa62f9696e3abfe66
BLAKE2b-256 checksum
How to use checksums
11f880a804134f475104b7401f60e6deb45f6785c47dd5b7e949ede88c92228a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Size 693.9 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
c020d5c02eab24d222c317e762bdf78b706e075f5a3d44369e073e4b9a9b897e
BLAKE2b-256 checksum
How to use checksums
86d4ee80a4e469094269b11174bb90fd657ee1fbf84bc5bb82b7c42ab676e664
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 530.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
0d3ae317709a5fb4a08bb15f2b6b291cd2b2a1db8cdb2dd7270e730f703740e1
BLAKE2b-256 checksum
How to use checksums
408d4c35553b6d836b0e8683f11e0d6982dc457d49acf4ff7a77e03ef8e8aa98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 551.6 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
09a9b973bac0e35cdab7867a8836fdffa9dfe05e23298e8b39fcfd209acca0bb
BLAKE2b-256 checksum
How to use checksums
8b5cf05d6a61f2d4c4a1cad5d4b129796bc21d524feadca0839c2cda373d6b83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 674.7 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6591f419e5a369d71225998e29c7c7a71d0177c141c02d5b61d203a0aa1fbfb8
BLAKE2b-256 checksum
How to use checksums
b6ac53ae8032ae0b2708025386cd2515cf1d884e7ff2fbf5bc1d52f4a7ae7436
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Size 567.5 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
309cc9bab3599b03bd6f3ca81bad292fbb6da3bec8914590ce32c23581eec25b
BLAKE2b-256 checksum
How to use checksums
06f46b11c4a6d4d5bf85344086489d22d030dfcddf4c589abc7d03f9844cba2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 532.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
cf51533f71fb7d59c2324aa770896ed56e61c63488b6c417931dbdb79a4e26e9
BLAKE2b-256 checksum
How to use checksums
b0dbcc5d7b1940689e9281b19201eb56f3b39cd5f7d70b155831cfc695779648
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.0 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
647286d7667d12c1eca90737bbb2d353bb3744479b5c73186aaa555c096888ed
BLAKE2b-256 checksum
How to use checksums
0c454d26fa20d0b1f753a4e64e9ba565678771847d343426e5cb5acbac02a55d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Size 460.2 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6fae61547b6e031ee132af7f9b8ab3eb6fb2434361882ed758c5fafb3916b597
BLAKE2b-256 checksum
How to use checksums
cb3610708979fed3de4e6c94935277de0a240e7852fc3ce5210221f36bad8119
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Size 472.8 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
adc9951d28d4f49123066b5b9e1353523bc1ddaae2f3818b6b700f625d72de15
BLAKE2b-256 checksum
How to use checksums
4233be31b07907b6d803fe60ef99d3c21cc6b2c18b326c8a4ecd7345dbd110e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Size 733.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d1aeb16001f920ecbce5e8d778d07c76f5fe94abf242552428b7672441f8db86
BLAKE2b-256 checksum
How to use checksums
d83ac289b820c02d9929b8ab72d71c079022466242783e80e1e768ff5de7a85d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Size 771.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
230249d6f5c0a29dc33515d1c8ae6116d0955abb72589a27d75c419dc310b50c
BLAKE2b-256 checksum
How to use checksums
eb4c19d31cd49ab4f2909a5f7b507e418f2cb0601beda13f3b16fb05730e054b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Size 805.9 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
bda9c90141b5cd71956c3f9051cb2570bd270bd0d94a787aae21b6357ea6c1e8
BLAKE2b-256 checksum
How to use checksums
0cb58575571de24b583f15b233305ba44f41d0655836448c0ec5dfddc1e44e3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Size 692.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
12902978b178d5317b4e9affac4ccd26b907e1d72a28588eec68d87480f91b63
BLAKE2b-256 checksum
How to use checksums
9c43c38df538f6e8ac2f8aa05becd5730a858918e5c2ae5d6105f4a8279a8978
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 551.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c983659ca597874258f8854a447ee838aaba17d7086f5280c378011f5616e5b7
BLAKE2b-256 checksum
How to use checksums
0e95763b3c05d5e1f373a982dde58c65fecfc3b9635994701e28ecff857d1acf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 672.1 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
0f8741e2d52f77c3618d1364a590784696d0adc8f12daca588d836e01cec2ce6
BLAKE2b-256 checksum
How to use checksums
04b8e819c82e1f31db0be63ead58fecd051b50da58f685f7ae769657699e57c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 530.7 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
bb703366882f2a11163bd697031cb4300c6cdcc0e6c9f7dedf6f0686577eb003
BLAKE2b-256 checksum
How to use checksums
c4ac08f111daf6e9570424733546cc1e5a4370147a9e4809a5f645218afb65d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 516.3 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c79d715ccf9b9a1dfecf9b046a0f869357024d6e6ece32ab4fd31b6f8c1bae12
BLAKE2b-256 checksum
How to use checksums
589f592ac97fee556bd6aa9c759259ffe5e290f1dee14c226da6c39910b1558d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl
Size 330.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7d8c540967e948c62a61202956ea82709932cdc2b33eb77caa85ad43a2da5d65
BLAKE2b-256 checksum
How to use checksums
5ed4e3f3a3be00801c1b8402763100dfac593d16137a61a1b0c7e82021568975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 733.8 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c1719146be46960117caa15a58e20ea61e64753f9918b7a999ff120fbff911ad
BLAKE2b-256 checksum
How to use checksums
d539ec32b72e108346e62febcab583c8fb879925a1395f87f25df46102ade1b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Size 772.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
8118bbfe3bb42a70609c33a068cf61d72c0c1a5d0baad796992bcee36926de59
BLAKE2b-256 checksum
How to use checksums
8c00951b9122a76f4e0c813b6509635ced948104fd6fe61a91feb30b62f9d718
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Size 807.8 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7404f4b802409bf470bacbd1b603a7627602418273ec28e7c6ee0eab651ddaea
BLAKE2b-256 checksum
How to use checksums
ebe50ade265c53a6322b8f10e1a1e969d8f122518843e80d9c3caa513dae827a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Size 694.3 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0a03c0af99c4750551ddbdcbe36fda2cd5c5411caeb259c36ae9c9e80aae3d75
BLAKE2b-256 checksum
How to use checksums
514d1df1a6c8605e5717bcf2975cbe12ed55778b9dce4145c5658130e826c841
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 529.4 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ad6876bfd97e90ec778139799bed99c5843fbb5a1703bc6b87f0d30637cc3834
BLAKE2b-256 checksum
How to use checksums
401465486ed48c80bbb4a12b11efba69149c83afb921b144107613874a30e863
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 552.3 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
10c4486bfb1530f94d79c5b91c7311e1a25b03ce54505e71d218e617b1bd0789
BLAKE2b-256 checksum
How to use checksums
df4bdbff8ec8fbcae948a8e20f7e549e7f8ecdb2780607084189b04b43321ab5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 672.3 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7db7f412e5eae022c274191713389b8ede0bf3de0dfa0296dd640a6fb60f8813
BLAKE2b-256 checksum
How to use checksums
ad46c00414e2878e1eb9e799a97c3f6b103eb2cb2274a828283739bfced049a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 566.5 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9825730ee9f3c9a8013b769cc991ff7591b4b3fdff58effa9c945e2c7e09d42f
BLAKE2b-256 checksum
How to use checksums
98b0089ea91f0e8d801b7147f647f67d9ffb7ca6dd52a4c64edfcd6550922c87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 532.2 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
86a652479ac36d4acb0a066329fd3b39c81413be83c60b89eb483c449245c944
BLAKE2b-256 checksum
How to use checksums
8c8f2983b2b85ffba18bf81af4abbf7be46a5749aab3b8e46d14c17a600aeac6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.1 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b0f2425f0615eea90e2691d47b162b3883c7766480a07e154259275bc01bf8a8
BLAKE2b-256 checksum
How to use checksums
ebb9cc3410c0785187446fec4c920f729921d4a74a083261275d5fdc4db62745
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Size 460.5 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
65cc28a7b34196e9fbf477590f10a7388dea55ef19d0225d5d5702d477bfbc35
BLAKE2b-256 checksum
How to use checksums
cd945db106dc96c44a6f83215b7cd3bc336fc9a4c6e616770e9217dcd5877562
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Size 473.2 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
ef9dc7cac56a36db2120a8df3f78c33c1f06833b036f7c8f7889e6016f0bfde3
BLAKE2b-256 checksum
How to use checksums
ea95a9335854b9db1c79b1527cbdd98e506d9a02ddbeaa0f3a7a9287e670eb88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl
Size 331.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
478976b04f9ce46199d5264011c9591df22f9ab63ccaadbcf452a264a4bffbe4
BLAKE2b-256 checksum
How to use checksums
39a39ec4577f8128b64e8c6b4ec0d4c0897f099d088f82647743d49ba3c4c45f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 734.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3831fbbfda6296d61d9da0cc657c7fe8910b63ae0089d2205bb6782aaeb48e61
BLAKE2b-256 checksum
How to use checksums
3dc1f6fea5db18d1d6b7ffdf15625b50134b2b419e8617ddd3f5e8e82f894ebd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Size 773.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
14877de7fcf85dd63050bbaec1583fdfc279d6b254854918b92666703eaa4c71
BLAKE2b-256 checksum
How to use checksums
7ce514e9de593f2a9d52c8748ef26705e8f28c74d4c0ba5f21fd7604b8493664
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Size 807.5 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
be1d830b9fe3c5ddca921c1843a18a676ec7b21cb7efabb6a2b11ec07e69f079
BLAKE2b-256 checksum
How to use checksums
297ca155979345cb341b7f97349011692ccf03318220662b9cb8de037092e88b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Size 694.8 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3ec2216179cfd94c3b5ef9651b0673706977b8138daa851d7333fa8091048591
BLAKE2b-256 checksum
How to use checksums
a6605a6981abcb32accb3a8192c4c5ebb565df68f6222a059ef259f4d500adf7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 530.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1ece3a2ea629ce4372ff127d41995e226ec3440bf4d3a2b46cb4036799113d66
BLAKE2b-256 checksum
How to use checksums
2067b5500e85707648fd15ebd97edd8c0be16235b69ffc5dacdf3419099274a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 552.3 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
eb10f7c74be8dfe94b87a86d697731d4172dcd18a63fcc5603ff92bc1650dd53
BLAKE2b-256 checksum
How to use checksums
7d296d8e37aa72a07b3a1890f3a5b76900dfd1b6fb537c5a4ae62bb1a0ca789d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 673.0 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b83dcdfc51f832eeb4dd331500fce004247b75c648163d381fdd57170d889d9e
BLAKE2b-256 checksum
How to use checksums
95ca8c79344bb5ea4993786f19e23da7cd55200645621bb7f4c1809fe4a0cf06
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 567.0 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
3bc6ecc4d03d96c19442f22af8ede1da0376caf890e968420582a9f0fb462c72
BLAKE2b-256 checksum
How to use checksums
1acb3e7c8c684182ae6cfe8788b02653759df7f3a1505b6202b0e2809a62090e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 531.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
64d4071620f0b897714c0cf3ad1e6bb69190ba35fecef51438f1373fe42beb02
BLAKE2b-256 checksum
How to use checksums
3257d652ae867d9a348c92b577eaf14233fedabeea0a7a16a45e02c9306bec70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3fa60df969273d3e5340b7dce6b2b3d4b9655a7a9cf73f0d24fabc85ead3a4d7
BLAKE2b-256 checksum
How to use checksums
fc9a22895c5052ad6ee7dc8bfeb58925272599b94692f11ecd468e7bf6c7e7e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Size 460.5 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c1809d4a442b7ab7144591433a680d3f198e0948aa7e9d74b2c2814fc89159ce
BLAKE2b-256 checksum
How to use checksums
cdce593cbf7b5845ad3b95c6f3f2692b9d5682cb69d72253b09b281206056f79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Size 473.4 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
8ef59345b517f9f28d2e52500a23f5b775d9a3bc66007292a3e478413bc7e380
BLAKE2b-256 checksum
How to use checksums
bfb8db275a697c4fb8acf476662d65fc50faa146a586beee393fccebaaab55f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl
Size 331.6 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
bff5d65b83979906d165d85c3fc4e7c61a3a1a7ab9263504b8699fdc0e52010e
BLAKE2b-256 checksum
How to use checksums
073520260279fbe41d3e534088837b8bdfce36af5c9a5efdd8f38f0edcbb307e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 732.9 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
93dc032448f9c90970c0c746a2e51ab2f9f323d2f612cc0c17497217c3af4234
BLAKE2b-256 checksum
How to use checksums
c16453377d1fa4b3278b5c8352868513592a7632be46f79c4ae4532c611cd564
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Size 771.8 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6d27ff163a17f9d3defb710837f8640366b6bca1b96c4acffa7322f1642fb61d
BLAKE2b-256 checksum
How to use checksums
da96f30918fe8eb55e018bdb87f96e8d9e5808065c76780164d6a85f300e1677
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Size 806.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7d11ed6fbdaa8ec0cae6d173d4c6247b5b9682553b64186376e7b126733a97ba
BLAKE2b-256 checksum
How to use checksums
bba77e03cb76f310b08d0122573afe83f69331704d46727586c28f6c87b2a843
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Size 693.8 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
bd0625907d4db4845c912e188d7710e1f6206ed0879a6f7bea54cd8b7fbee128
BLAKE2b-256 checksum
How to use checksums
cbde5031f780951e80223f6dcc4ee1457c72a1fc7521cbce18396e14b828c24d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 528.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7891a0cf1de3b91754399d382adab58d3b0959be3ff6e17c868643b14ad558fd
BLAKE2b-256 checksum
How to use checksums
5136c342b25d9779b4c3ae738d6836d8aa59a21d4562782fd15651f2f403e429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 550.1 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
cba8737473c7c5c7c3dfab26c3bf1c4aa34b3eb6ef483ada9ea612578ce6520d
BLAKE2b-256 checksum
How to use checksums
6808d17e8226c3668ccd095bc95358a59c68fe8a4656ba03281d9951d73efb9c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 675.6 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e9670650c3d3aa098a11a6624d43d8686d7c547e1528e3e6114c3b9515f74710
BLAKE2b-256 checksum
How to use checksums
cc9cdfbfdd96fd64e8a56469613b6bfdc057aa589a33efa080ac61a60aeddca4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 565.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
7bcd5ea3017fb07c37c20a87c455fd0fa4703aa4d51d02bd1c159eba56ace1cb
BLAKE2b-256 checksum
How to use checksums
5be8cab66c595d7c327e14e191971719131ac7bfb7fdecc089606f43d23bc421
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 531.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2abeeacecdef34feb913fec9127d276f19c3e8c204fd7adffce64cf2f69b1e7d
BLAKE2b-256 checksum
How to use checksums
8a19f115e326efebf0a859d497b94bf7de2350fbae62c187812bef1382dc851c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 517.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
07bd344090f8dd3baaf25192a3c5e821b3126b436b64c9ccb529900845cf0c8e
BLAKE2b-256 checksum
How to use checksums
a6317e880ff2a54a324cca3232dc68ddd0de42269b13c3e7576eccfa73fc1394
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Size 462.9 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a34a75fcb659ac096d855ef955824d3ceec5478512b3c1d20292425f576d5c79
BLAKE2b-256 checksum
How to use checksums
93f5143e5e04d695360af4d39b7c5bc3613eef3de2063b46d5666b9af2594260
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Size 476.9 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
23b7e8be4fff1f5f788ec0014c75329c101736a81620e015eabdcfb24ceed7da
BLAKE2b-256 checksum
How to use checksums
9a74e4031bc6991b806c76b3ce522632a80ee90684bb5dc4a0ee8e0cea4f8cf3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl
Size 331.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
f932def33af8120a4560876664c56ae9e3ded5a0f197169e2a64d6e637daa86d
BLAKE2b-256 checksum
How to use checksums
2af3c4c74e5bdec8f0cb1b9d990f6a73818e65b8cc94fc362edd75b0efc9c131
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 733.5 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1d2af3802c24b79c6cb80017371e8d30c195d090132b518420e2cb59a110e4fd
BLAKE2b-256 checksum
How to use checksums
79da35296d1aee22866adc0ba94b00ea267e4a00bbeba1d72cde873138ee0ac1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Size 772.7 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1d987f32821523b7a72e6565bd34302e90f5afef1f7db9bf63103021164a7917
BLAKE2b-256 checksum
How to use checksums
11d56849ef97f89a86550ce1e9a7e706d8a91d2474f1f0a846b0c22225246871
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Size 805.4 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
6e1dde7fce719b3aa7115b2431d0eb7e839b65ee82650ebebb26605aad996997
BLAKE2b-256 checksum
How to use checksums
667ef5ef1da4b8fe497f0774841596788b0d8e665dfc54393654f71cc8828ee6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Size 693.7 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4e7c21d48fa2d4c8a30e28f4c5d85df353111e44a6c29b54c9e5168a465a51ff
BLAKE2b-256 checksum
How to use checksums
b2c2f5ff64793f5c76a3f6ac85a5c04f3f67da149db66cac4b3c0cbfeedc2a42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 529.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
77a806c815eb193c1f7f99436ed55c0314259c262252458bdab598389cdd87ea
BLAKE2b-256 checksum
How to use checksums
54f811d4e2758418d2a658abf0d1860bf6d6d497af5ac40f4208c4b0d9b6e34e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 550.4 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
859596c12551372a8c70e3064481309f2f95aa367296e39d525508e3000bec85
BLAKE2b-256 checksum
How to use checksums
e387131db3dd50f32b564e03428debc07e8fe5f929f29696c73e9a036d2a81ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 676.4 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
aa9fe92ba2819cbc926597867670609d26c23466f43a508a0bd99b209400bad8
BLAKE2b-256 checksum
How to use checksums
857acfc84f4b084650d95c9fb216e6f65459bb73ee48b77ed3546298d35f28f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 566.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
1329404f794acd769840758cf68bcb9ee217f3d72cfca4a8067bc5ad5b3b7b7e
BLAKE2b-256 checksum
How to use checksums
50805fe79f649d02957ec99b10eb7ddd5f296995c661e724ade1c3a492161a56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 530.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c6bb0bdd9fdf4f41852f0651faef90e553d8a4e46266c0e577b643de8d6f9cc0
BLAKE2b-256 checksum
How to use checksums
68bf321fa70f4023b740f5b579f34f8171611b90c556e1264ace13eb3d034e8e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 517.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
9b8549dcb420130f22eed5e741af697b105ebe45c83900c34c4d5c682ced185b
BLAKE2b-256 checksum
How to use checksums
d560280b9cb4c76fb85e394e746e7599fef11f31c2600bfa8e0720d28ba879ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Size 734.2 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
625dd2c9cd289c0d58ed8bfbf27296b08bdfca684e53ca156f48c7bb2f4ac0a8
BLAKE2b-256 checksum
How to use checksums
0ddfc17973c5cf78f7f60c8b8512b637e6581534ea32aa76d34a01755cc0a0e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Size 774.1 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
04ac1065e21a429b777c168c41de60268f520559dc7502c7c26301fcd79a1cd8
BLAKE2b-256 checksum
How to use checksums
2ad2d9b8c017482ab48317d77ed671607ac8e59d1e06a412fc846bbf9822c008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Size 806.5 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
f578792d61e8513760e29700e51881142bfd440abcce910fa3552f7e1e2e32e8
BLAKE2b-256 checksum
How to use checksums
88a536f070c6cdb3ce024f4bd5d863104c677dd69619140a1a0338fb92d47bb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Size 694.6 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7b5302f97161e403b1058f74438bb6cfdae7d770586418fcf932f384fa636d9a
BLAKE2b-256 checksum
How to use checksums
9cf7ab7a11cc696018bfd4c42b157a99e4a7387604f0e716ff72c6374b1e86bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 530.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bb1401f041e7ce0d31bfa73f536ecf687f0a3d52b3fd5429b9119eef8efe1b6a
BLAKE2b-256 checksum
How to use checksums
e65ed37711aee77898923dbcfdd278da4900f65b0d6c113244825ee5becc3d6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 551.1 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
c1674e52790cf055966edc4f3efda311490b6f516accc78ea598df8ad2d4d88a
BLAKE2b-256 checksum
How to use checksums
bd1a6e76574332dfe34099ac5563dc215d0c5b395480b07218a04a46aa9d1545
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 676.5 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
78696d3b5af6dfbefd76e36ba0bd73b9633c86f03aa35379a5caec15209caeee
BLAKE2b-256 checksum
How to use checksums
e5aaa298ac946c90ce5ab3b6dc0e8edd74b1934b9025d487a7f4506016e1ed64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 567.7 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
eac6cb44a59d80ba60916bf58bd0bef7df679d52428ce0b7d21cf779fd416caf
BLAKE2b-256 checksum
How to use checksums
c0d32825ae2fe140961ef369cd4ffb32948fd9e9b5fff0dd45b8f8928d677d41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 531.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
7f35dd5905333a6511bfa26e0ccfe63edfab69c8f40957f664465fc694dc4c97
BLAKE2b-256 checksum
How to use checksums
cbe0f28eccb85ccd38cd9b65be15f124c385b468a5044201a33d77692670b0f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
cae1992da52b6adfec28bb6e5d9d8f5b60d00ec5a5ce503f3b3566c5edb87d1c
BLAKE2b-256 checksum
How to use checksums
e63cc3ef6167d27fdcd2d548c8712b766cdceab224b46d3d2ae07df3e9bb5225
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Size 734.3 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
91c747bea40bde965e1184190119690f63f8ca0df415cf0c2cd9b6ab37b39d76
BLAKE2b-256 checksum
How to use checksums
de88e97c32c38d22451c2a0d849970def75b71b1f01b83e953cf965456c387f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Size 771.6 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4ae77b3873e9088ce8d0a7a5dffc038196eef0469500fbb32c49f49ee3abf3ec
BLAKE2b-256 checksum
How to use checksums
f6cbc81663ecbc073c8ea693228e2ac2e6d7521c7cf01257577c7918faadede2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Size 807.2 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
288a61077a639ee9264947c9328f5e578bea04cc91a3be544d20b114929e7d07
BLAKE2b-256 checksum
How to use checksums
088c202ca5ad467d10964484670ab705c2d4a9ed6bdba0a65fa5fa5ddc675e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Size 695.2 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
beeb0ae943221158ce0289bfad71575b90243a5e0d2760273014c0afd0fcb6ac
BLAKE2b-256 checksum
How to use checksums
2b3eff4c94a229c776d4616b84f426a74a0b2ba2604657dd36757c1b62b94ebe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 530.1 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f3b27c85f535aeaed122e5b45dae70b6017a04ef106c9babdf84b7110229cfc1
BLAKE2b-256 checksum
How to use checksums
23b9d0e91793eac407d83387fdf443a92d921e4f0785ca5c939752746bb35bfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 551.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e7dc740a6e9d172be2b277d2bfcad4bc303b5bb86d208c6628b354502b9cd0ad
BLAKE2b-256 checksum
How to use checksums
3b97f7cd375acee3f34bbbc8438f29ec535145c7059a56c4ee5f0dd8cc9e6b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 674.7 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cfd44fcdabd09f07b8369cbebd834317e4b97caff38831c2fb1cbdb5cacbc51c
BLAKE2b-256 checksum
How to use checksums
239ffc89b472d43875472347b315609b4c69714dc950bc89af54d290f22b08c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 565.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
ed6352517d194552c049003fb1ec414690dd69958384e7e07d777b181d09f8a8
BLAKE2b-256 checksum
How to use checksums
5918dfd6acaa5998972480ebc03b836a68a4d8c1483c9b139e348a7b7b637a0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 532.2 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
43733dc72a92e9d6635ac92cc07848bc0de0214ca103baff27df29adeb6a4056
BLAKE2b-256 checksum
How to use checksums
2c7e9f3ca7671b975eb14fd6bc5446d57522e284d784daf3224010a4a08c392f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release files / typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 518.5 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fd04c76b889b4c8b91b8dc405d5e6500e6cfd06e1010e20a3dd812e7fcf03b53
BLAKE2b-256 checksum
How to use checksums
18fdceebd18007b240945d20bf7a34d10bee7f5c8460757a42d33c717b9f5ca1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.12.3

Release history Release notifications | RSS feed

This release

0.2.5 This release

127 release files

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