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.

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

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.1.8.tar.gz (21.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.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (659.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl (694.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (761.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (666.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (626.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (522.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (659.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl (694.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (761.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (666.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (626.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (659.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl (694.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (761.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (666.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl (657.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_i686.whl (692.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_armv7l.whl (759.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl (664.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (516.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (619.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (481.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.1.8-cp314-cp314-win32.whl (277.3 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl (659.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_i686.whl (694.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_armv7l.whl (760.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl (665.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (521.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314-macosx_11_0_arm64.whl (420.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl (432.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl (657.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl (691.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl (759.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl (664.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (516.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (491.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (481.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp313-cp313-win_amd64.whl (289.4 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (658.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_i686.whl (692.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl (760.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl (665.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (520.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (420.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl (430.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.1.8-cp312-cp312-win_amd64.whl (289.0 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (658.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_i686.whl (693.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl (760.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (664.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (520.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (481.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (420.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (430.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.1.8-cp311-cp311-win_amd64.whl (289.2 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (658.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_i686.whl (694.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl (760.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (665.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (521.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (422.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (432.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.1.8-cp310-cp310-win_amd64.whl (289.0 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (658.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_i686.whl (694.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl (761.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (665.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (490.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (622.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (521.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp39-cp39-win_amd64.whl (289.3 kB view details)

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (659.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_i686.whl (695.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl (761.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (666.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (523.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl (659.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_i686.whl (694.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl (761.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl (665.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (626.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (522.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.1.8.tar.gz
Algorithm Hash digest
SHA256 e79c8fa072d577086d3137883924b7dd3112c1f80a18df24d0b307cc268ef96a
MD5 9d679d23a00bcbad16874d5d156ded89
BLAKE2b-256 8f4c56847825b69672d6065b05f35cb34f43f2ba829761b554cbfd98a3f16f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 588d30560850e43d46b0d46d5c733fb53fe6b511ab7384122b4d145deed44f86
MD5 73af971cabd679e12c7347dd6b4e8bee
BLAKE2b-256 16984ec1a0c6649375f1f93ff51e04d4ccd74b0c7b897273514f975a1140cc47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06c3e45d62dbdc5d7c0a5faa4ff9c01ea3ac06d8e0f6ae1c22dc7cb4d1fe4506
MD5 f232de5b4ef2304bca484b01e363d1ef
BLAKE2b-256 1f55563220698d1d5651b218b46622a40ca39f1884c5eeda743a6e297bd5e970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2552d7f98c754e6d990b28cad3a9da6d85c126947d313ca78d74d1c3542db00
MD5 09ed9258b9b8ca95f74034c9e774e27f
BLAKE2b-256 6eaedf2315b0a418112bb8a1a328223663180c175161eaefec5fc25b5b131b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3899b6b8bdf1e1478f95807a00b20ac4275336ea737cce341ea82ae47e0061c9
MD5 fa7d98719bf44a8cb537da1b899e5baa
BLAKE2b-256 0c98320e4e7061ac60f3dca054e6739afdc2b0319f1bdae62978665339547447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 089c953c8fd58db042ae19679e480093a4eda781be3cbe0b2e3a631ca8b1b200
MD5 ed7249ceff71c15a7ac075237d55a2ac
BLAKE2b-256 92dc76dca7fa29c8d25a44c038982494ea80d30c5168577b3210bd002fdeeab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c21d76bebe84a7d97f2f6baf2e913988a2ad68380293455d2426729537557ebe
MD5 76fb97633b5c90d5d91b82f4b991027a
BLAKE2b-256 24b6f74ea44347934053cf76e95d4e0901604a546fb58f0d513169d1c6f67e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba9b84d4ac608e18ac51d60828804c423cd02a32d947891c5985e8dc49dbcd3b
MD5 2a28f09ce183d3e7fad175f0ca166162
BLAKE2b-256 f79152ef9a5db3b6fb57d283714b93c273b94a1bb5f087e839570113c49c97ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dda03d66aef3332f690b72966918e6303989a605a28765275152235e90d52b6a
MD5 b14985a43ec1a009e00f30b766a10005
BLAKE2b-256 8aca68cc6fa00c4da286b290d92a605a8df00f7f8efd4b18791dc1d4ba6eea10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62d7fa592a3537cd6f15fe721853c9dd6918a271406bb833895a63f63f9f3077
MD5 6b8fa6a0567adee46d9203876ce06c17
BLAKE2b-256 8b789ea134d47b2ceb648ff4d9c5044c6d1ce1453b2ccbc180135263b0419775

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 274266d0ff8158a6a293474f078148227ff190c6786f897f080d4439e629f528
MD5 6b8b6449caca6ffb09772dadceda764b
BLAKE2b-256 4bd67ddeef29f7be43f3eac93c56d9058579ab4867998a7e800ba39ac67dab83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec7d4c24778b7435856c1b4a5e2e0f2a1a18ab5e2db646683bdd341269f52b5
MD5 8e6815eef67573fb2e3be1ba446e8ff8
BLAKE2b-256 9785c70afca4e0a41798312e7b833afd337eeeda885e2d512cdc7f82576f6bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c87c4311fe4a1c667e4dddc4d9763aab8533e984b5f8c842883810d27f81ca8
MD5 37b65dd761f0fee7babc84b27a7d3029
BLAKE2b-256 f9f34f00b01f5fdf329d26aa144932206a6bb101b1d70dd6d0eaa8a696acc08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ebd914ec7ffe7f3b878bbcbd4d5ba455502ee0bc44bdaad1e1193f057d92c56
MD5 5d545de883f2588a9c91b495301cd60b
BLAKE2b-256 6a8bceb4ef4d80c019fcf9abb0019f2754ecc5420dc025442f43afcda4c12bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d741a2176e6d61816bd4ed4d14d11581b4aee923d904264da0cc3cb50e24837
MD5 aae7b2db147d497a744291d2741f1bb8
BLAKE2b-256 4734a6f2072d6fd9778992b451fb6fc057516de328798cc00faa50fb8892437d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16037a59a8cad370f2d00017bbb3c7cb5ae71e775f17ec8e036212fd03e0a04e
MD5 a929ae74e84a349ef620f793283a5026
BLAKE2b-256 6ec10d95a017135e6dfd29bf16ba229dd00ce9adb02cb2a3c8901257902afaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66149139853433220c22abd16a96ace3148ec0de192b82297b04380237ff09c1
MD5 2acb6772f42a3b8b9e9e69d0e1115384
BLAKE2b-256 13663db1a961f2c99295162916ec97acbab87b9e6e1e0524dc72711946d96ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63825c1151f712d243da5e2eb9780d01e944f12b1be6bc677da622498f5e461e
MD5 3f8bf9b52fd5053967838dccdc84880e
BLAKE2b-256 3f4f7411e17b7c973613b422444ca0176b66ab095c284fc487840df1bafc5c0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f652779abb37731518a612daaa0f19b366dd554c868fe29e8e63be5ce4518559
MD5 dc7bb40d2f010cc8febc91bdfbc85609
BLAKE2b-256 d9f0485c325adbb7a74ddc3fa8a9ee7987077331b13a9c1134769c227b95a91a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c04f1e5d4461d709aaf9fc5c291a4c3f60288a16d20eb2487af530b3fee7f83
MD5 6850cea9ca5af04e556c9f78d7502817
BLAKE2b-256 8f6ad65f8d3dce6cfd3dc80a4bd380306acbc5dc8cdb853c5bab75ae898cf432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c3bdc53b50d7ff02262624a7b80e213e54592df9b4219c2e859f57bd1057305
MD5 450fbc5e3cfec0421cf83e1b9cde22f7
BLAKE2b-256 ccbd2a794775cb24475ba48bbb4a5aa1fcb100ae57e8fb123a8784fd72c85c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1d41c11b9436c8a5607d9f83096afd30a2407be3d4bd50bf56d6ce8b7e54cfa
MD5 19d4704329e56415991b2d1dfa9e9176
BLAKE2b-256 744d234e3651f4a22d1f8eda18e945b621c3397c33db5bad75e8f9c82627f0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c58788e00a0e395f752e4e4b034d245029984f7debbd422070da2c1a84938e3
MD5 4c93189d6081379b63e15973c1ae5e9f
BLAKE2b-256 d73b69e9714dfc821b9c90ab9f91d8d123d132406d58e752393dd13c861dea23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a759a61908b9e132acfe30b28a4a427f7efd6cdf39fd6f701ff397111e3fdd4
MD5 c40d4877f34b56a16f88f3b82f69be0d
BLAKE2b-256 fb443e9d9d4596e59c49082671eed590de5d27cb70560db7b3898a086424fb92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa9a34003e33de0f7c429cf48d8b090ed25df56fd2adf2159262971615dc6d4b
MD5 097082d359c940833471271b6719f147
BLAKE2b-256 14816cdfdc51a41cfe2e08b1c23c2421a05709e9d7262c43679046b9e37818dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60476a1e7eaba364ed0115d490f34e6a5df54821a70f62bac6fe4c8e4c6cce1f
MD5 083dd3500d2181b5b5ecc0d7121cad5d
BLAKE2b-256 706a6e499bcb5b1c0fa52228d3dcae184185a389f7298b55149d1fd2dbf9e74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75822a4601e642cada0b7f1a368f9e3e4ef1c219294486db71c57c28d43207dd
MD5 077730733026f1654dd9883e048c6de8
BLAKE2b-256 1fa0fd7bb098c8538b699c697e4e89effb4f8b5092097da6df6a25d2ca1c7e2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d5c41ef25a7a787f939fdd28a0c6741214d50651951bc00cbe59e74f58385a5
MD5 57eb72c8a780e138a9dd826052d47fd1
BLAKE2b-256 b557579714c8eb7eb242fbd787a0dd3bcfbddc8e06c956cf8c96f8737addca5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 55cd0f00943fff163c83bcdc49fbc1e0851394a2a8033707b6fd98bbeadbf042
MD5 c52f82a7c7f6f4ded0613b319bb121dd
BLAKE2b-256 1a750fb05e00dab7dc89a70574307828fa82807a826e248990e26329d125b13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 721c80013baf2d5fc56710ad1e7b7476e8d3d9585c36c81e670b9e13c7df922d
MD5 87642288aad22340f8b7062a8448f6ce
BLAKE2b-256 b976add7848db22029e1c954cc27487574c38bcd2c99339875d0bbc41f291c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 488966a4c4a2649aee0d64bb7d07b5829a779d1d8c7e3bad371cba0f683b6efb
MD5 ea9e6c5d0f14e674d4958e5ce755a876
BLAKE2b-256 0954290e210c7debccd69d4dc535bbd448d8892cda1e455b39458b4508f8cd53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61c3948111ca13548ce3060f097acdd3e0f8a753eb0acd43e5440b90c71e1b0b
MD5 eeb80879bf71b1439c59a70bee5cd7fc
BLAKE2b-256 4c6f6cd5c679601282cc1840526c2fc2fae1efd5aa3c800c9dc26ee69fa84d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9003d2ab8a1782da523980397cc95ee9ab80ebbd501643dd907045f88b479495
MD5 386b1a5a6e1df902b25ec9fa0a93e4f5
BLAKE2b-256 9789a2906bb86e07b167191ad42effc419d393f311cfdcebc573fc9a02bdd301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71d249814e04bcc566ef1bffe50e1b963f20de7d3e70586b164c781a997c6dd7
MD5 8bdc50d8c7a9624dfdef59d7d7a94bd9
BLAKE2b-256 03350cb0387d99b3dacc7632d660738473a83c06e064f338389405e025e141a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60c9b07208d218d965ecf98ac5e82a1300af79261e864c2024ea07ee031f2451
MD5 18e6a0344b1cb39e6f20e2e67523c957
BLAKE2b-256 b6cead006d57179b2ab82afacf0f5d08c212080c3c546b301362f1a799328d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7d5b04788fe6c9ec97e491641109819c5ecf1e5efe2ecca6d96e73e9eac97515
MD5 0a3fcfa461504a7e2b63b7d4b0c88502
BLAKE2b-256 16ba8ba299b173291dfb7f5c90967f87f89bab5ddd1af31fa57d6c329c78ed08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 39eb48d1b4a474ab623db6acfd94623effe37fee0710c94c654b2d4fb8db5771
MD5 6083a8773be79331fddc9813db7eb4b3
BLAKE2b-256 bac7df40b887b0bc3462e7911f1bc9e974556101b1eb0a29e1970316faab2cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd11e6aa1f544c63f762a7a17627e244b27f0310fed84c7dec714b098f7b0c15
MD5 09d36ce9523050b728c895439aaf90a9
BLAKE2b-256 5244ecf77832c5ba7f2ed70804134bf08c68dacce339d83448b06a2417dcef02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89e7e17a891019b6168518f7de01d53a9c654d4dd2a2e42e0190b4121e1fcd17
MD5 e6cf6f87335e0420fd9bb7928bcbebaa
BLAKE2b-256 c7969c0d3bade534c0e4e4e6d377b3d6a1876b59ce7e75167a367af1e79b664a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a78aed06b8dfbffeed035c0ce2a21a6992231464d74bee438763268547a075be
MD5 88ec2af89d280e5cfd7343e1f45067fa
BLAKE2b-256 9fefc7ca8c2702190671fdc120a4b0483ec815b85aface7e1251574f2629f29b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 814065fa7abacfa924a4f7903a15ccfaabee4f24fc7a5edd29ec5ec515e1621c
MD5 6f0b6902b3c7a2134538a43ffbe2371b
BLAKE2b-256 575c1a6f58550e1aa31de10c4bde9b38631e78adeea0573330f9298637e1dfd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21f0d90de6efd695779d4e52ba626ee6ef16a68773aff52e6cd0f70d2729391f
MD5 c73aaaf8e702ea34ed2ccdf32b7de0bf
BLAKE2b-256 04d988c73ed953f2e70fcb5eab4f5994604c006cbfac406d233f1e5ebdc69d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bbaaa29f948d6e1699941caca3d8c2f6d7589ad66e6f54ba13a751d2aa7acab
MD5 8262064630121e53d017dd2155f90599
BLAKE2b-256 ca209930bb898a62af1e6fa2c71ef459a9f5ea7d5691d271d7a179b7324c76ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 900b0881126750a33f33522923519f8af0567183ca04cf63691d26a09609293e
MD5 48b84f89d71bcfd47f5e0b7a19fa47d9
BLAKE2b-256 390ebbdf66dec16de21042ac6c8358a4b22d819fac7e7227f1cb12572474e381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b3a1d9a2444aa2934cd79847d3f89e078ed5d1b1d535b954b0f337e835fa5b81
MD5 1ab2ab25c41e63bbf6f4242ff9d675c9
BLAKE2b-256 993ccadbb3166319ca312c8f6f7f0cd71b375658109024248b5f023b55ecdbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9532ebfde8d7a44dc25902e11266d50f0bc781f5e5aace0ecca7432b38282df2
MD5 a3d8520175c6a56d34e3e69c5c73e49e
BLAKE2b-256 352c2605f35e9aa33969e45b54339d86badeed87c5427adf6f4b8ec26c81cc04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0cf3a7ecff6992fe6030e7e3b44d19ad789695bbc20c07e399bed59eca5f9cb
MD5 208de1327065960dac738958e650fbdb
BLAKE2b-256 e6ecb34bcd0de0d6436ef158ff1d080afd809152cb321872fe96e396e419cb65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7953eb6b956aaa47819e7d4d03fba4de85af0f8feea47abcc61932b93cffbb0c
MD5 3fdc63258178d58d9e07c2973ddab2cd
BLAKE2b-256 54da64ba459b45e2f0549c40db8d7413f970dcfc1c932556264e83af39780b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5541692ce3753364af1973e4a13eb9daac82cf35998d58f447871742eea760b
MD5 c1e32fcddaf7eec016ff03ee36a47263
BLAKE2b-256 033cf2bd0817c5a3c14edaac30d5e216fa88cb83e7c57bc2bede54d55bb21513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63a06fdd4ac1b9c5faf44bf118ec55e4d104368846c1cb6ee0eacecb4d42ea9d
MD5 9fe5ad41113b6f0c1b0c616245fbe869
BLAKE2b-256 18f114fb7c417f341389270e997dcf74bc5ed44310c74fa01b56767b3ee9819d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0bc08ae56835970ec874f4dd0c4aa15970a00564f01be4b80d292bd5ffe95dbf
MD5 c70164f443a4d4064ab1cdbfae80247b
BLAKE2b-256 1158d1a9c1bdcf56aea07ed7be505c61fac13bb263625d5c6e3a928c742f5c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee437bd240b89b6165de01f0f7b10921416a64ff4fc1dfab733757a5dc013b55
MD5 d025bfab618a8087cf91496a500ad452
BLAKE2b-256 3f9fa2f0d626f1c29a6c523d4cf5d028bd4e510f7922daf0e5b76bb5acfb4494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b0093c7640fb40ecc78b63a43608a085d4e85f7051291b91cc6e85beac19a9a
MD5 c6a112778e6fc61945701744d63303ef
BLAKE2b-256 4ec683527071b2982b71f626b1482c57c45808cc529f5c964c093cbc10dd4f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d267d19029176becad15af87a0db58f341d900bd8d18ac1cc814340b2a5cfd9
MD5 f4b57a61b369023bc2ad214c001486c6
BLAKE2b-256 5f65e044b73049ca6f891e27680cadb9001e3b50ebf775768b5a3080961b59c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2533dbc794aa001cd735513138deac6e7b951921baafcd2fc368f70d08aa6495
MD5 9bf065873acf9f05a3eefecaf524c20f
BLAKE2b-256 5ac4b0076df5003a4b9d00bf0f36f3ecedcab722591fd06f55e617b92c848985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c40674ff7658432fc6f40ae92c43bd817b89ef4749601edf8663265dad2f1dbc
MD5 1275c5f73e04151c91719c33d64356ef
BLAKE2b-256 212fbfd835770764bd959a6070c44becdb1eacae407c8e82871f5539a561aac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 437f5dd30f37eebafafca9ec53bbee28a54dd95703bbf096759afaf59b4607d8
MD5 d46764ce7470d9ac1f44bdc5b8dab4f4
BLAKE2b-256 df368e71290e6dfdada6df82960709d3796252b27d5270768cd7bda36b8bbb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 701df6dd98aa9abf814546837b074e38c5113027f31e0c49de0e46ee76242d2c
MD5 06b9ceaa8409a72bc24b3b6bb3dbd587
BLAKE2b-256 d082ebf0b4703c77051f7a1de40a6b97d9a7f0796e24fc424ee3e4d39c7e5ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b356e160af485f5eaf976529a1a07d83e3cc0df05db8848f69ab3530491add2
MD5 f345c9137335cd96bf2a3f08442d0734
BLAKE2b-256 b63ec92bcfd0d3f971427aa1f74b607eed689d4eac8adfb717c2d82e0e7ca485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1dec369b7d4ad09145f98050d8fd98d512e45c27350acd9001bf72b51174b80
MD5 4166b7397ebc34176cc9b2431ed49c40
BLAKE2b-256 b96fbdbbb82faaf546f03fcf07ceb5d87199d7cf6b108548dfb68c3e21f0a765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b95b174996cf70ce6a0181cdfdc537611075ccabf9016f00b615d7d256fa36d0
MD5 e4b30e9366699f71935b80f95e9e2b9a
BLAKE2b-256 d2fb25b4e3f1d03a923b46333afd644ac2476a0743c9eb7e01dd6aa799ad4b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0a5657684637b48001341dfcace9755419b6818d6313d1ef5050b955f3bba83
MD5 e6a64078469a60c1d99a2768c210df7b
BLAKE2b-256 a6f87a6033d8ff1e1cfc0442668a48aad9dd5383aab2745b78c5dbe7613842d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dae5c7649c03cff8c9d58cf84c6497d0eef8e2b16303fe5b837614e0b5b51e09
MD5 f44224966fb88517566f4ef1e53c10a8
BLAKE2b-256 1fa5999d9b11e7f9ee4ef3214fdc6de14e8ff721fc4e9719d8e2be334a113b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5218f4256824925b9cf2db7aa4eca76005e639b132b454b83dd354a0a7e6819d
MD5 575413f101df39c168d75a3ccafd19c2
BLAKE2b-256 b4e7022f865c7da507d1bbf3a1a42531b3ab232b6b542ca75b1a61257d375689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05435c9abf340aab3e4c5c0457a796f86c71b299cefa381887276e68549a4c0b
MD5 939d57eb6a9c39937d767496d99d194a
BLAKE2b-256 f4daeb371476fc801a512ebff0e3ccb0e397474127a321f9322e26f543c21b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da49f36c8a15ed6e4b1a4e92867e2b2bd33795d7530bed8a194dd868b0984a1a
MD5 f1de5add1da6ecd813816c39e948543c
BLAKE2b-256 994952fd450b84cb2d473688ebb7893c049576da7e17dadf890a46af667a0eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ec7d20b11d6de4824f018281ef40bbe8c14e8ea88056628ca1178e3d38fa3fd
MD5 f2247a36dbb4cf49aab734daa6cc1e7a
BLAKE2b-256 3fce832fb02d4a2542bcb8d8a4ccdc18a81b75aa618761c3c6fa50c8dbea73c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 684a68401cd148c4c3fa75af289e5ad515ae9142728ac98c7b7130015d48bcd6
MD5 d77206b94fa4e70957e167e37b237edd
BLAKE2b-256 fa6302c2ce303467f48e3b82159f0b1774ea15e5ea31b839c585dcd539bbb7ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd71a2c0e207aec0df7f436995873d76229e440b4609935f811db8839eae1374
MD5 f9161ad55839918b711e4097646130f5
BLAKE2b-256 5d3254e12c036278525a62b566871280044912c069cc297e14f7fa81d4af86ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9e71f888dfb07c0794dd792ada5f56e16c009a36385aa0d506dfc9b1a803c00
MD5 0fb9c76ff9b9e063ad1a295f64ab89a0
BLAKE2b-256 52de1fb91f798961b99d5e29034c90e9eac78b3921fb8b3c254a84c4e1769cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 74747f435c380aa3d7cac461e935d126ca211014f0bcfb53df806499f540bf89
MD5 897ba81b7260c2cc8bf1ec3d4ca9e43f
BLAKE2b-256 4b466753e364d5da8f6b69a81ef2969ce576dfc9efc4c2b767ab9e540f1de817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16c438b85711db1bde15462fe61398b4d5aebf77816436edbcad548ab7075c62
MD5 1f10a7ed79e7517d8e73aac996cfe0b9
BLAKE2b-256 a4d489b2c1b8e0738591da67215080fa4e3f9bad6a96786717fbfa12bf795018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbb7dfdafc5113afd056fa0a7c55152e351384b9ba764646d71af0ee8e35c165
MD5 09981e1760e7d0dfe54f74cfb3983748
BLAKE2b-256 a3f488a19ea033f1ed6868cda3358586b4cc0b0f49abc9225276f13c0b7ebcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 583054f3148d06c6a34831552577acfd1d3cc6b8d8520b19ec8a19afb13f57b6
MD5 3aabde117e9c1a7c6fd20f3421cfb8ce
BLAKE2b-256 33c255da701e1c19a07315688ec947712723cc84f9dcbbcd4a36f1e8602318cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3df053a71e9baab48d49415366965952d91b15b0dc120af00f0e1253aefcee2b
MD5 2b963ec5dcb8cb4065518ecd5ddf5f83
BLAKE2b-256 8048b8149f5e7e6f6c53d864c15b124a536d96c3ea0111fdc817398d9e7c2cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1b0ff5d02d00e0950cb70c667916f29e62f9095c22793dd21eed50de49c566c
MD5 fcbb5e7047d71b9518442e89fa83054f
BLAKE2b-256 01bb3616b25bbf282325e5594d96ad6e700089ae74722e7f82d8e05314ad9100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d7af7e21832f551602845159ce61763fcc008961fde263ec1e7b452acbc0be0
MD5 6ef1f203a328ee4ddf479253cda72a6f
BLAKE2b-256 8eedddb3c4224f8be55a1b982ef2d4650cd8bcd5241926386ddc83576b418f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42b874b89d5a30c49074bacbd56d382347edcebeeaa4e3f270189bf36dd369c1
MD5 35617a7887ec6661fd7505778545fd15
BLAKE2b-256 9ec441b4b76e0d9d3f569ebe215b0f7d295585068d86b368af07c086f468f0d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1255e4ef60ca5f9c38222f453e9a7d53f6c43a518beb68bdae31ec3860610c2c
MD5 471c64ac50b4b7911bdc5c67bd74b39c
BLAKE2b-256 40288a397fe5299dc56ab2145abf6b4280c255bbc52e5d71b769c2f8b3b99a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f234c2238a91fa14e3c3e3afab363e4f4eab919a6ff78b3a9d82fc752f18dfa
MD5 6429c268a5566aa4db961769265c38c0
BLAKE2b-256 a8f4cdd9a39591f394751175e1a27c525548006b3c324087cbd8ea04d7bda529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2447d491e2a060e7021d743d890b65a0d291d6b93db47ffeb1a097aa96227a83
MD5 3d500aa348026ab9501d05391a109e42
BLAKE2b-256 97461dc0741e176bf67ce523cc5dbf49a9998c85be06fd96e4de648e8c144c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a763772e238477d7f8799122b93d3dea8c97608c86c729f1313e9602ff3d8fb4
MD5 069b48aeba2d6fd411985f2777549f48
BLAKE2b-256 3f8de75eaa788b7756732d2b55a4ff37072339f67b7a20f17e429de6fe65c287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3aa65e49efd8d307611c8bcaf42b2168c26d9332a501bff9c3c5ff14ef8f3cc9
MD5 ecae34a860087b3fff53531c4f90f17a
BLAKE2b-256 906bc1939ca6caa4cd018ca80abdd94af06ab3da5f3e4fbbfb7e110c2b856a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ab950717954c2e573e190073b044a6df54f5b0207311c01fcae21983b13a63a1
MD5 10df592bda3c60d327e4b663abcb4fc8
BLAKE2b-256 799a4f07e719eb7e43191283350726f959fe96bb751e8de0b1e651a52677a78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a147607f8add35b2b5aba06f466026d6015d6e03ef070e1a21a21cdf7a12d8a
MD5 097dcdf7e6f39cbf41203db566a42db2
BLAKE2b-256 b334c923898fe0fc099a91eb4e7621e9985dd4e5af001ecd7f5a347fe5bb0adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25f65335d5fe9a1ad7236bf063ca11c03347e1a37c94f19ba4574183a0266278
MD5 2d1ab7a0fe63c26170349feddaf11a96
BLAKE2b-256 ae1ed10dfdd5c3c522bce2a7343a2d3bd5b35cd929a34d3383db9fc5ab1ae469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38b446b7f46a7d6d5678ef1c6cc535ccdc70d3df76d751316fe5c2be63c4c943
MD5 248ff091c125389ad90dd3e2ecbcce88
BLAKE2b-256 e531f724a27d0896d3a03b5d67eade2254f0dabb3f1e827138296c5e1e9baf21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e6432c892c1bc18826dc7d4f24b93e9335ff5288d36f3b6080acd2dd36566b9
MD5 0188102965db8e62cecf7f6319e4ca59
BLAKE2b-256 538cf92cc23692f7aad3ea34e71bcb4cf82972fdd83f1bbaded2df174ecae610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 863e810f3b4ab145c4c43aec5b446ff339a34293a2588a8aaf3bee8afec03a67
MD5 80738929c81ff3ece7359ac77b640b5e
BLAKE2b-256 2e49f3177db1cb62cdb6ed8e74c25ca416d5026d1213820fa48b5ba276f451e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ff42496c892149e4a9d1ab1c0ea9451e6a87ad29f77362d7dff28ae5dd062aea
MD5 2bcd6be0e70dcd15df7270fb90602690
BLAKE2b-256 7fec0b839f86b8839f23bfb13a1879163abd7160771ce8c205cc7e58cd722afa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8652c9d3bff1a5e34d935adf19209f28f575799c41b8efb0b9e743890077fa3
MD5 8e5b944b3d6e3b4c08c9b5e01a7dbb62
BLAKE2b-256 aa3c73d715025245156a08822d795ebf35d2891cc822de4446b6c0181bcaf9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7fc295cfd1a271c5ba33a29c2b3c854c106876ba0c2d5c1c46491946c9fdd15a
MD5 a353b828e52ca263c191ae6e3bf6f2ec
BLAKE2b-256 442275c3c9e9f3e9b09232810f829df0123f868da6a05bf5a6facf653f432338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e4476a3354ea2d8fef8c258eefb5138402846d2396319a313c248b2f33fd672
MD5 32cff9e30ff017ffba610e4f9074b675
BLAKE2b-256 f35ef51b1a598e0986ca7860548d46bd09db87ad8bf3bbb7a7c5050748a2c807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c6ab3431cf0946fb17a74411e9634112cfcd6577dd4cfdc2d3e7afdcf4bd96a
MD5 8f94818f3e283706edc68388f7dccd6e
BLAKE2b-256 f044fb7079a962353aa6a3ad1515cac024f1a3fecec43f87e4d6fca7207680fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3eabfc054f066f708389f657217b23b62d5f0b4e3055cb15943cc63981f617a3
MD5 f18cb995899c629418e65323281504a4
BLAKE2b-256 f9bfc53990fe7df0a27730fb36ef1d7b21067b8db28f91fbf34908897420a487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 65222b8beec48fa6a02607325642d6ab519e78c8ba4704e0b6ffe13be5758ce7
MD5 97ebec262baacf99541ccc9205e307ec
BLAKE2b-256 9ab9f4238f37fb7e620d3bc2b0cd889586421f7bdf27d6ac8a60ca3e22341864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b3db90c8f1e0e084f39337f3fb65e06c3a176a88274d13083d8c19cd49ef132d
MD5 14ce47352e26c5fb2914a5aee78630a2
BLAKE2b-256 0aac9de90b07c83c870d1543710af81152ab4e3a66ee6fae8efdaf6700da865c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ebc4e0c1ad04f1847698e767146408edd7b42389f792de61be2338ac2ae1cc0
MD5 ca9080eaea19a2309e1d21a5151916bb
BLAKE2b-256 6c7410bb433a9506f844067de5d17bb0c454711886716d71fe14532e6a8d6dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 adf6e4f3c73483cfff0a6abb3f29b93fb704ea48041c56ae86c826c7124a803e
MD5 9f30bb11feb5e99cc14b5f40e0a68698
BLAKE2b-256 05c13f3aa97dd24b72cb3aad5521050ea4876c0f7b4c836eaeee72d4946bf6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2418f34085b6b2c069b5d5fafd52c449b058ca9a0287e7ab12a53ceba9398bf
MD5 ccf749f9c8944093794d5281d59ad7c3
BLAKE2b-256 c5a081daa1f939de999f11e8e3716c62e3c13609c627d85803283313a92b36d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73637e573d693c450e85ad3c4c9b8d798290a92034619a9cac00bd239a397a24
MD5 cf9a9d9c66fcfcb36ced310f91cd5e92
BLAKE2b-256 c0cfc843c46e483c2a06550f2e6c5fee0b1441e738f374ce10ace8a29b3a4791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29a9888da175909a48816f6e4584565a4f47c7254356cfe064a20ea6c81552a3
MD5 6fb9fc72aaaf9f7dc01e84829dbab2eb
BLAKE2b-256 c0e8f751c48acc458d6e4e17e6658526b3a240ec13b9f37280200ef504b8c50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8ee001b2551f3da58b2019f56af1b8a1c70cfd225a78aac0a5967eb6f7ae3fb
MD5 602184c322b568de5d7f34ec68af6dab
BLAKE2b-256 0130458e6b6546ffd4030ff5ad531252f9fdae54abb1b3adfb384aaa9fe32b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efb95121e73103eac853a388d6179a2c486a50891713ea356e8f54abd2490442
MD5 6c8e8c11416cc070341bf871bac3c931
BLAKE2b-256 08ebb3a8e2187b9d79893c43fcdd11c8ed401d60c6a516a00390ffb41f417196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa628e6c4eb45c2044f35899969f8a9671d81834b5525c7763501cfaef6fced8
MD5 be31884080e15e49a68c1032838b5151
BLAKE2b-256 2f2f7c15229ee0d65ffa5816f05b381676a4c1cb5b2fcf4746e4494af14ce6f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c602ea156c7fc08486774f539b9dc909b018ba956d589c911bb104ff980290b
MD5 95972d47a3093cf07ab54baba6841f49
BLAKE2b-256 9ca097400ae6359984d93f9c19a8200651af67490cf5540184dabf599178bae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9240a81d908c24076141d88dde52820de51b92b521d933a8480fccb51330f52
MD5 1ccc9866afaadea248e305ee01be3e53
BLAKE2b-256 5e62a863614995d72191499c27971bfb1def93aaa6473607cc4ae919545edad4

See more details on using hashes here.

File details

Details for the file typhoon_rainflow-0.1.8-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4eaa0e143750d28052bf5bebdeca54c6c4fdc9f2ab7df4227343752878a0901
MD5 eca2d767d41c152e25ad5c4ec81f3e53
BLAKE2b-256 ca568218000bcdb88cb190e282536c9c85434e19ef55dc7ead2089ad87a0edda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e84415d91aa7cf7dcaf814b409ec70fbfb4af728bde2177303fb4e8a6634752d
MD5 8f4a81b8bed8faaff35546509cd88174
BLAKE2b-256 3447bf9eb484bc2162fcb8140600ee53ce4c9080adfb7bf4cdc9a1910a9b1d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a65e934cb484aa1a06c9c19147257edba85c1281a1f12ba7f9d88cbacbcf75e
MD5 e491a7cd2313f67ee096f2a0df548a54
BLAKE2b-256 cd1f42e1285e2533ea522c069b7a5c0c9973ccef55bf042f671f8c771f6b45b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a29ef739d7311a44291e1c0f31455860dd866953d04f84487a1ff1adc174f9b6
MD5 2270db59c60df9231d106500cc79a771
BLAKE2b-256 f4508e7ecaf0ec8f0afca0d129e1495a41d70929e5a097ca0bc9771cb18e49c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46b6958b712f0e4fc3d3f6c086f0c2852d1f25cff2104f43567d53779a179227
MD5 d1db8984383f6840671b771d52bb876d
BLAKE2b-256 281f2df8a268d75c1989afd80687459fcb23c4f9aa1ea61d9cfb14ef16851c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8acd2eed719a3fbc5370853ddec22a9ac9cf8b3bb9eb8b2346bb849650ce642
MD5 a7304124d62d968c59a5da8f06da15de
BLAKE2b-256 6af551dc50a60025ab447436a6baa07d972b7efdc2e54461403b7559113e5777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c25ee68b836658558d97d64aae7b5c1c7a5fa3a76110015a0fe6fc818b5218d
MD5 064a44e506cef478b15fdd0a118a8804
BLAKE2b-256 02eb0359da9c2aa40cfd9203336818cb8157e05b9f272335ef86ae8c2ab33901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f50a2437c6bae5b2f08b5fd51c0095c5595c2accbeea7f02448e9f928be44042
MD5 f0f2dcc005c93952e1969fd9f1b461f4
BLAKE2b-256 136a9c35fb7f55a936c04f48ee1f9b18c82bceeb18a55921840bd84c9a4684c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5095ec8b8922a8d21f30c99d9937a66cfe8bfbf6c5ccc071ea8631530bef8fe5
MD5 9ecae036c0400b8e6967d8f6e86a5355
BLAKE2b-256 0f5990d2a316ca244d29172d86b920a1f3f4a1e715667b90e4ec35ec9e176e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d83319837c5d249b1a76fcd1ed2a9d4e0db95b4d65a97f3b499ff7e39a785805
MD5 59394c4c673aaee2f7f2c1da12b128b8
BLAKE2b-256 ddd0cc67e496642c5eaf3bf16910939d59b48d02b93d11b924891e785e686b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be29ef11ed2515f98b88fd41586908a01957f708b5af9a644c7f7db6bdfca3de
MD5 5e12eefd99e4f63041a9341f43fc396d
BLAKE2b-256 d731998dbf07602a29698fa84f5d93dac2a681993b8af14c622be7829dcd00b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22d181523c5e5b1bfe180a3ab951410716c55dcd1091ff2b6af0a46904299f1a
MD5 b02db2266cff625de54306b766159f85
BLAKE2b-256 da7cbdca139777009eaf4dac27660959caa93c0292662aad91aff55667143b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91f68958fae910465f5c9fc8be9ba6624d7d2237717385ac9a788d30816470a4
MD5 0c8eb61927ef56d0fb29e19c0eb88e12
BLAKE2b-256 bb378ee651e5ab6149fa1df360df852c171c24f2f1046f71e2c217ff6fef96c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c030c9c933e1799f70d36dba5deaecbd8dfd9d689ed7098f2dd2118a1231e034
MD5 495b0f7c1b71439e0c66ffa23863aa9c
BLAKE2b-256 d099c156d39d7599b92dd81b0ca61a448cc0429ef040855f06c971080c561cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 255cf7e777b630744f2ceedf7ce517c628dbd806535dd530462e22744cb1dd43
MD5 ba520b2e200962fe8617ae13d4137c16
BLAKE2b-256 3d6d8214fbf2a3905a50534180191c56ba742d5d60d68e88a298a0c4ec0d2926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a255941ec7e0be8eb519a84fabc6136d53608012722b6ca9ba060b16f0128b0
MD5 77bb183d7b3fc05dd27521b0e9c49baa
BLAKE2b-256 236418d9056a0832703b921e3994f925fb149cfcadb967b890adfdc89e344389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ffa44c236e633c305024f37db7a01a235eee8ebe8cd032465d4cf26d144fd8c0
MD5 270192ea0b8d736cd7eda20742a80368
BLAKE2b-256 ce645be2fd8e36a89b6143c618a20633d321f487b04484c41dfb792c3e6f4a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c55f42bdf8d4ed877ea33aaa029f77511c1c592bdbc6e57f8c921528402d52c8
MD5 307ff14f46260ddbccdfc1cc643ed7bb
BLAKE2b-256 75e84df13a7bca4ac38b62df24e430bfb1ba21c37ca091db12db76aca86af933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2312b8f44ae003a64a787b586109be5f0a8544b5e4e7e167a4e295cadfafdbf0
MD5 94d042058afc4d9b46007626526f99f2
BLAKE2b-256 c0955fce666b954663a017645f95893ac669f875f5e460e2a1fbda118cf7279e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c16fafa9b12ab5aaa7fa17bfbf2296fc0886c1ad76ad426b1d68e841b1d5265
MD5 632da4222a1f3a35c6f3dcd500abb82d
BLAKE2b-256 5517be83df7a71d75695ed8b98ee96c98d40d6b727da0248683c0a08ab5b895e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef7df477bf7287036f156aeebc87b7b1c029b497ac4e8b47f4df4d6208870dcc
MD5 c8827edd38a728a99d9f218a1ddf8b20
BLAKE2b-256 042c083695f2c6c0844c2808a89f02a29a5c07e5a33904c2af798835c6ee914e

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