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)

    • 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.
    • 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): 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): 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, 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.2.tar.gz (28.8 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (723.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (760.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (790.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (684.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (553.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (723.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (759.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (789.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (684.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (724.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (760.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (790.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (685.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (665.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (509.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (720.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl (757.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (788.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (682.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (539.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (659.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.2.2-cp314-cp314-win32.whl (302.0 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (722.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_i686.whl (758.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (789.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (682.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (552.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (449.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (458.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (720.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (757.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (787.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (682.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (539.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (658.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp313-cp313-win_amd64.whl (319.0 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (722.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (758.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (789.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (683.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (660.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (551.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (449.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (459.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.2.2-cp312-cp312-win_amd64.whl (319.5 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (723.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (758.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (789.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (684.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (519.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (661.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (551.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (449.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (459.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.2.2-cp311-cp311-win_amd64.whl (315.8 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (720.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (758.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (788.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (684.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (539.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (551.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (452.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (464.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.2.2-cp310-cp310-win_amd64.whl (316.1 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (719.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (758.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (788.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (683.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (539.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (551.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (507.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (720.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_i686.whl (759.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (789.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (684.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (540.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (553.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (519.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (722.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_i686.whl (757.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl (788.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (683.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (539.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (662.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (550.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (508.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.2.2.tar.gz
Algorithm Hash digest
SHA256 88318722ed88db8ae6f6a41f6717d7fafffa5ccf411ac18c09ea8f2b4a4d5ca7
MD5 abe29d7ef885111a9b95acf0e9fa078c
BLAKE2b-256 356240b5ef8d8b0ee1daa5ca36256f3806583b9023bcb2051c83179672740fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad9f6380aac8ebf0fd14ab06b4caa981ef446261969a62ffa71316c6e90511e4
MD5 3087f60f0951784a30d16ece414b77fb
BLAKE2b-256 ca9a7898b9edfbcfbb65701bbad2fe19356c6b0a340ee8f65321ffaf53a2a2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c3882dd5f593d5e20fe9b73ed0b86506899f4abe1e2008adf9ecad448c05e146
MD5 997cf3b4441fda65d665d59c3b20bdf0
BLAKE2b-256 3b717da36b43544c31a3b49c342d9b2f2879b7233efa6d960446a4d991ecda1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8405a4b370bcaadc79a7e3cd60a8b3c9404f786b834da00362e33aa0673759ab
MD5 a2e2c72f1241891b0f8e1e7fd3723314
BLAKE2b-256 b0a0d941c97f0dc9545416795080b046ecdeb84c6644b95a54fa2777119a52ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcf311423e0162227c63d9a273f875c72095ca80e223f0e978e32f1008eb9551
MD5 ac1d2a5006dbbaa7ff6cb2437741839d
BLAKE2b-256 8f104176a57b7e5b81720ce2eb151b2b7fd053d2e966cba00f8be39da82893b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6350f4f851ef88f07c133cf2895ae6c3c969c3a303cd774a9f427e62eeda2abf
MD5 3c108b99026552278f5ad29a21cd9004
BLAKE2b-256 c313dab10cd679dfce21faaef6d0f68bada4b4ca7aa809ce1b9dcfbdcbf68d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f53e35ec45c6b22683bbbff878ca34ffd53639926ba5b538c8a27a84b77d0e7
MD5 544348ada2ea08f1ffdc93cad4ca023f
BLAKE2b-256 c26ba7459ef9624269d6c51bdb91d9e6c9dea113ad4e676c4426085beddd6150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9d5db4203b8c40ac248a5014631be9c88be2ddc869345bcf1c67430ec86b728
MD5 e548810ef392eafa8b06d85f0f371660
BLAKE2b-256 c9ff80ac64677be088e5fdb6082de1caea09903b16c4b0e03f77fc4e7f2cfbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 15d84436854b040ca64ccf27f735103009c9e0599e3984062432da4e97b912c1
MD5 73f7313b0a3c7704bfe8c051e7b4981b
BLAKE2b-256 b8bfd67ff81782755e80ffa691417095537e34728ccbfdbb441a7a94ce79fa4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41291293ce6dc812bb29bd79e4469bd83151258999c0adb98de0ef6746cbd952
MD5 becf76191fc5df064e688d7c635f232a
BLAKE2b-256 996de56bcc35ab7debcad24e458f15780ec9d334c91d4229e53653ffbd04e373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 489d548399e679d9e6632148dab4e7a6f573894a4fa37e532228afcad9afef65
MD5 d9dbbad7ecc3dbbf2f93901f47a39306
BLAKE2b-256 b8496a83a723453e23079552a3f894dc08d13b6c9d5eda4b9709bcdccd9e6da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36b0ddf89c3b7229eccd283175e09c58dfc01722e272ac33a7b102a8f7ee47a3
MD5 bfcfd8e0c097f2ab9958b1fd36fd329e
BLAKE2b-256 99c2d2aadb40a04874d83fa2ccd107b42513f93164810fc467e79411c07c3370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84301d3effa0e3351e1043a06da99cf203134e9ef48c5736072ec6a7bc4b19cc
MD5 116d33b9967dd231aa15bda77afc9393
BLAKE2b-256 f193e7659459b0c4842b926fb1344500a58db470b3d99841c03e49fdfa72da03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1f99e9e11743c963c59b686d241352aebe51ff786c4110c4f28f3a32b9713518
MD5 8d4d975b0a515230c9de89c5d317a57f
BLAKE2b-256 30760f9344f5f5cc107ef6dab4497152dac2e5b0646c9860bcd119fb5d25be9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 508738ce4893fa43db389458122bca66e9de42ac20589f0b21f3d8220d4932c1
MD5 5c535b8911e8efda2c1fd069af5fb7f1
BLAKE2b-256 d3c83a74de6c6bb6dafe2b180ab86586fee35ca645d94d86547bb52f0a6c7f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e860b03f48e02730cf374e887074829c253528f2c016973c791dd1744e4363ec
MD5 808b1758f0c09dc9f78af3d78203fcf8
BLAKE2b-256 912eb5154b97e018f3346b149d653a57218221ad1305ce9e721659f2a0872cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61869f1643a0db43155b8c9a8a41cfe724bf5df853c70fc5adfea11b54b7368e
MD5 f8a9fc89879d7c84c29bacce7a3aed34
BLAKE2b-256 9e3f9b561d7c248a4523ce2bd04a4025620cfe80b2dce5f44cf5aaa7928bcdf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02d61d000f7d9944a3101f3f2630c7af4f2f69e18492cc3d2f6daddfb1c50889
MD5 060fd113fb6d80d0c7acd3ac5dd33f65
BLAKE2b-256 3a0535655989d70d7d6ae9da8142a9afe3b68eb2e4cb346d3498f4b93326f06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7debb3fccce6374d8de2543552971db2323aad16ed075aff132b5e261ef87e1c
MD5 13410325cb1cb5d13deff7414d0c4e16
BLAKE2b-256 7200bd3faf480e39c8360d724978e4963c7719e46b6f8bf0496cfd9aba26b603

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4b7201b5fde0feeb8290ddf783523fd7bfd1a73508ae730ea50742ae153b449
MD5 6deae8f308b961df13b1de09d4b6ae8f
BLAKE2b-256 1a522b10b4027bd96ebfa0a15b9165a8e3e268709135c94ac464fe9ec2f80a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6af6ddd30a47a15f9f37656e0e02db4b2b80d1885bdd10f9313dc17e5e8e33d6
MD5 e25256c5a7ecded29d4b20e2cd1e0454
BLAKE2b-256 ed06e21b76fddfd251b84da5d4bdc1a935d2ac7a464801bc90fbe699fad6f193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d11ed3dd69d2ff010faee3a9a57c459e22eff71e8c8bd3bab911f0341ba7787e
MD5 fbaa97430c0c28eb9208e28a9e0a513a
BLAKE2b-256 208d7856c05f1014024c1939e7781dff214e2af8aea25e4b657811d7d27424a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12f0ff0b47c6970d2e7b9b42f8f9375f3b8437ea548613c5adc8da52ca4e817c
MD5 fc7170d3d677d2241be588aafdb51153
BLAKE2b-256 51d9f1b94161046a0db65bb565505c371c0972ba428f48d1659de5bdd6a1c1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97d601446dab94acab5b2d21db17553f9e0bf1b850fa5aa33999a6e39c6142fb
MD5 e798bb6eb268426a814aee2da2b3df30
BLAKE2b-256 26ef6f291dca8366cb95ef1f9bbc8865392bf9f79d3a83b614aa415d685dca5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36c21e262763f059cefd02a8eed6679f236d25a4e18a301c5669b45ecde55773
MD5 55aa173f3b133bc7aefc18b715b8d9f7
BLAKE2b-256 783b7fa25d58a8f60fa0a1f64f45ea7d9c6b941e25e957b2be53282859bf902b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42cd3018fb6b0f70a375ddba25c47d36f598ffb7cf6642b5614a0cd3b258ba0f
MD5 8d7bb6979dcc9c76980a3fe8fda7c695
BLAKE2b-256 a43140064cb9c75c6e344a1ec540210ee102e436a14f2c4b10b2d984464ef0e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1d941e347d31b6482808c8f73478900dca31033ef118a6292b825e3ed4c42ff
MD5 41d218a36b95c81235b3fd9e7e5af577
BLAKE2b-256 a82b3b013f1bcdc00666168fc94c15b07729773b06bc6bb92396d3ea66409c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec31420d642513b96f1ca262c560eb0287b995b2d9260910b8647e78b7d1873
MD5 e864b9201a8426333796c851d63c0cc5
BLAKE2b-256 b59ebc57771c027439ffe21c701c0dff1f19ea8872c66d4824dbf5ad1f79c899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0869f2ddef1ea7dcb7d2f8e79895038b228c28bd31dbdaf729f5740d23d96511
MD5 8e0f39fdd6349f38938e9af6ddf21fd6
BLAKE2b-256 99bfd736d174db746da7142461fdc4a6cd9f4aab8a2c58ec46aff967ac9c8081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29db759f75d4e86a84d4871ae2b4734749ec07b4190c0e4f72844cb508b7baa5
MD5 b0e90d121690dc0187ce7b3f8ec5f21b
BLAKE2b-256 77d9f40305a3a01c4fe4affb7b038be0feb83384e856e56e231c444252279cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a88c6091dcfbc189d6000209acba0893f7e695b42c12afb7ab96197506fcde4b
MD5 ff1f7feb0e9c3228987a3b90c216ab75
BLAKE2b-256 0fbafb9e6fcc3bf1fffa37e3c9c77713da5188289ea10f815869aab6d8b60053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1507c1e80fd9c2343443e1d85f7b8404b0ba7e394dbe4a97b0dd33c78c138b9d
MD5 f46608614f2d7751f6c142a0236737a7
BLAKE2b-256 8efc2b931e8b32a5ce219360e6afd255cdc884744d91161234cde75e1346f17f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd76f7894e701a80b53307d54d661020bd20ebe171295f3a3ab2d7ebbaab9baa
MD5 a0d02d9c7c9bbf52183f6bba39063082
BLAKE2b-256 02be4a91838b051ca021a5d21de925fdb27044436568169ccae71c1150c64988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 002a882343f24f0102dc3262d9093b220ed4f1322cd229fd84e43e4b47ffbae6
MD5 65810d9f13f90950ecfaaacb7ebea8ef
BLAKE2b-256 61a6023c17369437a2e9b00aa02981bd3ac53f8db7cb9639473f96e628c94c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f9fed8a0995416e4147dfca97dbbd64188a960e7fc08e249c1a9b0d45592926
MD5 4613b80c9b841f1c8cd0cd74d5c0e5e1
BLAKE2b-256 0b0d7b88e181b306e08a147561d897fba1dc010b00270150fddae58df03f814a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 20d987e9b7302ad33649bf1bbfe25af99931ee07c432955f875537f7cbb0c2c4
MD5 da9f8fa13c7d32b14587258184412bde
BLAKE2b-256 6baca3a006695b02fe64e80e838e7a2920401e7203eb675d0a427dbde2bd3712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 06377539383c1cce026210001dc4f28868deef11767c8b25564d9743f9c8f7cd
MD5 665b6154333707dbfb4ba9145432b4fd
BLAKE2b-256 d418af7f7d885365f180a26f18a2771824e74adcac5568e051ff779f477029b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9226d08a62971202e3688c66ae830271d98c565794018ede0299e1f2df20481
MD5 2b493525df9f0cb8aaf1b394bb18b7cb
BLAKE2b-256 d34319b41f81f0b83ce8a064ff96d246ec2de351b2eb2b5b04fe5db7416d3f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a64cfc20645bf3fba4c75d5cf5d6e0b5fad6126770ed1d21b6f5fd00b8205a1
MD5 3785ab36524bd84c5bc4ef8dd8e75774
BLAKE2b-256 606585f0f06836d2bb71d2e8d9b09a9de8de63b59c901210fb299673694588eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 78383bf56d68235dd356672210f491c0d84fad05b9a44efc0f4cce0daa10cceb
MD5 66c19145920b8d6e0e8ab0c305f351dc
BLAKE2b-256 99c0700129e8f83a56687c892191ec3c5dfecc362f8684ec0ee262ee1d27fd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ec6766b87227fee5a6fe842e415ba839c7db61d9060634b9a112fe3f4127cef
MD5 772e3e02a09db09ff9be21d63d053714
BLAKE2b-256 d30df28084e025e5cfb22ee4b7fceb96ded8a165925dfc7ed26bff3faea44aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53b4e900c7c731c80bebc2f6810c78cfba2f27233bca6121a1ca022f014d61c4
MD5 5e34775096bb879b66d38cf04ed76112
BLAKE2b-256 c54e3e84a0db7b847e4a2740590575565a25e66c9b7ecd19d76e9e3861dad69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42dd91f610e4025e9a61e1982b38cceed9969406709d616406194ca1d005df56
MD5 343c7ae6d0bbd98703bf092746fbd6e5
BLAKE2b-256 2c584435dcabdf759ce96a6b7429f1b94362bcad70940f87a9b4bb4d8bc262bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3c22d26214eb8b113adbf549885d6d09b5ed55132dc06184866f9db58318183
MD5 2a3919e9969147a743583a83eebddf98
BLAKE2b-256 b5ecd83b2ef1d15d7328a5f42e7983bd4ee693ecfaa6d0721d141fd212e33b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5cceb6a3975ccb0c4490a914341cbee1804e9a8cf5326db02277f10a8c19b84e
MD5 39116c3950e41d4c17c8346bf9a0800f
BLAKE2b-256 6705038ddfc20f0ffdc1deafa8eae4b9010f9448ebcd70a529b1600ecdac485b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7774859a090b26190e54ec906891d4b0b6234f530440038a2ae173989de8040
MD5 9b2f0ff36598c73c2d67d06dcf2f1cb5
BLAKE2b-256 09281abaa0c67eabf0e85ae8ba3477d904b36703adb7a297356b140fa34d70ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 938ede94e8bb20e7e46bab8ce7ee58e000dcf65ab2750ac715ab9cd61de34943
MD5 21a70d5d6716d1153aa905c39ee0907b
BLAKE2b-256 f17d833dbb5342101b9c944bde2e90c08f3e6946a461b53e2baff9952d4c9af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9082494327c1e9caca5996b3b7c6bec5921c97000375f8ba180ee96c13af7f4
MD5 284f6b7975cef89ab728889667c3448d
BLAKE2b-256 d1431791021af4c10a4fdc22a40e9529ace00411c97ee91bd7c3a9e65ec62e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92a9b329accf4a68c1d72cdc4a15e93ed7cb5e268b3f07348e8e77748b8e05b8
MD5 a00f1b3d4d87a627c3e7c15983e1c6b4
BLAKE2b-256 436771b6e10b7b7bbca43466dfbf249ea52857743cb40aa7d6a62d2098260774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d675b83210d491fdc693aa62bd22cf7bedb70de4d6bdbe32d65525a432eb769
MD5 596ee5a7d59b05edb4746ef901a1f43e
BLAKE2b-256 8daccf1583bd7e08e38297e67282429f6c5e7b1e2594ef1d3812541cbd1af50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d78cd3f465392a6b7097ba7a1c74f7b61672ff1ef2918385cd4d5dc9558da72d
MD5 b1793dea56fc3a4c6a58f763b7115bd1
BLAKE2b-256 762a5d470ad323e91184c383dea8ce766d5ae84a639ac23431960fc60e53973f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8537835d62367790476613ac587225344b6f5c5fa0087ec0288cfdbdec30764e
MD5 8e77fd1b25bf090a3ffa891b85f94dd8
BLAKE2b-256 16f319a77ab3cfb76d04bc69b612a56dac6ba2239e055f690a70062faf63404b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 757b26c93bc4218b2a61ca0a483656b92bb5a62967ad5271384a31299e70cef8
MD5 b8aae71286a513bd597db26e0a028dc3
BLAKE2b-256 c117457a581d1fabecbba11606049d6a720b13bdfdb6ab0ee435e3aaf09012b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b90036583c6b4fa33aac9000a4dab0a69d4256bad45eab3973210a5540b3da4
MD5 472a446216f2df6ffa63599d07e90657
BLAKE2b-256 04ffdc8a921a9362d5fa1d58be1dab44ed698a8a91d608048a9ac6fee5d4706a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 756b2724115ab011ea191b813ca3078a4506db6729a22898dfd97237d31232a2
MD5 af1fefa418bfedecf81a9f3e4ccf7645
BLAKE2b-256 a6877f68adec984f04cc807a8b9590dba6d17c0431eb5b982270b3ce9fb8f168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bab3679a6f881d7093bd7a9d353b67f046a327ad19c4fe3e6de961df78f4e13
MD5 b7a87dc0e32cd4cac38a4fc6d2ec12e5
BLAKE2b-256 534332747d77025c36519203bec91c3f9eca4eeee1b34b5778866cab80ed650c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00dba005aaa288f89d3553b743b87aff8f6184778bc870a65706a764b28c9f31
MD5 524ce9ad6ede3c5d0bcbc481dd06aaab
BLAKE2b-256 2babc9c37692031d1d527cf0bc3ddc40d9d3ddb90e86881f65b0ad15ddda43c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 684b9d2611c5d52c132714336a57e7958b34b5fb1143c448f6a680d38940eedc
MD5 440fd4a984d97f3f01304fee5491890f
BLAKE2b-256 88e7f988ff0ba6bc53174b864d1509c9f10aec5ee61379df7e23c2a9fb88d742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 32c350fa4c26286d9c60122bd13b0fdafe60c5f5608ee882d49fc7f1826cd208
MD5 d3a7b1be162368e9fd567c98901ca189
BLAKE2b-256 b6e48bfdb45aea203bed8b5c8a7ea4741c2d6f5bf7cde786ba857bdb528f76ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54a28e0a03a56e0c6f80b0c726c1a6e8305b1de648a240c63321b1fbe8dda865
MD5 e71e278d19f60449cbe06f21dcec96f3
BLAKE2b-256 ac04a8f7ddbe92cf6a9d3f4e75f6e3212f5f9b8ea3bd27a1624c65394ed6fac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72fa19e13cbd9927372b9541152cb816e1e0a2ab533263a75ffa960f6a389267
MD5 4b8358db0057adb228e35c705582b69b
BLAKE2b-256 7307bab70fc2a9bb9249ed815b4149646188002d5d102d5bdab36500f19ee8d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f30e6966a1252aa7efaf0f24aa7c867eeb87bc677e2b7d689fbc31ed45f09e1
MD5 a55d77f456e843f22b3c383e446988f7
BLAKE2b-256 a889d6d67594be52f21c74e37c6295ddeefa083da70d222cfb26a12f7f53b696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 409ed4838257b4b048a113beb569c8587304601fae8955ee534f171a2f2435d1
MD5 e94705f0286fabfad39baa99d39ae844
BLAKE2b-256 d6aafcd02f06c1495f7d2512b80d63b634f763d5847ddcd47c65a1545cd1b9ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c044fc44da63abe28a123a0689ca6c8602ac23a6203ba9d14f02bfde5ef89a2
MD5 c410f45ef1f6e090a3b81e0c11a6950c
BLAKE2b-256 d23c638134b6eef193bce310faf3860711162bc069fc3f84df2916faee9e1b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbdb5d726c8b90123a6d5bd99905766058a507d5f593c427ca3b78efda59a211
MD5 c7a94e86cb50979e7e794b3cf16f3cdd
BLAKE2b-256 93acdf8e20bfc9adb13696b4422494b65b461d4d35afa17d7765a3b18668941b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b526fad944cb22eeb9a8c294a3f5ee6d1f8cebf93a096dad7e73775bcd569a4d
MD5 cc4654260eb7d60c8756ff7497cb43e3
BLAKE2b-256 79f81d34c511420da20af7f8ddf9e98059e5a8b169c673f0b6322e95998734a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e253c17a0f3cf74333a7256163c3d3e31eac2b78d2dd8be718e70cb1afcaed66
MD5 48378c5b3c91732499c5f2b28bd61740
BLAKE2b-256 fddc812f61d61b4630d8dc040f9012fdf6398547a86e96cb0639a19f275df411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3276c9da2a171cf5f075c8c8f4d1d126680a71742fd0f61b879f2e70f7d9536
MD5 a07ca7b3e91feae70da06c441f5443a6
BLAKE2b-256 e2fa868e9afb2dbc651cb628b910006215618aa27750a7e5ca249b496647edce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2f7277c4db0a69b8f1f533939ca0855aee627d6ab2f8da464a4b4147ca9d18f
MD5 5441f5b33c3aafb7927498850cec2ea6
BLAKE2b-256 a9c244ccdb78f83b46dbec2782c581ee3c702ffe9bf5378aa68c8ffa9092cc15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b67519edf715dda0fe8eddf46c8edf53d7bcd8cc64a71cf18194dc50718df67b
MD5 04c1587c7ed04b81344bde94899951ab
BLAKE2b-256 7c1097da4f984ab253f49583b4f470db04e4538e00a88d1f0e9680ee50b83aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df98c77c0c00ff7495a7deea19669970c59514fb36cdd09d51cc736e77ef985c
MD5 20f6a6bb00de81093dff53674506fbb5
BLAKE2b-256 584890e685f6983863a7764e9eefebce5c7fcd5d47f4b2108d22e8c2025f0a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0fe0a65effe36f96ee5007f4016c6b71f9ddb7bcb38a7602078cdd9bd0532ad1
MD5 db1d7f3b2f914fbd08385fa19a9bfd54
BLAKE2b-256 cdfc64c6f25d3c2f63847d6efd79e91ab71da6279a375852cb0a699742a5ebb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42461d6843945a02547c0bddc5c2cc10a992b7783eb29be2f08fee9085b8a9d4
MD5 0510f3e81a3d8d1fdc91c01cef8e61c8
BLAKE2b-256 c6648119caced42292a600cb5cffb6147d8e1822887cf764872a2d61404b2afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35fc79e9831b74d63e792316f4a90400f484e46c8c404970c0447b7103d5e1e1
MD5 2a50e9c9ce21f2d5efc5b5931d891e8c
BLAKE2b-256 b15ade453e2dc802ef2a243f4a1fcb1a3b78b6c8cd0a308636d08e7861b5a303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4000b911d9765f83fec2773c5615b248ef080a351fc64fe9d4eb8c1f85c9572a
MD5 0d9c956651dbbb55f3835af23b703003
BLAKE2b-256 95dea0bd5d25cfc1e38a06740595d4bfd358f37a03457cc4c4693b3bd38c927b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51a64c49b2cd1afd924cc9f7c7d21638864770eb178ccd2c5367e0b5ade97c9d
MD5 daaf521c0fc678400ed731df738d46eb
BLAKE2b-256 d6a825f158f80712eb7e9ccf3d0b7711fd29d66d66275b90331584ff734c0941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f594ccbe29bd028dcafedbf494a290121f7e8e5c5863561395f0231bf22c061c
MD5 2a4854d9b3522dc8cbea6bd0cb402779
BLAKE2b-256 991c160366f9898ceb7ab259854f2cb432d3be987c7b173e0dd7a9617b087c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0cfab994351e6288e9491e0bded38f3b7fb803c0a3c9d8438207b0a616f5c7bc
MD5 ca0ff54687cfadd959908b374b8daed2
BLAKE2b-256 5df3b862107a87c57b8fc63f7448a4ff7c769e2d4b4131cc88c4c087103bbb65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 576df8cbef210ee72386f78e9244ea18c678ac24c7df0609be0b21b39009e842
MD5 15afdc9e9aed7c65b98eaa0158bc631c
BLAKE2b-256 0c5fa496d4c6655929f98b6c54fcee88f69c6e01b6ac2f3a5ba275cf8f8b5579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fdb90d3d8361057c98ab8dacc6a57c7dcc677e7550b755f040ed2d7dfe4f733
MD5 09fd9e4c6213feaf76b3621e0ab56a6c
BLAKE2b-256 a9af7f7665412cf627fbec9d3b737c72340136ff33d417bde732e9c18e4c79df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35c512621345a9be379cbdbf5e5787ec0430a2e7aced98dfee3d866e508ab3bb
MD5 4c0654626fca60299de9c701ed187f06
BLAKE2b-256 96ba3cd42eab6efc70e5dbaec23c68340f301ec77584c4bc4f9332c62b2d64cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d23f58a67032a2468b24bd1d10abbb9a4c1daecceac6a5195ece5a80720477a5
MD5 d0cc331022f89da5706cdabcb9aff4ba
BLAKE2b-256 6d0be0ea98b6eb6db3f78bbb7ca9620451157e098d2243c7dd7d92ac09a9b058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c783bb4d0958cf63e5b2f5da90acb97da3c2b493e46a33d83f3409a4f0d1df2f
MD5 13e97cebc45c98751c2f9ea0b1f785bf
BLAKE2b-256 6279cc2e0e107859e49c379ec104ea54fb8ff549419483fbd01e39118b2518a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ba81378e26151ba7c0cb6e5a537fb6497d54c2fa4733707638673f1a16d0ff1
MD5 30591a75c33a8483c7a3fa249376b3d8
BLAKE2b-256 d2b5cf17f7c585229d23482dd405c5d04fbef585bbf70e24903e33d2c9146fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d3e25da75a4e47e32b20835159c937cae5b57f50386272b58fb0b5d5ed18b6f
MD5 01be6d15ad831743727815142b8f2cc8
BLAKE2b-256 2bfa76141ee8e7fb93dcd90043d36f9e62d90d1d7a4a460e1af002c8a215cd4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c393c3f589e9a1718336193311cdbe93f8b16b896b5178b921f8262baccb1b6
MD5 139cf858eab390349c24ada00fbbf2a8
BLAKE2b-256 2e61fae624d4c5852e8bf908b27a26b97f00cda232403b47f1fca279d09b1d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dbb9452e59079b84fe6f3ea78bd68529a74416c3fe8bea1e23f97dd3f70548b
MD5 3a50ddf7794cecbc629adce5f3811c01
BLAKE2b-256 a08b9c30fc9afca86dceb0b36808a02d8c19ed3006fbe67d79e10b38ba54f04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2aa38018e04448aae3c8c426de22d883ff81b539ee29e1fa5bdb8c075d02196
MD5 fcfd8bdf35923f8ae40b3e3c4c0c6ad3
BLAKE2b-256 a4f61d2e4ce6d020a34c765b6b7934dc5a7f9734db10c278c5f359ab7f9db7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b2d7e57562c4a11577737e142ddae691816b4884289bafbffe0336e27815d73
MD5 0c028f80e492c2ca0932241edd9bffd6
BLAKE2b-256 5e4d10dfd98194f103a0f86a91b1efa2e80ae0cc4dcd7d989fbe1f1f62926311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5926f52cc516c971a7ce0df56a454d927c3e33ab42ecb58d99653873d2373a59
MD5 35cd5b32b6f07822472dd64e351a70dd
BLAKE2b-256 2b9ae60846d231bc09e79ee31fb24965f8092e6b4af6f27079e891a0af44e957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f7bcf8d42262790440679fe0cdfb14c9656c1f4357cea6d30b96e7c0e7a3d05
MD5 b8de0337ed34ee4284c616350733b03d
BLAKE2b-256 c7ad46ce0aeec57d3f6a7dc023c1ce5599f93424ea2afba14ab9e764c99e8aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af764d6335883ada2260f118f16ce3507d7a3e578ef24b8f66863da505f05a3d
MD5 aaa1f9f5174226ce18d82e599d21d66d
BLAKE2b-256 0ede5fd3049f710e850ed2c098bfb430bbda55bd162ca044ed9e104d4a747f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ba921fcb5b82c80ba60debe4f7fa978eacc47806e6ca4fba26dae5b24a2ce03
MD5 9fb8ef4b67ab06d72b7e732b2a85d2a1
BLAKE2b-256 fd87d1d58a789e5b60c32a29f938c7674dc604bad05cfe5ac0c9587fb4b1f95d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a93fb1c482e2a7d5424173613bbe03d6fb37bccb9bb7b24ae4c30a4930d33cf6
MD5 2844b7ec07a1f47d74f32f5511f1c117
BLAKE2b-256 f279422b31e5d8d740832cda2c7c479ea4b3a1f01c70a210d16ec5b474037ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ccf465bc22e305339c91c25cad697b1c357e791c334789c20cee584f4e56f2b
MD5 cc4bd16d11395e6d931207b009c9f97d
BLAKE2b-256 c108c84219ff9b08458e02c1338a58d562bf688e8bf1f9f4a89756002c44a8eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da7a3ffedfbddec6676031d3178ce0fcfcbe850ae74da765e191d4d672161aa8
MD5 36d60adb3162cdeab1446e96e306d3ce
BLAKE2b-256 911bfae8615d68678d479e0682098c4ec01d05565235dcf63b429a748d683e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e713049d59e02bd5df97f4e3114bba194e4232dfc6e22412625bd0934a293c47
MD5 4f4e7b87c69d1e068176bf793b3533b8
BLAKE2b-256 d38f65f1378e4de279b2fe4e65d0f09c188c1622b7d1c9949dccdaec84ae8b30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d2468fec5a0052517798f79c4a3bb7e7cce4b140d0c056c45766c8507db0d5f
MD5 db90ffc37d1ac9394420662a900961c0
BLAKE2b-256 346250c0313b4d878d6aa73711e4e4d517d9b50cfe1051b451f038dcd5c81985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccbc7cdde3e095a6af59db3a4c272856bee95f125a2cd2f5fcd8d5a6d079478c
MD5 14ca9766a4999e24c29d3a849209b789
BLAKE2b-256 0ac2da8813f908ac8c014abe3cd7ca3084b79021a47de6264132080db07ed4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5f40775b5a55a7ac4b320c79f99528f0b157351cf4d42db8b35f288e5789e49
MD5 51104b3e5fc21163000aef73f462bd95
BLAKE2b-256 5e36a8a344103802f55ccd718d3b61f3142f71bec211e94dea14ef130b36ac07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b98a9ba7a981cf3de556dac490577bf5f216b7f6d3eab8ecd83cd7dfff0d003c
MD5 93d9bfe00e29c7f16ea78bdcf57df86f
BLAKE2b-256 ff5d6a569d5bc8018463a7ea76f9a81b9cdb2ca8ac81394a68ae7ac08d8c7c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4745da0284a6eb4cde18a07ced8a8fe3588bfb0df26a4565a9ed9229f17b517
MD5 f9078ca37679d62cf33eb72473990ec2
BLAKE2b-256 6f9152b2a9cc4fb56ef3251543524e24a2b0ffd8181162a55e5566ac13c14ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b354a936ac3cba856cb55bcf98483755cabe16efb8bab3cd5561ac85bc2dd58a
MD5 fb0e5e9921c5ec37567481e5445a1cc2
BLAKE2b-256 6a273fa9079638a3702488a9baca9734d871d49aca78b1331d2ba8eb4eb5f401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 381ce68e62620b1e61106e97f480e3b8c6b551bf4bbe55a6a91a392bd9a56610
MD5 85bfd7e276382bb477c6c44a9dab9913
BLAKE2b-256 4b8ae96786603955dd9c8f62627cae9a063806b22422d2e82a2bb91029f78ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26e842e1d83c7be8220472174ad088486175a734768dabf2e1a1b9fc573f41b5
MD5 d64254a581b8552585bb67131dd8e50a
BLAKE2b-256 37d6ddf86f8fff1c71b00f8cc5ca7a4e76973d594420dda28f29398a3d831b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a6ade982475a020cb1cdf5f319b670c39da31e5aa0eab4cc28ae27962984b98
MD5 e78055754ab8fb6d08dd3c1fa756112a
BLAKE2b-256 9f399917449ab40c4bd9958d74aea474e01881c350618e11cd26d1f451062cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5562ff4cec8e87bd10e53159b74477767dad9c8b02f7bae5e184349221dbcf4
MD5 bb226ffc808aea61bbae54d25949ddd4
BLAKE2b-256 9877edd84bf4fe1189e10274f9162e5caa6c6acbc03730c6512deed031e1e257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8ca23255cfc19224a0152e5776687087c6a8a8bad96336913699fda8262a35c
MD5 e688241a2f7f64c0fbbc74e50e549259
BLAKE2b-256 17ac810261b59fc7e2b0d4785c92ed00cd9eb07714c6820ba04966b531a4452c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d460ad99721b0c1c8b04d001c95e50e49c0b386c209c600cfb2259afc20420cf
MD5 a18438e67b1493b3f6d10fd25100d992
BLAKE2b-256 354ad39e7e1bd83a70b222ec627a721e90b5874e26cf0b46b894b57d73046cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6fbf371b97a94c0fec664fd471e76d7984c0c7ebe1a3188728c9426f34047005
MD5 ad48e77788ea19519e5c383ce7d7e463
BLAKE2b-256 942195920e853c512b72652ca2a903902e159a9e90b4117e91f13e28d4efdbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffadb2b5bf38b3fb904d600f1d2f9957a8e1cf951ebab644c8dbeb107b45c931
MD5 7eabcaa54da500532354fb36e87f6cf1
BLAKE2b-256 a40e3e302b27a5177a0fe7493162c4e6e8e2145cc52a678dc37a76b21fdeb054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1fca6ca4c9ce0681feb94da984757ec7e22c2e60a82ee5943371630397bc38d0
MD5 1c6a94892a7fafc643ffad04885ed020
BLAKE2b-256 1c82666338db94bef400b4d8c0906009cd88cd197776930d18991bf67bc71887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b14daf2f35a9f0f4ab2fa2a3c11089b408173e747cc5f3d277c57aad0c639f67
MD5 8e866cc6acb689bc2b449fb6b41b389b
BLAKE2b-256 037735ba875c99d2358d95806de3a3f49927bab369161ef4ff989aff295265f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c40c41a92630ccafe26a6192c66d09e83f8223e836232c0422e13fd56b3b73fe
MD5 28b18ea05ff573ff1958536a660a6e6e
BLAKE2b-256 5248c64abacdb97ac4296ea147e5784804b65e98685dbe38768d0f633c40831d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d2f09d431682129eb789e7a97d5f024563812607fa3c98c2861f5b4af330b37d
MD5 7d1a1ffe9a5871ab48e19a207e097087
BLAKE2b-256 7426492e26d7054dc04132795bd3517632666309b5c0e4d9a10516790f3ac06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef74d55d1a2e3b9c4a78f3025be2b7bf99d26444ad4b4e6056d679f8dca8a7fa
MD5 9eda669939538539a1851e02f8d3b137
BLAKE2b-256 07a3f382b1b4fc820e78a218def7ae88a1d58a6c6d65ac3cd302fc5b408adcf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2db04471980f19704310e239fea6928ca2085b96abed8e5d69ac7b8659c55821
MD5 ec624bf3fd98ced1bd31614574b98de8
BLAKE2b-256 11ec8b8a9b4841a85ab125f961723a0637400b82e5213403dfdaae152eef11ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bfe63878bb6d3e3fca2896e75c724e077fbf1e10f8ea62202fe4943cc38d48e
MD5 5efacd2ea2f8652c17f48dfa9596757c
BLAKE2b-256 e9ee117a7f5c4245627944de6dca452151d6ccdc4ce0db279e92b62add46c703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6c8dca98e494084eab9bcf3c9049b413ee8185cc41556d1477bb8191746acc5
MD5 45bfe08a3e3d94adafb3c08893bc178a
BLAKE2b-256 c5542e75176ae851e8ae387f6553717c3914fe2e6b2522afa367f23ee4249d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac3a46359f51298db608ee0980ed43fef8dbbf093ee476f808f33a236d009e42
MD5 00a3090ebe87ba81cff25da33dc5fc72
BLAKE2b-256 dbd076ea221bcae496154d45380cc6fec47e95b1d48011a075e0e4bd51d3aacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1aac4cff0688b1bbbe6e89445104f5daa7b94743ca1f5b8a072e8119c527a25
MD5 9a85a06e0fb831d208b001315ddcb21c
BLAKE2b-256 65cb2a95d9c5a5220aa85f6d3c6faa5b8f0ceb765b573c151b10abd7cb79c5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52d8d87dd05de735b7a72b72cfb9026a529f1ccab5584617f45ddd70cc2567e5
MD5 5085a6cd7a44e72a096eb3013f6c4f93
BLAKE2b-256 e98e5b9ff6c8ea2f04914c113a616c892d596d89f7ba00359ea22c9fb3d35f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf9aebedd5fae272d94b40c32e8b44063f88bfa1e743b57a307b4d7077447381
MD5 595bb868ee6d390c51330835fc123a0d
BLAKE2b-256 43e9a6969f0d14f12c0e5c93ff35636953390a2f1bff8f77e76b1e5ecfdeae69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95383adb40bf21a07bab993d545f28e3731b52b810ef00e9756032e74b278db7
MD5 4cfbec47c5c4eb913218a083d86d5481
BLAKE2b-256 7a2b0311d8860b2a414f83d2282d433d7a1e442fa7af3d833a31b3081892d82e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db490d6b37e6e47b427b93d19345374757bedd2a83155c143b8dd3bef372c13d
MD5 4065c12af003fb6d780026f34128b353
BLAKE2b-256 b81482df8f4bca6b44df4bf71038e1afa0969d66b875db8ad316c6075b082f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62fa593668c425c4a1b61f5dd8d2225c0f5a09ab23ae015ceb5592aeef1ec33b
MD5 adb47bdc5ec7c54b08e5fcf4f6442470
BLAKE2b-256 f4b0cd41ec978fc63bedabb8e78c1620170c85dac7ddabafc2be1fe493f03f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e585dd4ce8795f993723c89b49beecfbcca1fad71616a2b2e89299259aabbd1a
MD5 ee7330b42e06e863de42d9e2685ec5d3
BLAKE2b-256 e0c68809446ebe0aaafe7a24f503a683ecc72749168b1d49724270e42443a5a1

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