Skip to main content

Fast rainflow counting for streaming input written in Rust

Project description

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

Project details


Download files

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

Source Distribution

typhoon_rainflow-0.2.5.tar.gz (29.9 kB view details)

Uploaded Source

Built Distributions

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

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (734.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (774.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (808.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (694.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (567.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (735.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (773.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (807.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (694.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (735.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (774.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (808.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (695.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (733.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl (771.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl (806.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (692.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl (331.4 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.2.5-cp314-cp314-win32.whl (316.4 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (734.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl (773.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl (808.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (693.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (567.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl (460.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl (472.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl (733.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl (771.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl (805.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl (692.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (672.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl (330.8 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (733.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl (772.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (807.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (672.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (566.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl (460.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl (473.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl (331.3 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (734.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl (773.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (807.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (694.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (567.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl (460.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl (473.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl (331.6 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (732.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl (771.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (806.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (693.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (528.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (565.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl (462.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl (476.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl (331.7 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (733.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl (772.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (805.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (693.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (566.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl (774.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl (806.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl (694.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (567.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl (734.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl (771.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl (807.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl (695.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (565.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file typhoon_rainflow-0.2.5.tar.gz.

File metadata

  • Download URL: typhoon_rainflow-0.2.5.tar.gz
  • Upload date:
  • Size: 29.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.12.3

File hashes

Hashes for typhoon_rainflow-0.2.5.tar.gz
Algorithm Hash digest
SHA256 196dc9eaa1a9e6408de77415e207fd8fbdc5faefe7bdf29ac13a8b6a06c4256a
MD5 c0878e8da5503e2612107b894eac3030
BLAKE2b-256 501f13bc6d3591ecd7a265d7423254aa3bc8aebe5a6e29dfb0b3109505dc65c1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0712c8f05c3a86f55bfa51ae11e079d7000325901e6fbe06dc06053ace733480
MD5 8db1fe20c8a88f6104b24689502583f5
BLAKE2b-256 98660deb51439b3f8af3873a0d70b0e6941259394a1ab0cd03f1da2f399625c1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73cac3ccec01b3819740e9661ee476927ad473bcace53884965e21d7e5dd42db
MD5 268ab0c7f7f32550c3145f5aa29c7e11
BLAKE2b-256 93cd1041bbef2067fffcd484395a645d23f3141ee49c9fcd2e76705cf961a1d1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b91c4de3d5a8a8ded6506d6bfb41b0d05aa9430876a67c6da003e1becfc83f0b
MD5 ddfe2fe27ec1948023fd16ffd3f45c5c
BLAKE2b-256 21b7f95dbd70a75f64764b4808843023cc6a0c112891d26da13a6353b968cd25

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e66f23daa05b39b4dd306eac23b7bf7b25b528fdeed4bdd62f14cdbc4a5e1bbb
MD5 a740611bc96979cbcc801b1e21808a5c
BLAKE2b-256 467708d58610265f0e7efeb23e6bb1c7fcbe916dfef7f233152672a2e9fc05a8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c236b5c07654459a380c2a81d197770d9e8cc95927cb7c49106cf57cef28ed1b
MD5 879de045ca8f6fe047dc0492bfbe311c
BLAKE2b-256 b0a00546b50aa85a1346efe121ace814ede6b958ede7310e5a1dc762d64c5cac

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ddf2963feda02bff5792453d0473082255bce7a7cbb58944fed72613ef399c4b
MD5 938d5821d77d555c8abe4dc222779ef1
BLAKE2b-256 85ad962c997d561425a53853695f910f97231331c2230873543c8dabc0e0fe95

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25045a176a2423ee056cc54e3187bc5201a3bdbb583753d008a1f7269775ed95
MD5 bbfbcd874c91e16274d73ceb07e7e478
BLAKE2b-256 4d6d2521e0217ab8d0e253886e31877b4072a0b006bf23b951dc787a453e4477

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8ea80d7f94dada29969efca372bd27a0f7e2dab74ae3259287cc10a693b25b9
MD5 d71a7e0b14bc2dc9f0c311936a36d5cc
BLAKE2b-256 3e8a447d3b4248fb90b47be9850405539d016a3f6917aca690eda6b53b94e89d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4992ee4c06effd53dab6d57d83e40184c3aa09bf65092d1f369844bc2adb87f8
MD5 adb8f52fdce860b7ebe6537424ab495b
BLAKE2b-256 88838d6c206e516308982f4db7f79858bccec70b0ae085a405211d6cb4a823b8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2ff85f7b18b4627a40373a82c224054c2c3401247d136fe88ff9d9137469042
MD5 ad8f10938ee234eefe067589099e982a
BLAKE2b-256 50858b7ac2dd148515341a8d767588e6374f169699eebec4a870a1e439a9a3a8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ce3646317364062f070578dc86cc29c2560f4de45a83b932fbeb7512d3d2aa3
MD5 e96acb19720d7557c52628e94caad9ba
BLAKE2b-256 78c6c4a5ea342e27615dd0845f5d38b90e3594d0bcf09786b71d7f34be36db39

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86a74e2ad3009a5dfde2483b95ef670dec3b0ce01f1885e12b13d7c7c9f47806
MD5 a99cbc67f7c880acaf4801037a3b6ba0
BLAKE2b-256 3a546741fc592ae683959a6352adf0cf58428f36e1899d3d29c5b14212b44d2b

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1541d4bb88af2f75d481e22669a10ccbbd41c0cbc6a0d1815e0e666ab9066588
MD5 fcc400a23a28b5e3c581554575052614
BLAKE2b-256 cccf7cf466fd8c2a064ea3866f755715743d803fc1eb7ec4a913f83d1651f28b

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99f8793f3573394fa6d9dfd9deb06b73f3e7ad993d87fc9b472ea48e25f024b2
MD5 c54db0628baa67d34ff6b130ee82ad45
BLAKE2b-256 960ab715550ffd91d769812c80be72456cdc3c4e2d544a2d7aff219a8cc62e52

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec55e24b7b1866f251cfa2703f989838e097f7e05ffc36756c379825095ba81c
MD5 eb768620b2f59457a230ff2598b3c0bf
BLAKE2b-256 68652823b783c9778680d591a96f3b07d1fe1d483b75e3f19bd0deb50b1a6908

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7b281ddadb3a436ea98caad2c6bc2154ca694ed0c5f3be2a2d8e5abecb008f8
MD5 35f22bf5a2be7cb37859214312da81d3
BLAKE2b-256 9e53ccd73fa60fdc0b3ff08da3ea258efed11379136918e70a16d821fe7e3c6d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58e961b37f060cdc587e81e719a71c6ab4a08a9844973dba879264143c58824e
MD5 682848b66c073c16211ef93a2851c037
BLAKE2b-256 a460973fd06183ab47e87e2ab425f5fe1388a4a0e8515a2d9b84370d578d9dbf

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c2b26dcce751cf44bd8132f2e1f1332d053f7473a8a7173d3e5b2e515e4b1dd
MD5 13d1513243a3a8008e79d269f29489ff
BLAKE2b-256 4f2428824a0092a09770a0ae3dfd86b1427faa76bf23e76b9c0815baff772935

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bd9e7dcfb45935b08029e5486ff74c240d8df45d5afc082c1ea353539ccab50
MD5 b59e81a0c7dc11ebb1be68f79b9e1c01
BLAKE2b-256 218a9fcd37c10d305d436a295beb6eea92e9ba7cdd8e2e69bd9d4fa971090e7a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d1ac0be7ba92aa26a4269a7b9dff2c2e70fec3f197aafc4fc6ba3845cb850c9
MD5 6e13b61e65190b6e69ba271c0f863c75
BLAKE2b-256 eee04bfadc35aabbca77a394aed0ba64194784fb4b328979cf07f3299cca58e0

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 022f59d587ada9676321dfb07b188877c722632a5ed1e57d0ff8e10dbc442298
MD5 a86dfb1a08ca3426f4049e6512dd4772
BLAKE2b-256 29fc55a7886d552e70e0a4ca900b84e3002b1927ea636648a534d88a015d1220

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0893a7d62b27228659e655c9c4c2d258e554212819ad78fde611878be54d5a2
MD5 94bb250e400ce4929c302516730c424b
BLAKE2b-256 810daee6ecc3682759d5eafdc6fd14922c74165ac8dc9d40af290f73287560d4

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 559a816bc6e1fd3b1431d7b94c36bc9f2f803ab4710e925cdfd3126f40677cdc
MD5 5f4d9fdc69130058e8624146c7e8299f
BLAKE2b-256 38f7530febd71d41f99bdc348e9e05b045351f827dd5b2c545d57e9cc9090c3f

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a102c2206f860fb3df15a4f07732ca2f0ebc6c8b8eeafc15db0f19a68ae2275
MD5 653915ff7cc8f5e5d54c55fbe8b26ebe
BLAKE2b-256 8caa1a0f8de45ba87b1b5d3ceb2c0077bff3a5f4aa7076d881676448a7e67bc4

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df984ccb3cfc728b93f230ffbfe23cf65b397aa1c96bf9bbb2cd0ff9518f3682
MD5 e4561e307f0d593792f30dedcec63dea
BLAKE2b-256 aed5cca77fb9bb40bf4aaf36260c3a42777827a51c55b0f63cb8d09eb077ca80

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e40101a86dc4bb4cef672d7ed69de7352b270d8834cf0942337dffd8474f5e2d
MD5 04182400188029af41ebedb1865b8de2
BLAKE2b-256 897c7d5e5aaee98c2fdd5ab18c3df069d7756cde324a43e331098c34927f1870

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3fc9c3ea5d748cb86510cbce885d4deeaa70dff6be4d6b624295fd0f9b4a30c
MD5 d600657b9987055d023d0d6ba4ad85d0
BLAKE2b-256 ada5f6563e72cbd683e55c0abbca5ffb7d32b5093db47428d3958b7a3ed765bf

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87db95b799427e28926d10992bc43e6ab9706bd9a071a988e5a39a21eb8c7fe4
MD5 6db15a503c91e3b302cdf2c87803fac7
BLAKE2b-256 bd93d923ce24f14861b560732af6fc0deba0664cbad1c570dfc1fa6025c9c998

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2635789d94ce386076cad8eb4c25713dbc2ddecb7a332f6fd5d3222ae1ee4920
MD5 aa62c273267334b09930cf88370f2701
BLAKE2b-256 b16bd823bea4da9c3ac7fa7dd33c06f722945daeb46bab021063bbe23ba42fb7

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d3957d2882d6230bec249e4a3257bd87255398b27133705f3f39474908c5c14
MD5 ad54a53ddc3987c359cd408644ef1a95
BLAKE2b-256 403da3dca034fd1e4229a74ac4585fdc173919735717d413fc5a4c76ba535dd8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 394b0da68495980ab9ce13fa5d04ddf1fa2b5a71f8b799db22ebc4ec17cf8b9d
MD5 7bd4f9bfcfe2b76ed08b35d2f61f8ae8
BLAKE2b-256 4c1033ec96a176604214b154223be9cfd1619573c6c196e2c9651f4f74312bbe

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42b7d989b80659b92d579a452f47d071bcc0b960eaf449885c9ed45ebfaaaf09
MD5 b9f6444ff85a4d659b01dbdb40586a7a
BLAKE2b-256 e523342e4163a0d231d7683653fcbe95fda56a50b3726a4746ca109f51132629

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9341b5c56a29a0d5e0a78f79659c0037872585450c3f681551ee022e136ff19f
MD5 63078dc8c8a2540850a198807c74c549
BLAKE2b-256 86c88e845a1de95b3bd8cf46ee30b47af9cdf8a66649d9dc0e6a3ceb92251708

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b164df38682612738ca8da10616deeac52a5f448ab2b9d21a94f2832762ed6cc
MD5 2be2245460b95a8b2fe57c843669d8fc
BLAKE2b-256 695513e240942ae8dcf64960d3fb6b43b291529426867861e6bfd32ca6c91dbe

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 54cf509b665df3e7bfde95e5bca4ff70c168cfc10764a12ea5ffca99f0b432e2
MD5 f8cd31e4c442893bc8aeae42f622be49
BLAKE2b-256 3e81f20b3c1cfb8dcb6babe883a73c30101046954547367ddcd344349aff669e

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 349fb76c43da3e4bcd62415ee9a2adf878c7398b4d3662d756f1e7c3007176f4
MD5 258198b1cc8fcfc127d00b2dea7d604e
BLAKE2b-256 745b95d13dc473ff71b65f1ab1c14a654d150fe6fd825553e29907b8ad514e20

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2f246d5e8c4acc5a6c3f4f1c93cb03818b2ca4ec85838ce643dc1232eb40463
MD5 06f6965b767508cec96ea0ae4577a7a2
BLAKE2b-256 41ac373bc3b74310ad7d11e35f701cef821c35e47bdb6638a73aabd4b3ee74b8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61aaa4740fde83cacd28118c34047d87669a65cb4b429a0c220e2a783e0cb00e
MD5 a94ba3fef0442c323b34f2db4536ff0b
BLAKE2b-256 3825c3cd48f65605d1f933dda0ad4877248c30793d153f651851979ef143274a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f3797c3c367709225394df72e1fe4448c8ea7897654b02fa62f9696e3abfe66
MD5 06682e2df65c3c414ddff78bec73875f
BLAKE2b-256 11f880a804134f475104b7401f60e6deb45f6785c47dd5b7e949ede88c92228a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c020d5c02eab24d222c317e762bdf78b706e075f5a3d44369e073e4b9a9b897e
MD5 66c309ce870f520659808ac5fca39ca6
BLAKE2b-256 86d4ee80a4e469094269b11174bb90fd657ee1fbf84bc5bb82b7c42ab676e664

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d3ae317709a5fb4a08bb15f2b6b291cd2b2a1db8cdb2dd7270e730f703740e1
MD5 82061fde1139450c9e9d7ff14902cfd6
BLAKE2b-256 408d4c35553b6d836b0e8683f11e0d6982dc457d49acf4ff7a77e03ef8e8aa98

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09a9b973bac0e35cdab7867a8836fdffa9dfe05e23298e8b39fcfd209acca0bb
MD5 b26fbeba18011a222c5fd249dc3c790e
BLAKE2b-256 8b5cf05d6a61f2d4c4a1cad5d4b129796bc21d524feadca0839c2cda373d6b83

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6591f419e5a369d71225998e29c7c7a71d0177c141c02d5b61d203a0aa1fbfb8
MD5 4c9ce1b5b0dfa32e9d2d4d5c2fff7954
BLAKE2b-256 b6ac53ae8032ae0b2708025386cd2515cf1d884e7ff2fbf5bc1d52f4a7ae7436

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 309cc9bab3599b03bd6f3ca81bad292fbb6da3bec8914590ce32c23581eec25b
MD5 d886ce2532af7bbc6bf33788b1b68eaf
BLAKE2b-256 06f46b11c4a6d4d5bf85344086489d22d030dfcddf4c589abc7d03f9844cba2a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf51533f71fb7d59c2324aa770896ed56e61c63488b6c417931dbdb79a4e26e9
MD5 5bb1fad0f257c5720e6b82f134d2ef68
BLAKE2b-256 b0dbcc5d7b1940689e9281b19201eb56f3b39cd5f7d70b155831cfc695779648

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 647286d7667d12c1eca90737bbb2d353bb3744479b5c73186aaa555c096888ed
MD5 9ff1a6bbab2147097c1192a62bc9847d
BLAKE2b-256 0c454d26fa20d0b1f753a4e64e9ba565678771847d343426e5cb5acbac02a55d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fae61547b6e031ee132af7f9b8ab3eb6fb2434361882ed758c5fafb3916b597
MD5 3ab16babe40d381e208c1b997d38aed5
BLAKE2b-256 cb3610708979fed3de4e6c94935277de0a240e7852fc3ce5210221f36bad8119

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adc9951d28d4f49123066b5b9e1353523bc1ddaae2f3818b6b700f625d72de15
MD5 efa1bc57be112de491c63917ff7bcf15
BLAKE2b-256 4233be31b07907b6d803fe60ef99d3c21cc6b2c18b326c8a4ecd7345dbd110e3

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1aeb16001f920ecbce5e8d778d07c76f5fe94abf242552428b7672441f8db86
MD5 2b4728288c510a93fadaa8b18e8bbe4e
BLAKE2b-256 d83ac289b820c02d9929b8ab72d71c079022466242783e80e1e768ff5de7a85d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 230249d6f5c0a29dc33515d1c8ae6116d0955abb72589a27d75c419dc310b50c
MD5 4c6e4d5c0b7fbd72b63f695f94db6962
BLAKE2b-256 eb4c19d31cd49ab4f2909a5f7b507e418f2cb0601beda13f3b16fb05730e054b

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bda9c90141b5cd71956c3f9051cb2570bd270bd0d94a787aae21b6357ea6c1e8
MD5 be6259d01e8ce66ea0f3229e1e395dc1
BLAKE2b-256 0cb58575571de24b583f15b233305ba44f41d0655836448c0ec5dfddc1e44e3d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12902978b178d5317b4e9affac4ccd26b907e1d72a28588eec68d87480f91b63
MD5 e814cff7637e56e14c402cddb439cf35
BLAKE2b-256 9c43c38df538f6e8ac2f8aa05becd5730a858918e5c2ae5d6105f4a8279a8978

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c983659ca597874258f8854a447ee838aaba17d7086f5280c378011f5616e5b7
MD5 da6c62b0f9e074ae16bebdb8804aaaaf
BLAKE2b-256 0e95763b3c05d5e1f373a982dde58c65fecfc3b9635994701e28ecff857d1acf

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8741e2d52f77c3618d1364a590784696d0adc8f12daca588d836e01cec2ce6
MD5 91e34049f1e8c44fdfddb77d82eaa789
BLAKE2b-256 04b8e819c82e1f31db0be63ead58fecd051b50da58f685f7ae769657699e57c8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb703366882f2a11163bd697031cb4300c6cdcc0e6c9f7dedf6f0686577eb003
MD5 f4a01ce62d088d912362a7ed87d85840
BLAKE2b-256 c4ac08f111daf6e9570424733546cc1e5a4370147a9e4809a5f645218afb65d8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c79d715ccf9b9a1dfecf9b046a0f869357024d6e6ece32ab4fd31b6f8c1bae12
MD5 08af866b5934ea513786c0f9ea39cb29
BLAKE2b-256 589f592ac97fee556bd6aa9c759259ffe5e290f1dee14c226da6c39910b1558d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7d8c540967e948c62a61202956ea82709932cdc2b33eb77caa85ad43a2da5d65
MD5 1815204ac8ef899c6acedb0c8afa5fcd
BLAKE2b-256 5ed4e3f3a3be00801c1b8402763100dfac593d16137a61a1b0c7e82021568975

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1719146be46960117caa15a58e20ea61e64753f9918b7a999ff120fbff911ad
MD5 3ed529531f5c4f13801faa56fd403196
BLAKE2b-256 d539ec32b72e108346e62febcab583c8fb879925a1395f87f25df46102ade1b6

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8118bbfe3bb42a70609c33a068cf61d72c0c1a5d0baad796992bcee36926de59
MD5 4492872669fd230051ffbbb64e10f156
BLAKE2b-256 8c00951b9122a76f4e0c813b6509635ced948104fd6fe61a91feb30b62f9d718

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7404f4b802409bf470bacbd1b603a7627602418273ec28e7c6ee0eab651ddaea
MD5 b43262a230a2e4fdf3506172b34ea633
BLAKE2b-256 ebe50ade265c53a6322b8f10e1a1e969d8f122518843e80d9c3caa513dae827a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a03c0af99c4750551ddbdcbe36fda2cd5c5411caeb259c36ae9c9e80aae3d75
MD5 2237492e2be131dac0a02b8e32c18d18
BLAKE2b-256 514d1df1a6c8605e5717bcf2975cbe12ed55778b9dce4145c5658130e826c841

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad6876bfd97e90ec778139799bed99c5843fbb5a1703bc6b87f0d30637cc3834
MD5 63d0d7cc0dbe1aeaac59b4cb6b351844
BLAKE2b-256 401465486ed48c80bbb4a12b11efba69149c83afb921b144107613874a30e863

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10c4486bfb1530f94d79c5b91c7311e1a25b03ce54505e71d218e617b1bd0789
MD5 ffdce4cb23137dca1b31f930ee4be755
BLAKE2b-256 df4bdbff8ec8fbcae948a8e20f7e549e7f8ecdb2780607084189b04b43321ab5

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7db7f412e5eae022c274191713389b8ede0bf3de0dfa0296dd640a6fb60f8813
MD5 7816b47d981538245030fc2272534f51
BLAKE2b-256 ad46c00414e2878e1eb9e799a97c3f6b103eb2cb2274a828283739bfced049a1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9825730ee9f3c9a8013b769cc991ff7591b4b3fdff58effa9c945e2c7e09d42f
MD5 985b489290a4c177cbbadbd554088bc4
BLAKE2b-256 98b0089ea91f0e8d801b7147f647f67d9ffb7ca6dd52a4c64edfcd6550922c87

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86a652479ac36d4acb0a066329fd3b39c81413be83c60b89eb483c449245c944
MD5 a1f775b304ac7f555f692256f9ce2167
BLAKE2b-256 8c8f2983b2b85ffba18bf81af4abbf7be46a5749aab3b8e46d14c17a600aeac6

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0f2425f0615eea90e2691d47b162b3883c7766480a07e154259275bc01bf8a8
MD5 f8817d93800dbe24965b0845004b91a8
BLAKE2b-256 ebb9cc3410c0785187446fec4c920f729921d4a74a083261275d5fdc4db62745

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65cc28a7b34196e9fbf477590f10a7388dea55ef19d0225d5d5702d477bfbc35
MD5 d615cb913670de1d4cb8b70f39cf7f7f
BLAKE2b-256 cd945db106dc96c44a6f83215b7cd3bc336fc9a4c6e616770e9217dcd5877562

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ef9dc7cac56a36db2120a8df3f78c33c1f06833b036f7c8f7889e6016f0bfde3
MD5 6c54a532045a0d3bf3e5f6bf45fa4714
BLAKE2b-256 ea95a9335854b9db1c79b1527cbdd98e506d9a02ddbeaa0f3a7a9287e670eb88

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 478976b04f9ce46199d5264011c9591df22f9ab63ccaadbcf452a264a4bffbe4
MD5 13cbb215fc764a51d959570d9f82d8f3
BLAKE2b-256 39a39ec4577f8128b64e8c6b4ec0d4c0897f099d088f82647743d49ba3c4c45f

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3831fbbfda6296d61d9da0cc657c7fe8910b63ae0089d2205bb6782aaeb48e61
MD5 da1ec7725ba2463f8e3d7f34a421ec9f
BLAKE2b-256 3dc1f6fea5db18d1d6b7ffdf15625b50134b2b419e8617ddd3f5e8e82f894ebd

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14877de7fcf85dd63050bbaec1583fdfc279d6b254854918b92666703eaa4c71
MD5 534130872151b2aa289f3c47802e0c36
BLAKE2b-256 7ce514e9de593f2a9d52c8748ef26705e8f28c74d4c0ba5f21fd7604b8493664

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be1d830b9fe3c5ddca921c1843a18a676ec7b21cb7efabb6a2b11ec07e69f079
MD5 5382d18b288562551d4b65f59f61c62e
BLAKE2b-256 297ca155979345cb341b7f97349011692ccf03318220662b9cb8de037092e88b

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ec2216179cfd94c3b5ef9651b0673706977b8138daa851d7333fa8091048591
MD5 c4f2ce6a1db832e9f1451dbf2afc7cb4
BLAKE2b-256 a6605a6981abcb32accb3a8192c4c5ebb565df68f6222a059ef259f4d500adf7

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ece3a2ea629ce4372ff127d41995e226ec3440bf4d3a2b46cb4036799113d66
MD5 db4f07ee1d3149ba612f3ec2bac56aac
BLAKE2b-256 2067b5500e85707648fd15ebd97edd8c0be16235b69ffc5dacdf3419099274a0

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb10f7c74be8dfe94b87a86d697731d4172dcd18a63fcc5603ff92bc1650dd53
MD5 4b829d7be23e9c5f1c458d6ac01e17b1
BLAKE2b-256 7d296d8e37aa72a07b3a1890f3a5b76900dfd1b6fb537c5a4ae62bb1a0ca789d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b83dcdfc51f832eeb4dd331500fce004247b75c648163d381fdd57170d889d9e
MD5 43c7305da958912cbcc2176c15fcd5a0
BLAKE2b-256 95ca8c79344bb5ea4993786f19e23da7cd55200645621bb7f4c1809fe4a0cf06

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bc6ecc4d03d96c19442f22af8ede1da0376caf890e968420582a9f0fb462c72
MD5 0ddbc21ca4731df6bf5a7da55707e0cc
BLAKE2b-256 1acb3e7c8c684182ae6cfe8788b02653759df7f3a1505b6202b0e2809a62090e

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64d4071620f0b897714c0cf3ad1e6bb69190ba35fecef51438f1373fe42beb02
MD5 4c879c96c6fe0296354696a44dce0d12
BLAKE2b-256 3257d652ae867d9a348c92b577eaf14233fedabeea0a7a16a45e02c9306bec70

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3fa60df969273d3e5340b7dce6b2b3d4b9655a7a9cf73f0d24fabc85ead3a4d7
MD5 6a7c77986502111ade800757b6d9dbdf
BLAKE2b-256 fc9a22895c5052ad6ee7dc8bfeb58925272599b94692f11ecd468e7bf6c7e7e7

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1809d4a442b7ab7144591433a680d3f198e0948aa7e9d74b2c2814fc89159ce
MD5 3d5141fcd54e5f01f277365017acc9e7
BLAKE2b-256 cdce593cbf7b5845ad3b95c6f3f2692b9d5682cb69d72253b09b281206056f79

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ef59345b517f9f28d2e52500a23f5b775d9a3bc66007292a3e478413bc7e380
MD5 5bf4fea562ca03f3ed9fca9b4433d883
BLAKE2b-256 bfb8db275a697c4fb8acf476662d65fc50faa146a586beee393fccebaaab55f1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bff5d65b83979906d165d85c3fc4e7c61a3a1a7ab9263504b8699fdc0e52010e
MD5 b76a3cc3ce3701b9f852d4f0c9ffa69b
BLAKE2b-256 073520260279fbe41d3e534088837b8bdfce36af5c9a5efdd8f38f0edcbb307e

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93dc032448f9c90970c0c746a2e51ab2f9f323d2f612cc0c17497217c3af4234
MD5 73b63b86504e664cbcc37158f8c5ccde
BLAKE2b-256 c16453377d1fa4b3278b5c8352868513592a7632be46f79c4ae4532c611cd564

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d27ff163a17f9d3defb710837f8640366b6bca1b96c4acffa7322f1642fb61d
MD5 e6fa160b6306015f0d5a0a1e63b0aefc
BLAKE2b-256 da96f30918fe8eb55e018bdb87f96e8d9e5808065c76780164d6a85f300e1677

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d11ed6fbdaa8ec0cae6d173d4c6247b5b9682553b64186376e7b126733a97ba
MD5 1ebcced3ead4de5b0524ebcf0e361037
BLAKE2b-256 bba77e03cb76f310b08d0122573afe83f69331704d46727586c28f6c87b2a843

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd0625907d4db4845c912e188d7710e1f6206ed0879a6f7bea54cd8b7fbee128
MD5 2fc8b3c134a08238608c0682dd65636d
BLAKE2b-256 cbde5031f780951e80223f6dcc4ee1457c72a1fc7521cbce18396e14b828c24d

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7891a0cf1de3b91754399d382adab58d3b0959be3ff6e17c868643b14ad558fd
MD5 010b5e8d160aa28eb799bb934a36e070
BLAKE2b-256 5136c342b25d9779b4c3ae738d6836d8aa59a21d4562782fd15651f2f403e429

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cba8737473c7c5c7c3dfab26c3bf1c4aa34b3eb6ef483ada9ea612578ce6520d
MD5 a4c3af62a7e947dc32d27bee3182a76e
BLAKE2b-256 6808d17e8226c3668ccd095bc95358a59c68fe8a4656ba03281d9951d73efb9c

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9670650c3d3aa098a11a6624d43d8686d7c547e1528e3e6114c3b9515f74710
MD5 1ed2d048fdce7b007f365e6f9d010aaa
BLAKE2b-256 cc9cdfbfdd96fd64e8a56469613b6bfdc057aa589a33efa080ac61a60aeddca4

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bcd5ea3017fb07c37c20a87c455fd0fa4703aa4d51d02bd1c159eba56ace1cb
MD5 90a5464d1f68a0dfb85462cf14666663
BLAKE2b-256 5be8cab66c595d7c327e14e191971719131ac7bfb7fdecc089606f43d23bc421

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2abeeacecdef34feb913fec9127d276f19c3e8c204fd7adffce64cf2f69b1e7d
MD5 b19f889135742f3732a1b5be4b1d8aa3
BLAKE2b-256 8a19f115e326efebf0a859d497b94bf7de2350fbae62c187812bef1382dc851c

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07bd344090f8dd3baaf25192a3c5e821b3126b436b64c9ccb529900845cf0c8e
MD5 139fce99fe02511502143032f933dbf0
BLAKE2b-256 a6317e880ff2a54a324cca3232dc68ddd0de42269b13c3e7576eccfa73fc1394

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a34a75fcb659ac096d855ef955824d3ceec5478512b3c1d20292425f576d5c79
MD5 24aee4d37ff453492f376e718b63dd9d
BLAKE2b-256 93f5143e5e04d695360af4d39b7c5bc3613eef3de2063b46d5666b9af2594260

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 23b7e8be4fff1f5f788ec0014c75329c101736a81620e015eabdcfb24ceed7da
MD5 e1b1c67f963454c8c0eedad89a71943b
BLAKE2b-256 9a74e4031bc6991b806c76b3ce522632a80ee90684bb5dc4a0ee8e0cea4f8cf3

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f932def33af8120a4560876664c56ae9e3ded5a0f197169e2a64d6e637daa86d
MD5 82644e754df5bf82f6ecb186b159f6ae
BLAKE2b-256 2af3c4c74e5bdec8f0cb1b9d990f6a73818e65b8cc94fc362edd75b0efc9c131

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d2af3802c24b79c6cb80017371e8d30c195d090132b518420e2cb59a110e4fd
MD5 cd4b3e18d1cde88afe494413d7693140
BLAKE2b-256 79da35296d1aee22866adc0ba94b00ea267e4a00bbeba1d72cde873138ee0ac1

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d987f32821523b7a72e6565bd34302e90f5afef1f7db9bf63103021164a7917
MD5 c2c4885d6755e71209c9cfdc9608e658
BLAKE2b-256 11d56849ef97f89a86550ce1e9a7e706d8a91d2474f1f0a846b0c22225246871

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e1dde7fce719b3aa7115b2431d0eb7e839b65ee82650ebebb26605aad996997
MD5 4fac4bfb445387d89186f12159333b31
BLAKE2b-256 667ef5ef1da4b8fe497f0774841596788b0d8e665dfc54393654f71cc8828ee6

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e7c21d48fa2d4c8a30e28f4c5d85df353111e44a6c29b54c9e5168a465a51ff
MD5 94e442b2ae3489cae9f0cfe5c5628705
BLAKE2b-256 b2c2f5ff64793f5c76a3f6ac85a5c04f3f67da149db66cac4b3c0cbfeedc2a42

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77a806c815eb193c1f7f99436ed55c0314259c262252458bdab598389cdd87ea
MD5 12510c1f0663dd6f021e5cb6b78241b6
BLAKE2b-256 54f811d4e2758418d2a658abf0d1860bf6d6d497af5ac40f4208c4b0d9b6e34e

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 859596c12551372a8c70e3064481309f2f95aa367296e39d525508e3000bec85
MD5 f9c4736db6c9f31b745e110242370a33
BLAKE2b-256 e387131db3dd50f32b564e03428debc07e8fe5f929f29696c73e9a036d2a81ab

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa9fe92ba2819cbc926597867670609d26c23466f43a508a0bd99b209400bad8
MD5 8b7927f7d00cef481ebe4492cfd7f411
BLAKE2b-256 857acfc84f4b084650d95c9fb216e6f65459bb73ee48b77ed3546298d35f28f0

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1329404f794acd769840758cf68bcb9ee217f3d72cfca4a8067bc5ad5b3b7b7e
MD5 eba3a6bed39c8c939c61fac5810018ad
BLAKE2b-256 50805fe79f649d02957ec99b10eb7ddd5f296995c661e724ade1c3a492161a56

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6bb0bdd9fdf4f41852f0651faef90e553d8a4e46266c0e577b643de8d6f9cc0
MD5 051fddf47b849e46736197999102e29d
BLAKE2b-256 68bf321fa70f4023b740f5b579f34f8171611b90c556e1264ace13eb3d034e8e

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b8549dcb420130f22eed5e741af697b105ebe45c83900c34c4d5c682ced185b
MD5 1098ed0730a9ab203e5f1047d32c0501
BLAKE2b-256 d560280b9cb4c76fb85e394e746e7599fef11f31c2600bfa8e0720d28ba879ce

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 625dd2c9cd289c0d58ed8bfbf27296b08bdfca684e53ca156f48c7bb2f4ac0a8
MD5 9cbb8a40190692bf67c0150f560b2e86
BLAKE2b-256 0ddfc17973c5cf78f7f60c8b8512b637e6581534ea32aa76d34a01755cc0a0e0

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04ac1065e21a429b777c168c41de60268f520559dc7502c7c26301fcd79a1cd8
MD5 1ffbc01803c01b1a9097504ef6ed6037
BLAKE2b-256 2ad2d9b8c017482ab48317d77ed671607ac8e59d1e06a412fc846bbf9822c008

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f578792d61e8513760e29700e51881142bfd440abcce910fa3552f7e1e2e32e8
MD5 d42a286c3e8a1f49d9215c5cd89acb29
BLAKE2b-256 88a536f070c6cdb3ce024f4bd5d863104c677dd69619140a1a0338fb92d47bb8

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b5302f97161e403b1058f74438bb6cfdae7d770586418fcf932f384fa636d9a
MD5 c7c6578e97a9b53af9163dfffa9a4bd9
BLAKE2b-256 9cf7ab7a11cc696018bfd4c42b157a99e4a7387604f0e716ff72c6374b1e86bc

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb1401f041e7ce0d31bfa73f536ecf687f0a3d52b3fd5429b9119eef8efe1b6a
MD5 1a0a55b18d0518a8611f0e6a358022fa
BLAKE2b-256 e65ed37711aee77898923dbcfdd278da4900f65b0d6c113244825ee5becc3d6f

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1674e52790cf055966edc4f3efda311490b6f516accc78ea598df8ad2d4d88a
MD5 0d76840bd6a04e1ba8ca00a23ae3d424
BLAKE2b-256 bd1a6e76574332dfe34099ac5563dc215d0c5b395480b07218a04a46aa9d1545

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78696d3b5af6dfbefd76e36ba0bd73b9633c86f03aa35379a5caec15209caeee
MD5 e96a417579c8451c3d26a46a0393a6cc
BLAKE2b-256 e5aaa298ac946c90ce5ab3b6dc0e8edd74b1934b9025d487a7f4506016e1ed64

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 eac6cb44a59d80ba60916bf58bd0bef7df679d52428ce0b7d21cf779fd416caf
MD5 7438b9770a46664980cbf0286780e241
BLAKE2b-256 c0d32825ae2fe140961ef369cd4ffb32948fd9e9b5fff0dd45b8f8928d677d41

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f35dd5905333a6511bfa26e0ccfe63edfab69c8f40957f664465fc694dc4c97
MD5 15e3ae8bd642cf3b6b72d1a731802d6f
BLAKE2b-256 cbe0f28eccb85ccd38cd9b65be15f124c385b468a5044201a33d77692670b0f7

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cae1992da52b6adfec28bb6e5d9d8f5b60d00ec5a5ce503f3b3566c5edb87d1c
MD5 97d0088149b4eefee450d0b8fac92aeb
BLAKE2b-256 e63cc3ef6167d27fdcd2d548c8712b766cdceab224b46d3d2ae07df3e9bb5225

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91c747bea40bde965e1184190119690f63f8ca0df415cf0c2cd9b6ab37b39d76
MD5 542668b2da42ce60ab6d9ca84c63ec2f
BLAKE2b-256 de88e97c32c38d22451c2a0d849970def75b71b1f01b83e953cf965456c387f2

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ae77b3873e9088ce8d0a7a5dffc038196eef0469500fbb32c49f49ee3abf3ec
MD5 2cff0535ab18a044336bb49da9f4eaa9
BLAKE2b-256 f6cbc81663ecbc073c8ea693228e2ac2e6d7521c7cf01257577c7918faadede2

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 288a61077a639ee9264947c9328f5e578bea04cc91a3be544d20b114929e7d07
MD5 e437c91920b445c25f5b61230b18cba9
BLAKE2b-256 088c202ca5ad467d10964484670ab705c2d4a9ed6bdba0a65fa5fa5ddc675e0a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beeb0ae943221158ce0289bfad71575b90243a5e0d2760273014c0afd0fcb6ac
MD5 4222f87a463f521d6d883ed294cf8984
BLAKE2b-256 2b3eff4c94a229c776d4616b84f426a74a0b2ba2604657dd36757c1b62b94ebe

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3b27c85f535aeaed122e5b45dae70b6017a04ef106c9babdf84b7110229cfc1
MD5 27a77edda81fc7faf9968a984a2a414b
BLAKE2b-256 23b9d0e91793eac407d83387fdf443a92d921e4f0785ca5c939752746bb35bfd

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7dc740a6e9d172be2b277d2bfcad4bc303b5bb86d208c6628b354502b9cd0ad
MD5 f830ee9c6827d406da7a52b17f2d0da4
BLAKE2b-256 3b97f7cd375acee3f34bbbc8438f29ec535145c7059a56c4ee5f0dd8cc9e6b9a

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cfd44fcdabd09f07b8369cbebd834317e4b97caff38831c2fb1cbdb5cacbc51c
MD5 bbbbf9550575dfe1e46a9b621090a2c6
BLAKE2b-256 239ffc89b472d43875472347b315609b4c69714dc950bc89af54d290f22b08c6

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed6352517d194552c049003fb1ec414690dd69958384e7e07d777b181d09f8a8
MD5 13ea42129fa727495d7c13d0e3b81c2c
BLAKE2b-256 5918dfd6acaa5998972480ebc03b836a68a4d8c1483c9b139e348a7b7b637a0f

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43733dc72a92e9d6635ac92cc07848bc0de0214ca103baff27df29adeb6a4056
MD5 4b052bb7921174866b274aedecf01150
BLAKE2b-256 2c7e9f3ca7671b975eb14fd6bc5446d57522e284d784daf3224010a4a08c392f

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd04c76b889b4c8b91b8dc405d5e6500e6cfd06e1010e20a3dd812e7fcf03b53
MD5 17d82ec4bd205adf42805c804c34afa2
BLAKE2b-256 18fdceebd18007b240945d20bf7a34d10bee7f5c8460757a42d33c717b9f5ca1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page