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.4.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.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (735.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (774.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (808.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (694.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.4-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.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (567.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-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.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (735.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (774.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (808.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (694.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (674.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (735.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (774.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (808.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (695.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (533.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (733.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl (771.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl (806.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (692.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.2.4-cp314-cp314-win32.whl (316.6 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.2.4-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.4-cp314-cp314-musllinux_1_2_i686.whl (773.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl (808.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (567.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-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.4-cp314-cp314-macosx_11_0_arm64.whl (460.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl (473.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl (733.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl (692.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (672.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (733.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_i686.whl (772.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (807.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (694.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-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.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (672.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-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.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl (473.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.2.4-cp312-cp312-win_amd64.whl (331.4 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.2.4-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.4-cp312-cp312-musllinux_1_2_i686.whl (772.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (673.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-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.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl (473.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.2.4-cp311-cp311-win_amd64.whl (331.7 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (733.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_i686.whl (771.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (807.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (550.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (565.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (463.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl (477.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.2.4-cp310-cp310-win_amd64.whl (331.8 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (733.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_i686.whl (773.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (806.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (694.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-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.4-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.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (566.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (530.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl (734.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_i686.whl (774.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl (806.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl (694.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.4-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.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (676.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (567.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (531.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl (734.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_i686.whl (771.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl (807.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl (695.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (530.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (551.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (675.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (565.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (532.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.2.4.tar.gz
Algorithm Hash digest
SHA256 735ee84a50fead166c0d9a74e5540b550f192f59062aeb4b6f703f306912b5c7
MD5 fd0a1ee612ef910d5c72d4eb356141ff
BLAKE2b-256 3d3737b1919db9e80f8cf385db10959cd21bbb9d645541c93ccea462ae45a7f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf1b7a28bb135e32a677033551a5f6c5382a275e55eef60246164186aa19e5de
MD5 543fd443b589ccfba7709037fc8ffd4e
BLAKE2b-256 89721e51c3bc1b29ab51ebad32c30f56527d23e3db4bdae5478b0893ecd75ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a48ff0feecf1e93de7a01ab4e32853894cb3857026149b426553a8a59b1d2db9
MD5 3fa4a7123e75d5121937a031e55f5906
BLAKE2b-256 f8777dab5ab5fa3b0677c362e6e82bcb61b0c16c0236edd7b366153736e4bc3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ddc5b6447884a25eb8a51f572cff7d3ceae83d820263f13ba5bd12aa7f57dc9
MD5 fcccbd84bc712d0b506a7a67d8d75f2e
BLAKE2b-256 d5022edda6f62fead9192fbeafa111302812d0070b50011b5f32a6ab78ca39b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5d50ce7dd98ca6d650cf59f5d2b149d64f86a2023715fdd43464c727b4f970a2
MD5 376b1077ed5d26d09bfd802173ded0e7
BLAKE2b-256 22bc1f6b7503096213bbde05dc191e4af13789a7f68d8d9aa4480d61122c4ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77bb5258b72cb2cc20b0484d95f542d8be9e4797f129fe003b513c0f111cfa23
MD5 560393945899be7a820c5b17d04fa938
BLAKE2b-256 aac00d11c98b2085ed2fadc9f49490ed0f350de6ceba7fda49108745898357a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a2e6096b8a9b7fecd825bd8b6cdd477e0635611a873a89c5ebea7c400fe02b6
MD5 1eae587ec478b7ac2ad73b7cf065edc6
BLAKE2b-256 12c25dabaa93210519198d594f7a172cd2d4889279f249888cedb3bcc797a5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b43208ee3fcd835b20445861a4ff49427b805bb3457d9e00eec061bd728d3fa
MD5 33776481c6b7b06aabc35d0eb4f614e2
BLAKE2b-256 83cfbce7412ef32aaaedc14da7b5904314b45a66db34c4e6331bf1e6d2f3d788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 978e460989422b5cd9646c67ec386074af8cff8cc2144169f3e79b5552f01066
MD5 bf0cf9a43d4f32c625048d3e4df78226
BLAKE2b-256 65d82f15957df05b9018df75758b1c26b9ffecb4de3071bac5371319237000ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3380cb4979f99c4c4e59fdcecb33003fbc285968aa2d955179b9fd49a7455824
MD5 4cc9a3748f2e1ef5c5ea707dfd0c424e
BLAKE2b-256 1e963b00129a68a3fa3009b15f63ad7fdb42ae58ff586a4312d453fd54517833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b4353956b26b2b02ac2bc2cdf78c854a649b5d00e958ff1e8d00d36a6e850dd
MD5 69991e3b0d1d5215d934596eb5314b3a
BLAKE2b-256 9c87bff980d30af7e6653a70aa5a7f0042ad210360061b4012990da078165ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8eaf374b8feb73bb0f0d9ccbf4e980010a3c8b8ed03e3a180929d815a7a90b3
MD5 9749beacb0a6d27742a00692f2fc4309
BLAKE2b-256 c9c34587541161b668e44efbae4bbacc68783ea318351c7de230ea03c6c20e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8474bf70d67078851c7ada310e1a468d58fa781abf05ea0d85f989f5f674c5e1
MD5 557ddc09679edb2bdad991c726d28081
BLAKE2b-256 d1dd9374c4e878438a925ca397f90b351d6754d6eae2a1b40f6f72416032fca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0841c3b6b299b7d2c6bf424d3fefbc2ddad3100053e1549935a4604e815d5e70
MD5 bfa405a72d075426d6b8a46e1703a153
BLAKE2b-256 6a9da2baa6eceedb8220ce294ee6bbc6cf8d0e51057f7de6560107c83efa9b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37036b05ca6d73a271b1ff6886e24bc5c2f22659da30bb5f2f4120fde575fb0a
MD5 5df5cb84554b7afd68d73e0ba8482696
BLAKE2b-256 184a668d19cb1429c1d35bfab3d0ff575b2644dfe04a8f42ccb536f2b94ea45e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7407372284229985d8b96b918e05a6e1255b6819bd5099d2470923287792d635
MD5 89ae05438897504d5986bd7450cc1b79
BLAKE2b-256 cf255f9983d44526465875ca7896be3a960b8c1b7e04119c7a6e93e0bc8b0f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f0abe86165d42dda5aded47df2d2a458c5664763f9dabc46945b4217eb93203
MD5 c4f3eec7cd0f9514ae39d60a04daf4c6
BLAKE2b-256 cc518d49f8e573475f8c3aca8b1c30cd2b86aecb747e98c4fb24638e89ffdd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c1f388bac29fc584df4d48ba846f0bb6ad7cb7c95940974018f39e73f6507d3
MD5 bd59f5aff3f5ffae226a0cc338c480c7
BLAKE2b-256 415a271907c0608115e069067506312d960ae8da9f1e49627c871e6af3f2a814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3facc1ca789f54216efc57c0a28479c468c6c80862e79b8c8184d4a7f1bdda06
MD5 4dfc2122faef130b6874e4985a78cc83
BLAKE2b-256 6ae274f7dd3d4e0ce3ac7280ac6afd9a7b10a89a9392f98515ea38408ce36b0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfe47793e81373c95984fe711557070a4fadee0989ce0e8417d0c74e349a747c
MD5 c642c8cd4acecc706d4c9d23f6eb583e
BLAKE2b-256 bcb41ff5d8ac1011fe3a26641a702ef5436f0254f84de803d52caa593b0cea20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e259e8b53201cb35b684d39a52db598d381c0398a41eb85dab23640b10c76b49
MD5 f1c8400a11f3dc2e182ed775c7e79ac9
BLAKE2b-256 00435f9b391bc486567fcd96e52396bf8dc0d83307b11b569796526353930c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38fd03292e1eb86452b5cecd00fc55b4c187566dc65be99f3ae9b042d9ca4531
MD5 d3c614e5bb8c5346a0a5b95182c3686c
BLAKE2b-256 02f376bf0b80e27fcfeb5eb3c438a98db95a3702bfb94e2aab57a44ae9adde33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25c23008778190d88052a9a2d2efa76045cfd123fd84a092f2b740a62acb5052
MD5 a788908de5a4d22cb18fa88eddfd18ec
BLAKE2b-256 a0e201c9fcad2f40d16419c5e8008b89dca2f104daea275e8662162aa8448d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed252ce2cb0931e16b8a1580093c40f911b65be67be6fa96bf4dea65efd01e2e
MD5 8ed929c4c574f3c2daed4c49b534622d
BLAKE2b-256 1e96f5b8e2cf76ff970cce1d07af8de069de97fe982c4b55ebbe0b0839f42976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b84afbd2bd92de235d2f2d5e428cab942a20c5686b817b8fc7df82f42f68829
MD5 d4a4bf48d680cdbb88089da8d734b262
BLAKE2b-256 d6f030060cf7343126b071206732d8cab253ff0c938afdbed83aa758e4109345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 240b7eb076f23434804094387aa56596ae4b5be93484f66e891739b6ac26bcb8
MD5 e41db924e8c14ad4e2643617441b9b09
BLAKE2b-256 4df4d054ce79b45f9116f273031424cfdfa30093970a15cf437d534c87cdb5ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16057854388f476b14c6a3d630754e9c3629e76afa18afb8de2a490a686871ac
MD5 dc267326036d175186184d58d0ebddb4
BLAKE2b-256 c560d059ea59acf821cb490bbc9e246198e8e1478146180d59cadb4eccb1bc7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc575be7e72500c241825778886b3ba7471ecb0ffd389289b4c620c060975dbe
MD5 62ba206af0c8e7d70182999f53e51942
BLAKE2b-256 820af6507eaca56a29b48fb8601fa78396b60dc78b2c9997e48401c840d9b854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3e8ef2aea2c326d5798a2a6371b76f46ab7470b9cd3f0da2ab4124797d2e33f
MD5 7307e5cb383f0e8aded7ad29cd4ad8a2
BLAKE2b-256 a164e9fda159d3f95a458aacde2703cea8ac10a88a0eeddf95d2286cae2be588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6954728e0cb54b238a00a1cb51e2d7d1ee343897471792f65d54f85e1288ac8b
MD5 0356851eb189ed53776c218e9c882a24
BLAKE2b-256 c9017b683e5d1d04db3ff7857864441e5b2aa5f8461a1aaccb6315d5c1c286f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecf0ac9c1a99993bdda5abc9d85bbf52a5b222187e673f5df0f51cabd707903b
MD5 299235e4173299e6e4dec993a4a94223
BLAKE2b-256 00bb85ff5a89462abe6118be733770619d0c2349e57d7d74b1e82ec076d734ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07df052f491881752c93d2fcac28fd604e5402b5fa501129f67cb83e30eb6c14
MD5 e1eeaf0c4f494fc57162b889e1c1c6ce
BLAKE2b-256 b28b0b6f3c98087284d9cb39886599b85160aab392821b90592d4f9b9e8ed59f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0f4c6bed564f6986527559070b46a3e6a89b03085eb0f2aa4e848cb5e5fda94
MD5 c4a2a2c0ad2c4b998d7794cb338b8344
BLAKE2b-256 9e0beda699cc55a215d3ae00bbabebf559c48c73a2481cda917f6d28fcce7b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6af11c3f2858c843fb6d8e047000e843f7e7b7f6debe45b64cd67925bc93623a
MD5 b6894331f0ac268de4cba11f5b37b9f0
BLAKE2b-256 e3ddf4c5dccbff20298d1d7c837fd20236c21cd009641dc5a0f778e365648647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 025b3377be2fe3980dd3e7487d6f5227ae47265624c13b5de452548b4fa35716
MD5 ac8ad2af59c8e6620920acdd6286df0f
BLAKE2b-256 81c6d0cf7163bcfd4194bcf58c5b71ea9945532d891014e23ff4fecafe24e09a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 48afdb02e6f328c8438f568706eab563e9d74f258fbd3a3b092aebe10d3b87e3
MD5 89bb2265f062cec11dd4b00fa944070d
BLAKE2b-256 4db420ad7f02e239b07686fdfc425c9e8f31664993a1f71a51fa48d6093afaab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 70fbaa1914dcf549760cda14ca953eb10014323cd1b642b51036420e0646cc53
MD5 92735e18ec8140f8ef77fcb8d255e91b
BLAKE2b-256 1d7dbba0e10a94bd21fd5f54591989da277b7d1ffe5cc2833bcd5328ca734346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7025069f8c3e09eb87a2e349d31e6332aba815d4e95a7024d577d3697b475edb
MD5 9b6cc8e7d77aa9d44040a23aecf8e4ae
BLAKE2b-256 bb97d96c0c286191eb868b7ac3dae6c21edd3760b65b01da4a657ef067c21035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e1dfacab667567dadf276668b9751b43e52fd4680d3e166c22de18630b537b5
MD5 5aec277008c45f3216ad459c1db69bee
BLAKE2b-256 dad17973ab33646f0b1f06a2319fd2b88c4f12e676c62a343ced657973f209e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a225aaebb1d5971c44a58157685be8de7b345b9106b4413e5f1dcc9e090e5ec9
MD5 b192d360a32da9111d7bb5fe132c57b7
BLAKE2b-256 1bacb98510e4b36d95fbc00685a2becc84095280ed0f0c9174383a232080c3a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8365c5642ce88692150ca01d0ed401e27a2fc036742dd8ae51338af7bf7fee13
MD5 d568fa3d90056629da7de044c46a65cf
BLAKE2b-256 f0068883aafecefd49c97a4265df30e7c1fb7cf87cd0d09412e67c5b34d70478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac45f5fe2b1965611035d4a147179c0eccc493e1c478e6c96c2be746afbd6b1
MD5 3fa4207f796fad151afd0dfb41ee0be9
BLAKE2b-256 bfd146917bc25428928f2e8d367c2e23134f92d2d82b37a38a0a1d7891c16010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60bd4d64a2344288ea96af89b51958cd5d4236c9f812492d3692227ea5d52e86
MD5 e81b0e3f0345bdafcb24762295abc81e
BLAKE2b-256 4ca7d31701cf6d9c27e42e3f99f2549e2f4fc78a76e681cd5617483706fb54be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0dd2d2be752abcb0079416b88de76db580025c96c7b9fc3d482644fbce8816d
MD5 8388384514bb638edd6e56d136952892
BLAKE2b-256 18de3ed629302c2066deff315e59be8ccb5bf32aa556f383f569bacfb809fe13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbe3678b914231eb46cc564c6888ca290253162e7fb4c36b32df56d5bf38bced
MD5 98382f8f85678ddd9769d07c43c593b1
BLAKE2b-256 712a1bea2a854ab8a8704f387c7115bcdbc9facd3aea596883e45b6e948376a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e47e381d29d2b0b721bd57d1cbea05324e955547d8e5152050f47fcac0c1bfa
MD5 8d9e56a0d64f87b1e6b80a0356ea0b1f
BLAKE2b-256 17b40b1a0633ff60ac87ee8f60d791658b501fa4e330457e2faa864325e93f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1610f2b682ebc95a3d024f0cb1abd865deb2f8953dbbe73664a5cdd0118c4ec5
MD5 a8c6f6d62c3698955f73eb1125d7f2de
BLAKE2b-256 e18d2678e0a54b39967a5ccd6b2779e64a74a443ac1d8d4ddf42ccc54b6ea312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea6cf9bd0e2e40f202d63b7138bff2ffed806261396831c04a3dfee80fe01a47
MD5 16a0ea69463c17dd05b0430ab6b679c3
BLAKE2b-256 9509e12861c22d14c853482547fb0887dc6a12f7e1b1a48213e267b0cbeb5af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec9d8fa8872c36a4ddecb48d7621ce37c12e51346b5941cba804f9f0ec8450f5
MD5 e8c6561586400e80fe99f2606f87ecd2
BLAKE2b-256 d0d72cb4a5b575f6e8956f6462c8399ea00c1bb0fee94ac7f04c939e63ee8ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b4c027180d36e80a1d1baeb5d387a1e0878294237deed789c15c8103ac9266
MD5 f2aa7803b3818d2fdb37598065350aa0
BLAKE2b-256 ddfe0cdf91b0cf073903fc3824bcca9b3bb40c119d7c1fba733ce770d094990e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a345823aa6436aec795dcbe9708a55231c4808bf08fd226241bf24c51a30aa3b
MD5 15daec64ec931aa794c3ed0c7486283e
BLAKE2b-256 5695361fdbf07af50ef5fb70a857383834832761c78997464cf78b498551fc99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d1d2163b72638c1ea2e83bc73c318b085750f4f34c73e664b34469ac49c6732e
MD5 ff713acf12a2f7fb13f7bd43861e55fd
BLAKE2b-256 c8dc0ef3856178565a5d2c6dee72d8028380b0f95c6956a8e71c3c8c13a9d3a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 294e6839e4adda5012cb13bb20fa7c1eab875542339e0727789ec83ea5487e35
MD5 5a68ec730255ef795064c54cdc29995b
BLAKE2b-256 ff2b04b9f4d287010892e34eb6bcdab493ead54ebe37909907de3107fb227ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5de0fdb091a0ac3aacbddc98f7e5f731351dd42e53f4fe297714780a8aca5dd
MD5 5b3cbef0065ed8295f453f5ebb50b746
BLAKE2b-256 3fff8e13a745236c28a6459d9042750d49c48fa15950f20198f5b9918b709edf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc4e0e7329e46b32f02eb99834b7859cdabf7a9a2d465e93882be01917001b78
MD5 41e36a14e12cfcb124f5570df115234f
BLAKE2b-256 370e3dd94f26cba425324f0e8d0dfdc7e5e294309dfbcf944d43ea1ff03177bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb63ccabb285ce106d84233b9f78f3d5e1926cbea83443e64285e9444149759c
MD5 77315027933472004853c69344b3fc87
BLAKE2b-256 ae0313b5dc25805d6f99ccb1cb379bebeae4b3cafde35b7cafaa4b17eaa3d1fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 326c0ed856ab2209ac967b08ce6486054ad2d40fb660c19a0cea4a9c295c3b86
MD5 6a1c8d215236c708095b629696e778b5
BLAKE2b-256 bf705e4fbc12dbd1e39503fa62522e909bda00b3871fa7ca3e29a1c10fef20e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05a738ec7a68d7695065380d0e5d9b5cde7b8b448e67f194ec8f481c904c24bd
MD5 42ecc4d5e27a6b89b1ad1a121620566d
BLAKE2b-256 190a564674f3cddb337fbebb6f31125b0da1799c95b760c13382279530c840c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65325114e31fb42e565eec19df5fef1f4d726cff36c158b3792ec5501eff6be5
MD5 f1772bb850af6afba7c5955c11dd8182
BLAKE2b-256 9b05a022194032a7c3fe8f3e54d0f365ef1c80f45e1ef2447ba4c180c9c9477c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 648c205653ab15876ef6057cc29fd83edd08b995698d294512f6430b132cc38b
MD5 ff21ada94d7fc9a0175e5f67f154012d
BLAKE2b-256 51d26e8c0bcf6fe0f0172eacb52f5899ae1feec792116638a9ac0fb441bfd1fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b709ac3968cccaad1fb8b6c3558196e175d6c9d7f0f6bbe1288133b6e5b5066
MD5 836ec08a0b95204d398ed4bf6ef373ba
BLAKE2b-256 ffe718902bfcb3e9f91346fb7039608cbbbec6250a007c237862c8a499866aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b12b74b8122ca4a8585252baca45e021bbde8d73867482598e23bfc710437e6c
MD5 92522076a6847a6850c09c1ce49e0892
BLAKE2b-256 13735167811e13553e5cdb8e62009dd88f0e72d7008f44b85693364d1a4f99d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d21653f9cff8eb34bc6cc659eb0f19e61ad67b9938a3d62c3dfca1dc63ad097
MD5 f382ec81ec2ed78cb90f9533993f69c8
BLAKE2b-256 d06a99342c8616dcfa04e4a02ec49bedbe117d246d159951a874b4e5cc638bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b56f18bb32586f01ae6d512c307757e670c65eeddd276eb68ba70e08afb57f81
MD5 5afad888f590dc001985ec4ee345a395
BLAKE2b-256 d9e1212d65e9c4e575224feee0b13da3c5c5f53cb8ba4f413dfb500662502ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6758d622cd3ccd5d94474c5809f0bbf2383a60c0bbc1f46d18936ca516012102
MD5 733f13a0bd9fa2d0e8ec4e7dd2cd6272
BLAKE2b-256 f67b66a91540dc3e5ba77b6b5c1736469d91963662ebd4f186c83132bab8001c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 814303ac7e833f6ef6ff9727baae2748a282423b459527fbf1d71b24f27950a9
MD5 300fa737fea4d10756297d169c4404aa
BLAKE2b-256 0da498af9330be9e8c4e79e722768e96a36f9ff76172def86279b5e4b2229e74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 047c748b4892a13bda9115ad0d7edd213ed5fe18e4a68bf5f4d1a65371db2a94
MD5 36f627ed89186d5c06363771718eef90
BLAKE2b-256 0512eca758d1b41bd833d15f1455e921cf15e26dd8f0ba61cfcc2e7dbfd4968b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d56d7ae6492cd1abef1a31bc186653720f998dcdaab4b6eb571e5cad8dd6bef1
MD5 964763fd07e56935e4b00a9d8b9a7411
BLAKE2b-256 a9a019ffcc487f2a1e3d9057cac6058d163497303a35bee8ddc447f4c13b0233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba21b59c32533887fd477bcf367284f19044a30b731313e07c7f9090f6a8fdf8
MD5 8713986f1ec642dd991e08b0fece20ab
BLAKE2b-256 1c193cd637bae3eb52712c36af105804b9b8321216828c21718638dfc2a29d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77000fa93ae364a91216d09bb92e877c2437362b6918a8dfe034cfc90db4d096
MD5 6f545569252624946300cdcaa6da07c5
BLAKE2b-256 d804fdb35bcb35819e555afd7eff2e573ab5fdb0d0b4d7f485099e5ac44a47c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 43ad9232b51d86ac1f43af9ea9bc77f8cd6ea557e2c78ea583288fe7dc794fbc
MD5 4234af76006c234d3e47a8f2bd34d2d0
BLAKE2b-256 4e43a98d48176af10d1d569fb5b2e55262d16f6a5bc8ce336cf15d4eb765ea23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6088d68a97ed47f256819d956c8113ccf5b8a63aa50e322de8fc0acd897f30a
MD5 88485129b107dc52b14f9ab556e22d4b
BLAKE2b-256 d361eb3bc3b9d6ecbd5734146f51df37e06e479e1615a9b834aaa09bda400089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f91370c368dca94a6f1d10b43ff077a4fcafba406c5080b5843d46641f184ff
MD5 297cbf96d3f9b779401f8d26a8283c9d
BLAKE2b-256 34f85cf4c1ba5cefaf2af038664773935c8d9d565368114b98383e5f3abaf8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a344f471fd4a146f7f79185f5b7dbcc7a195360cc13fa14d2582f17095af4108
MD5 f5f597a950ec654e08719649d89fdeff
BLAKE2b-256 97669e5e3db7f0ac85f747f6b5dcbc3c4094c9ccebeb0460b5cca9c5300e33f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3b1766172f7929add542719432ebcdd51c541fc1f640e085bfbe47501ffb22e
MD5 dfb8135010648c34b7df2ff092c9b4fb
BLAKE2b-256 1e104ea87ff6f071278dc4aadc1e1ef484cd59987e79df908125cb7249bcdede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52430dfe077a9a67b48602b1187d5c92fdf5d3595e2706e06d925e98ffebc324
MD5 e860b757e3764c8360dd0ceefc139a4e
BLAKE2b-256 45688c3fd495263adb884adf14f4a1141f272ffc35188f118c523ee19a2d072b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56c2cbfd664e74cd7e535431930bec576adc11713a0168e86bbc7beab53e90be
MD5 99224be0fed09dfbee2c67f3dee0e6a6
BLAKE2b-256 3cdaa5e124cea73d3d3ecf7f0764c684079871d8278f4eace67f15bd084fe0a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d3c3da084de13e27f122610f674c9358424542253ccc48a9ef2b2a25aaf25c2
MD5 c4ef59124421da9f5eab32bb6f235467
BLAKE2b-256 bc365d731036fa394312c51c1fae2e0d8994c3482d20e01dc8d7ae77b5a93770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f216f6c1036b4f71872376d4d580011eada5ce3556e024cd26db972873a85627
MD5 9ed3c4af8910c5bad2898fa5f3a981cc
BLAKE2b-256 f7b999d63c3233456c2335d594419c2eff7cd697ca38f768e808a16dff99af89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e620e8bbfcbcdbb39e8cb621f842ecc026825195b9662c7c33d66d55d44bda9
MD5 5e3ae75638c6acc269683e88cd62e213
BLAKE2b-256 06e815336c9ee968e7668f8afe6a6b1093f3094a0e0d2966d28720bb441f326c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fea433706546dcfafbc4d3f17208f6ee921396609c319c1363e0f860fd819c28
MD5 b4a0931c24b8681c320de1ff436377a9
BLAKE2b-256 3daf03f63b093a1e749bb7796be4c878b5a3505e93b4bb00bef3088d946aed96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd0d25c71fcb11acefd70a46bcdf00035b1a51c6da0509da22a1a0cee53607c6
MD5 e3c568559150fbe3c3a1859bb44a80b4
BLAKE2b-256 1db0041b8dcd4a0ed310f9094aa901965572b6bb9db45d235777f7b695548d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 474e33ea0ef63cc871a0b2c323a148abdb7e6f7ccfdd940b2ccb7e2142c00b97
MD5 da63c9e38fc03ef1e8f859f9725b6754
BLAKE2b-256 946776b63ad491049100337463745d0b88de829038156515c155de6ef7e09b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 de7d583c014362bd890b6391f542d1bba835e6ea69493452c0d8fee801f44bb2
MD5 b6b39178010a626918d3860a9137fef3
BLAKE2b-256 504c3c65424f4ad30333072176a6283a10d097fb2516eb4bb4d40496f14599a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0af2ba6994e4706cd5b38b1605e8bc5e0176ab16a6915746be8ec08fbf2d0371
MD5 ce61c5a21178862de6a24097412653e6
BLAKE2b-256 031e470527cc60316b1d393e3cba283d4872132f510fa7afc948094020056beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a8123ad68e5debf132b42433fa1afa421b4cd67035d3663577d0ad123c01bd1
MD5 b9319f236280661cc23b1b07c75ec72e
BLAKE2b-256 9601f237d846ae4bddf4e9ae3e611927b5c0dbdeefa20576f17d0a94882e0cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d8056ba88fc8cb0835d6b1c27e8783d18576d78a3578d8927d170f363f28e2a6
MD5 d4a9ec9e0dcbde678f1ee546e92f2a69
BLAKE2b-256 ffb525b3f8bfee94b3e125d1db8054db708155a9495cb26ffbd5ce41ddbe36cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c56d969c7f3e8e1e5ca30cbf0ee24ee70e8c217d7440ece4d7b3aef3bdc6ebd6
MD5 3b6d700dfc16fd51dee8a3583f99b04f
BLAKE2b-256 16b7c051e8dc7064eef86ed7aeae71ebbfddf137e38a4453c198bb0900a6d4de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 697f445b42fe6e3955e17a85016a97d0e83b477bff172bb1ded85d144a44d471
MD5 4f1e1e7938d458bc43c650f103e3f1c0
BLAKE2b-256 5cff361dc5c26404ff0304f4c49aa9172c9fdcbd4481a9f95f87fd0e41951fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4233a18624ead8b27ec9c291c28c22dc7702e100f08473af907b01aa41e11a8f
MD5 d5550c93a79daca554b57b8b7015c344
BLAKE2b-256 8c8c2e5fe843b04a6525a76310ee738e2af93eac124a0c6d23031d002e9d32d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2217a4d68cadcd86d23f5ebea1d5d92790484983dc19b53c2be423d5efbcb985
MD5 0831bc517c648cf808097649cd79c1ce
BLAKE2b-256 0435629670d71e81ed254838160950070503c578ee2cc53817da5cb299777aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d00ab09fd8c1ba0f400d0eb3408330b253f3248ce1585d42d7ac79c33994fb53
MD5 57c71081d92a652b475aca723335e57c
BLAKE2b-256 c8bc9587f8dcd810a0b938aa8f2837be47d1adfaae0bf5eb4b8f1b97d9d92407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f97bb3154235f5f4a3fde386d40b906ecd3ee9303801afc2185db0cea87027d
MD5 dffded69c1e7abdf78989fab88945f7e
BLAKE2b-256 753f41527fade87b256df60c44d77780476760d414eeef0007acdc08d2297c37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 333c7b18d5757d79203f3313c759ad15615f90df94a9a0fa443d85212ef8e834
MD5 1d6b384d3f514694065d60eba9a51f70
BLAKE2b-256 6c97a5b46b909c2a94c9ee27aae2e7eff8c452562cee714f0e8c2c543a86b614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9dcd31924a6243da27e413c69653a22a6ff5bb2ef6c05e04a9e65096a52983
MD5 e883b31f4d84cbe09597a0f281e0caae
BLAKE2b-256 9b2514e611a25351aa8f50fd61f12427fbec669299d9b6fb545e6c0f96c407c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5798c96bdaac1b4216ba976d537d417786402c4a5d741602760437550a4d6c20
MD5 8bae081bb351614c64411283f76431f6
BLAKE2b-256 a8d4c315969a48650b8df76e84535f1203e1789852feb2da620b865af939dcce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6fe061ea6f1a713765d71a8fce6c23d0bc1ebadf31095858b8f11321087b25c
MD5 44ce43855e11a19b71ea428deb959758
BLAKE2b-256 359a4ca47e4c1010ce7d0fa81f9121582fe28676a9bc373c69ba75c66196da49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9799e9cc5862b061a54d380f176cf69dc2f9dbf20c0fc18542363c402e3814fa
MD5 9ca5c98c9bb66049b176a348bef8c6ad
BLAKE2b-256 72ac5e75003a1121fc2b92d6b35f4ef927d2b7b3614881f02a0231dc49ad7ade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 834cd38aaf19f152f1300bed897e16193cbf2cf55b84746f6ff26d121b34463b
MD5 04b40a579eee7af6798d63729af295ab
BLAKE2b-256 008b9f00a87d0f5d597be0d2eab562448814e3247677f2ec4b11c3b9a376b35f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 129f6acdc0bd37fcd495b81967126746bf8ad9b93eb2619a4dc871e6b0dd3292
MD5 48005dbc32f8e1622c34093e59e96d7f
BLAKE2b-256 1d810bae9dc74cfa1b1039c107b49e283fc9722905116ca381417ce91d5037a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03b6959191218bec065256926fa63701a787a13fb3d6d46fe088c9fe2e2d6a06
MD5 0706d7db473b712459c48a744929f18e
BLAKE2b-256 17450a7be0bd8c7e45c291c386dc2e41374d93c6d70d6a4c2fadb3184fb9a956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac352e4e5479aacfaa5c528c88d121e63be7aed47d840d26093f8ff681199d08
MD5 2adafd72dfa89bda21adabd866641ec4
BLAKE2b-256 22f8f905bd54a11a9ac6d7a5426d288d410a6c426fc2d8036c58e624e1349bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a153da6cda2de798263a26ce64bf0444ad1990371208d479c0455c15118a6901
MD5 222216f34ca862052f52d7d13ebdbd89
BLAKE2b-256 0b11e3324a4f0a9cd383dfd7f2dce0fb2decde7d33177b08950942492d3d17a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a16051862d3c95e763a26e59f1a261ff5a82e1acfa7ebacce5e2985a0779241
MD5 e2afccefda1885338479f2901b6bd7a0
BLAKE2b-256 bb7cd42bcf7e9a9b1d622a89da0cad886ad19439fc457aad56dd2b0fdd43dedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 686af38a62528dafb4f39b59055749527f5071e9efc22aad541fe8fd48d18ee9
MD5 7ae516178e355ccb01ee20a5d85ceb74
BLAKE2b-256 62d2d551e31658ba45c1b06f38a7185e516d8b997d92b49ba6cb174adbe87499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc4c4dfef6fb8514a96d19925495db5bf5d01cc873fbede0d56175bcd1982fa1
MD5 7dc84c2ed9abe4527ddaa0ccbc90e9e0
BLAKE2b-256 0e80641a34cfc417ed4d39debb34ffafaf454e502c0e4c605d6723eeb0a9dd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1a65d708f8da940c71b42aa4ff48a670571f45c2dfbcbdf25d95947cd8e2429
MD5 93b21ce5f206f144e85dfbb0cf277585
BLAKE2b-256 1eff14e518ae8b2c5829461c9b1d47b6f6cc4b29deaa889df313034ff9b7ff22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de032a2376d307567be3dcb5fda35c50925d76cfba2a3a101087ff8706742206
MD5 d4c3546574c4b8ac37cebcb6dc37b9d7
BLAKE2b-256 cfb78200b19d31c5c678f36c530577ff044581713ea190a2ff3ba979b46e3f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02b2d5b628d49ecfd21bc9ef8c09db7822d95b32d435b09d833a91c8f19c008a
MD5 1ad0faec091d9f86dfbb6e85b1c2b132
BLAKE2b-256 e77e6c0d23dcf5d5518259115b0a5a1c10e2338b49da81f96f624ed01bf6b8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd4f4629661974397043a0564808ffda00a02ae0c737d64846980894a0e34c79
MD5 f5251c522d735a2f1d1b6210ff8fb795
BLAKE2b-256 ad43ed471cfe09fa2f90bbccfe50f8ae5380e94823c028789b7902aca41ba148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbf3ba4fe678304a933ca155901ba1daa66c002365ea7ca481ca66911720fd19
MD5 ee0cbcf720236972ec2d7d96ca73f3f4
BLAKE2b-256 1ce1488ad6d63a7f421ed6012018b3ff960a31ed4dea18097490acab690d7509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceaa7d6fee57342f0ae96325c04640d07eefacb22eaac9c5373cf18456c83477
MD5 43ce36350e779ad4d07fc844269503c6
BLAKE2b-256 7bf22ddd5a0356e89ea6fce49a79792860ea3e2871679c60fba8852a803f397c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b867e7d994b6945b9a5eaa76aeffe7657c679849146cfb26f9a8140f676ea5a
MD5 7ea91b6a36f489b0d38b76f699c7d016
BLAKE2b-256 ff3ca52bfd030f992651f23e827e7ad16a00c5818d373eb6e756a4da47e8d777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2388e4ae33b20346ab5b6d393cba12dfcce242d1bf1daba7f355442219be487
MD5 07c4120aef2947b6facad6e3d7ef658d
BLAKE2b-256 3f078f59d6e95e68ce50a653c925631e34dab71c2f0bac39059aae6c3733f3e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c2288f52ba680b43d1924d3128cfe29b2ebe707017faabbfb07182e61eca2ba0
MD5 b3cc8783e80ae70a46047f6a6c2ab8f1
BLAKE2b-256 96ffae4305295ef5049e632ffcab809c0946350ab470084beaa1176576358c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0864561642cf3fb37e94c3c239f8c76c333d3cde6d6555647e28bddf25410ad
MD5 10c58cce219664a2d8718f060c972479
BLAKE2b-256 fb3171b86e49046af193ea8c86164ce7feb2d0af3c8bbdbfdd58b611a98a1958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 282c50260e48e2d15e350752ed21998d5580871ee73d08777c9c2b13b53404a3
MD5 91059ffd5034edb851a102beafa7aa0a
BLAKE2b-256 ae40c2c7c819677bf56e7cd03c374aa19a9db1d4d6ce7edd0193269e36cc688f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59057d40a150d286692b6b89e53d20a32586bebc22ab393b1e84493e0fb258bd
MD5 a4b3956b59e95274e1cd635844a7f211
BLAKE2b-256 77370011571cd8556730fa04b18a58356a9486614532f46534e8ef2aefd274d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b35a570ef806d256526402f8072b407cf85745cc6fb860a83437fb9ec385ee3
MD5 3752430aad02cb25a7a1152e2fc6b6b4
BLAKE2b-256 5037eb29c9dd0597fa2a86a7a83cddea7141a3759b59d4bd0ec28cc6b15fd953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 45df548a10d557c1e691068a4ef3270e47b35399cc26b06197c099fc534c5ac5
MD5 bd0de499299fcc189f9840230137e847
BLAKE2b-256 a4a39c44c35780c1454fc82aca4437cc54587fa6a99e249f3b220d0c0f02debf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f74a7dfbbe9cc6cfb0ac9268cfaaa022b88cad806e3eb55f662f9bf25b2520a
MD5 d075a8d071c7517cf7864f26cc742b22
BLAKE2b-256 0d2ec1cfa18ec7e292c6f9caeb01d6b8a69abf5d3646b7063083e5674a9b93d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e327dda284e4c525ab49e6856f48604dcff3e588f29c708474e63c727015325
MD5 1c7a11dd504f24ec7582a1987841609b
BLAKE2b-256 b3edbf6826b713dc33926284f474837f09cab06dc4d34dbd1f707897615d1004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b38e76e8ada6c0adc9b693e8dc78051ae238c2820c7afc158851273aa0f16136
MD5 853817102660597634d5867066a57e6a
BLAKE2b-256 072fab0a979e61bd2191df397e16260add96ed05398ce7457497c2ad95dc9028

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d04c4c5d2c2ed812a40e2e29e234cd72974ae064c4da436ff7ce0f136a74f8e
MD5 a2cca980889aef8891a42d9e51a8f26e
BLAKE2b-256 13fd626b08350c2b725aa8118ee4c1968d3b6f04ea781e2d049413331e4ef90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c713de08453d375a10014a79645ab9d029dde279254b3bd89f65f66f830daf8b
MD5 80dbab3090e60b30b504001fdcca9c92
BLAKE2b-256 b11da7b1bb27efd714c054ff7c4830846cca6a82784d685e1637ae5c8227955c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa75e796caec98cf7a23c6f59a0a14327f4c8ee159e09bbe76a8df839cb5e9aa
MD5 76bd0fb9bb65cae66e1a9ce4b25e50c9
BLAKE2b-256 d809c4b0834a063639b804d4becbf831a81c0c3a2839d3515075cda0fd62be80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0092994a93b22509516eea007a034b71b249e4e2fa88270da220de4fc33d01fe
MD5 3a06a861e00f466fde2f1a32aa5a8527
BLAKE2b-256 2335f771f0f72fe61e2addcd7fe4e9ea909892f91e56aa5f1880eff65ca6c27c

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