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.9.tar.gz (22.0 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.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (660.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl (695.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (762.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (667.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (523.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (661.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl (695.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (762.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (667.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (661.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl (695.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (762.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (667.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (628.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl (658.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_i686.whl (693.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_armv7l.whl (760.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl (665.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (620.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.1.9-cp314-cp314-win32.whl (278.4 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl (660.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_i686.whl (695.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl (762.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl (666.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (626.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (524.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (421.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl (432.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl (658.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl (693.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl (760.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl (665.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (482.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp313-cp313-win_amd64.whl (290.9 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl (660.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_i686.whl (693.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl (761.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl (666.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (522.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (493.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (421.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl (431.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.1.9-cp312-cp312-win_amd64.whl (290.8 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (659.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (694.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (761.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl (665.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (491.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (523.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (421.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (432.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.1.9-cp311-cp311-win_amd64.whl (290.8 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (659.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_i686.whl (695.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl (761.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (666.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (623.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (524.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (494.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (423.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (433.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.1.9-cp310-cp310-win_amd64.whl (290.7 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (660.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_i686.whl (695.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl (762.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (666.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (624.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (524.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (483.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp39-cp39-win_amd64.whl (291.0 kB view details)

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (660.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_i686.whl (696.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl (762.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl (666.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (625.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (525.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl (660.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_i686.whl (695.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl (762.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl (666.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (627.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (524.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (495.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (484.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.1.9.tar.gz
Algorithm Hash digest
SHA256 2862cec024d2a060d7cbe5f759c072f5953ec0328ba8e4812f603dec421fe93d
MD5 4bf452f81061dd1a9297c2f8fb59a89d
BLAKE2b-256 dfc7472e6c3df8b21fd1e7922de2e9c6481393ae7eda8a778ba97f52b101f5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d100b0d0e00e7a660d5ddd51dc39ac8e2db35ef39bc0a8e4caa5e1ac233a743a
MD5 61537ee3fad8700130d29d0633b9190d
BLAKE2b-256 3e0b71b0abd8891b0fef13381b01f941d97002b92ea8a199690f37713d59832c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3aed282b5ac6bf25a608a62ecb95bb3e809ee1d4cf1ad396a5a68171446702a7
MD5 742a9c7cc4969c077efeee00cd2ca122
BLAKE2b-256 d16bb83d7ebe74edb5362aec364e583dc0d9dbb0dbeeea37346a19949c2727ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db529a500838684bdc8fb85e642b976283654f4be75b960c977806545204ea85
MD5 a8629b4aaf8f3651ffb78beb58ae8f82
BLAKE2b-256 81befe9f9747898adb62cb98c86b92ebcacf7a0c9106ccd1035933ba54ca506b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f73535dbae22f1b786f12e9cc94526005bc466dd75d383beddde66ea53121e27
MD5 206f67255a843299d93069823ff5a2c0
BLAKE2b-256 fd4256a6fba5c47f5f72bcca60d5804f1ee71e17ab06b33c6169e4d390bda717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aa82c3d38322e928bde02e2ac75b2734c19fe51c770d09080a40849cd8a3e25
MD5 40b8a8562bbbda1e30df5e71a5696013
BLAKE2b-256 fd423d2f176f12890e9994d3e5a2fe3f37e8aaa38eae995437e43e916ffb962e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45a5e97565554db9e611311dc80f069a7b6f78cfc20cae8b21b9c381369e5654
MD5 92c8147830dfc9e95f8d548fdf8c9879
BLAKE2b-256 f8762786d3e45cdb0e413c0bd4af6b2049e1b361232bdd9c83e7d44b647c9d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce8a82b3842c94fa69bbad65f87bb1ac0d7a40ac2000d16b277b56cc33c7eb37
MD5 470ba0a8f86f994d882ca3f7971167d8
BLAKE2b-256 69f9bc8078fd6157085af4fcad590f4c1ed05e74493f1b8cce76765cc4df0496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8fb8fa8ccc1be79a3735594dcf710222f9d03f86025021b553dbe01e44a6062
MD5 e9ebfa0237d07443e71fffde84dcba1c
BLAKE2b-256 9d1bfa6c46ce19c6c8631d1340dea55a06bcedd6dcb412a63a6bda58ddcfcf8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42483d3e0b77465130454acd473b546bb5cd9cf28ff500e296f4d060ad0ed649
MD5 dfba0c80fd03d8a81d3a736b68b3687f
BLAKE2b-256 24bd4f45bdb0670f47dc6bbbbf0f27ed4073338f4503ca5d2ba635417e56b0e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3c5fdadc3839538c8f019f5056c985a164328d0f90d92faa17568b9fd87fab1
MD5 4fd805962ff180c1796399f601d849b7
BLAKE2b-256 d6387b18aa48eaa60f86cc65a757610c133abc8d0f98e7930cb12d876dcf6eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0718941a5065baf3dae53a5c97df72499d2325dd2b2958cdbc574a11849601e9
MD5 26983ab96d35fab31350311daca285b3
BLAKE2b-256 59bebd272b1fad42e944a4e1dcfa1f2b7c3930d35e10fd10b9372fb323c72eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f07481f5c36b003385c3a5abbd5efbabd79726eedac51ecb95b29be43c3dfeb
MD5 6eb63fc00eb20a42dbd7438ba5354d02
BLAKE2b-256 7a957737a119fd2f12072a8e00e3391ada801a9d834761e095ea2e6269f7933c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 55b6f8d5dbb02990718bca01b2f216d4a314965d3d77146b1b83bc1329f008c2
MD5 5b0dd0a2e7213eb0fb214ce0911651ff
BLAKE2b-256 2985de1da91239a3aac9db927e6f368e9d484e2a02a7173b862f08869715f7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 108d4f67d22d0b0974e793bfacb4026168aa67740f2e7503836782524fda44e0
MD5 44224738af1e5e9242318a270ce3578f
BLAKE2b-256 9bdc454854a77ed38f3d02b4bcd735346c6e645c4d6d1db0480f992d445ce95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1451c853f1fbcf68da2bdb3f1243b0e1a17fe88e82f45584e669d3392f6ae6b
MD5 09f90b92e1c032204edc498c8a321595
BLAKE2b-256 96c45bf6f7d65afae878f938a288686ab69b350f61a23f53f9ac5e0917a5b320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31587f6ffa580c2d7cfcda5ccd8f678398baf269ad81d436c64ff5ba660c491c
MD5 e467948ad7c7f2810b64b16f84df6670
BLAKE2b-256 90ee0d2a6d978d6f2a7b40b8f31404bdc33fc8da68028d33d18a19bcad23e2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c368d0cb9dd73871af3c102cd02d4cad4199c0fa144675cf58a382054cf6de7d
MD5 95a194da0ec7d24ca65ee515eed4b042
BLAKE2b-256 e7d57e66143c3d08c1fb0a200cffd16dc0e758574205a44c238c8cce3c22366c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3900556b8a92816b2b68cc7294f3921c82acd339c41b7766edad7edd677ee571
MD5 97ed5b928a443283cc88440d2d13e4b2
BLAKE2b-256 0d022e13bd2e7ab32f229f8d47a8d3eda57c7555d55cc74cbc13cf0994222b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaa4fd9d07a77435ec766feaeb52b43bf5d23fe3627c341fe01730c169ddf942
MD5 21b9e02cba31c1e7220253ad64c6ce7f
BLAKE2b-256 c559aef6abf7f2b5feb66f639ba68b0cb4566a061e2da823fc6420f8369bf096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8def6bc70dd91ac538ef8fc781dfbb99230cf9c96a6a8b91a774d147d15a50d6
MD5 de31b43f6c5d06224e2ce3f886404409
BLAKE2b-256 58c4ad14e72705464fdd4fb344774c421a3da7156cd4f3dc57434b452a2e56f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd88b3a00b830090b0157f708e8be49756650a856a42ca98517072fb2f136101
MD5 c41bf1b70ff0ba907218fdc6c8f30dea
BLAKE2b-256 4de00bb77e114939eefa0a2fe0d58af5cd29d2ac92018c9657e24e516853b2bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14359fac5aa5e1a2b75e030ca2ebc4ad36efb443580e2f245a2232f9bb8025c7
MD5 2d6b2007d3c6eed880bf122272f0e0b9
BLAKE2b-256 1f8abf94ad94de09e201423ed29de945c94baf78cfb4c69a8c61dac67737edce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50e98ac59b0ed105797b12f86d401068a968efdcc443c7276fa1eb63904243ac
MD5 77f42a87837df5a584deead452a87d70
BLAKE2b-256 6df46b05addd273d5f97de541ad12abd35daedf74803cd679cfd8e91d6e2d196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b703a3b9925f892a79ec114f71f9bc4a671b1823c2bc9ad064ab2aa4f26494e
MD5 851f7e1a024e38ce6c36c92d7290cc33
BLAKE2b-256 d32a472c1722ab6dbfbba32c51a26347f04f65cf3134debd54f1805f1e301c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a760f7f0476c089222f427747a63587a5e503b3b70597c25de3015dc19cf638
MD5 070cf9d627808bda23a73f87706070bd
BLAKE2b-256 5ad0c40d221b64134ccc38fd3e631240dd0739c08bad55215f6c1082ffbcf2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d6a3aa88624109ec969d69618af8c56737c18236b33ad074f1e6814b47370a6
MD5 f87d19eeb11b7d831e24dc6e9a1e26a7
BLAKE2b-256 92dbc34225727352f5f4834bf8da0425e9087ad98ada76651c895f99789ee5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed1d90819b8bfeaa58b1f181cf9f82aaa3f9638f1971c77b8c2ff99909024e55
MD5 f621e7a9d5a9d1e790d69742180d24aa
BLAKE2b-256 f3d50739bcf0a9ce712c87f150672a77282f49a2ca1e73cbafbd5005b922f8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eef4ec514e90aa40b4a596c9533991038855e34df87a35a8d0dfe235c4dbf195
MD5 2d4233247e464040084e5564772ba0f6
BLAKE2b-256 0fd379bc632dc4b26d6f81a458e3606e397fc664fd1d1ea728f1577a0bdd47df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4956cc54ec2e4ee72f6ed4447654c6aca99e26e915f52428e69485a78d92e51d
MD5 fb6ce5d5eac8c1029be6543313036127
BLAKE2b-256 20ce40ee82dec6ba15627489f2c5b76ae89f646a11075aeb99485cc827673036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 074c7f8ba5fb671455169b1a26622c5f9ccbbb0784c82e62b6d6a7212770eea1
MD5 97e20ab6ea1e5367373616042a578598
BLAKE2b-256 339eda92a60bcef786a821817ce45dd6acf14abe614bd33b5729f63027414174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b3615e66fd107b7c81309dbdd59f31f486c9e929df2ba713bbc9d05241f477c
MD5 396d35cf75ce0b7080550ee070f6ee61
BLAKE2b-256 f0977c507c53c98b3dbd6d0614de325143fdd1daeb8f09c560acdff4308a3918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ea2216f8570f21566e2a0d4e61c82ed964b8231b4fc7a1205ff148598942048
MD5 d88169051b469b6aa56c07eef98d5861
BLAKE2b-256 263ad8531249c7f5c44ae5faeab6ea4a2f0770a1cb7593ec775a6ee0222d8ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60ff575824afbf03ee4d856fc1215408675e33bd5370013e532d1c28735c4bd4
MD5 668e57290b88f53f33421d8893b0635a
BLAKE2b-256 b654886eb1f3413f19424d844a588505a33a7bd58ddf88c5f818e5d12f43aef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbba828c5d072de3043ea61eececae8968121f5ce369c0e49b2196076a72233e
MD5 5cc6fb802148718c08b68a113ef96001
BLAKE2b-256 96cbe7b15c36abffd3ea8976eeac26d641aa40e6f952f53b7ca2599e47f519f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 22dcb3cba870f5e7078adcbf63ab05ebecbe9a1679b725caa477c134a7e48cb4
MD5 3c93dcbe5375df32dda42f8a99061720
BLAKE2b-256 65d8ff39661832de64578f9a55d5ac6334c714ab0cd956cf4b443b44d72f3251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aa79cc6691531510a91fffef2edd842f907a038bc0a69b7d270e5711396e15e2
MD5 397aa285431dbf3d58fbb2946c502dcc
BLAKE2b-256 ab1aca25dc5da1f063f6509c7785ef5a3b40168ab7fd37037957815dc9993357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9038a9df32a847e1495aa99e48d5d2070a82f309ff039084c3ac045067398fc
MD5 cb015fd3e3088a38ccff6083affc3680
BLAKE2b-256 d59df990b35bc4097c2c1224db4f3cf35f7dcfc301b3d27454f1933480e3cdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13bf11d5af2f04b98fafeb58de2730f7b37ed8acc5e0f6099c48d6f4122ac446
MD5 6dc1ca81fadbcb3826642656d59234e4
BLAKE2b-256 cd0f475b2efc90cb6b6d8e91014090d9fb292a54d2dc0a747e6bbcb696fa02f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9411d6a29bb7aa62abfd2414bc6145cb1eaa3e9079f94e7b5dac9c8a2e9def7f
MD5 18da760c8dd8d3c7ce90ad96ad763a08
BLAKE2b-256 a1b0a05cf20a9ac568a4b6e7ef1f3d9191583facb0ac65f0d2d594a53f1dab27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9659cd2495dcab2686e8a012963de9a5435cd292c99f74f1d3f19724669c174
MD5 ad514a9f1b1803c7dd68c0381471d5c1
BLAKE2b-256 9726c23ff2913a2db2c4311542fbab7a840638e25f2d8448dc2ece120897a83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdab5010c06bc214ab968cadd4a263243ee6b41c708cc5fb09acb06f737b1198
MD5 54aefa2911d7f040e75adc961a11dfd2
BLAKE2b-256 53d5428f8425137d76eb2f8a8381029e6006c533779d0d099233bf011f6ba50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f91a79fca9cd9a08ca7c8edb7ec5629f0e263ae5ccc190aec27d92419f85b7f7
MD5 2b2854653e9f28a802583415c690c5f8
BLAKE2b-256 700d37e8aefa0fd1e9df5717d76406991977854f7566f266712fc7cb0a23c584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb15f345fc00a2670a5d4d205f25226c5b68aa22b045ae0593ef6ecb32a23fa5
MD5 dccc4899a63bd5bae0cf19f7e7cb04fe
BLAKE2b-256 515b83882aa13f978ed29177fb8daac057907622a74336d1196bb252b3debdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0dc0c44a172299053d7875e1603ab701947ade9192206c05a81cfb87be4f8307
MD5 cfa9744595777a10d9a9f99a4c18a595
BLAKE2b-256 69d024faf621826a9a9a5842db6b2b08891980f91e7d88ecfa414acedc018c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 708c0e8b0ebb380d3ec9e49d9d240aac29d55cafb822f855545e3d237e0dd3cf
MD5 470aef8504ef23be1c33d34f209ae206
BLAKE2b-256 b968d66b0d868a27aad5730f7ca040937ac926c6f19706b11306b890507bbe6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96337fa1671e68b3b0590961a4990adc25d213b53d9d58bb03c3ae79e64a5150
MD5 0d2b66590b8c62ef464ee8374a75b7f4
BLAKE2b-256 3e7e3c3be877085ee882584ad3e89fa28ea28f9ca7bc463ffc57eb40c4e3452b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed40ea7ba93375065b129e9288ad4c679ee9e6eef751d1e8e632d77d0b213dcb
MD5 6eb55c4de09d2f5bdb7d1ae13beb0162
BLAKE2b-256 1a151ad9af1f17bf40db0a5c11691a0936a8ae0d997a0068710885175fa66efb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54ff0198a882719f0f27df550de7fd660d57fee6ef3e6c8c17f8ce4ae101592b
MD5 a272b43f1b1efff92d6b692f883d223a
BLAKE2b-256 c8da826cf641bfb05714d9f94501232c0c91ebe4b2f5797642d577a9e304a48a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a7c218240f9d407d54c814a9693a59ac0de332ee9fd71f0a141f35841fe576a
MD5 5d1ec00329c679283d007936ecda7dae
BLAKE2b-256 9ef76a51904884f5c22483658d3a2678c5209da7f555b75461eba3072bc42e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcf4fa9ba99ae7ce1fd5187a43878d21f090095bd47e3c0028f078b9f429e0ff
MD5 3d38c48cdbc1bbf44c6da58ba36ebe6a
BLAKE2b-256 25503b83e7b90c75ea21a7b19c22474bdc36a9df6ba3ce67c7eee6843b6a6c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b955767e4f8de69d223f08ef130c177e100ea11a10c68d8b21abbb2b9f24f1d
MD5 cdd53a6d5ef7325bc70d6df5e24330df
BLAKE2b-256 080ccb8410e9ec22d1db20d4430611d94aaf85b227f801d99243ff8613935f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7757ac51f21c883681333ff2881cd06efebd27eb285bc443318be85b47f18a06
MD5 a706413cde8ddd613ce0e95aec24e766
BLAKE2b-256 bf7f00e919b9d4260e922041f6b1a273a35874dc030ac9b6e224090bfa617dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2a62078d753740e42080a813289587e23ef1fab8eae79d28f6573ca10b0e6fb
MD5 13070975b4af58d0561ec205d4c716e1
BLAKE2b-256 6ae2dcacf963f71efc9ebb791d7d7d2cddbc31a7283ae239b3b4b001c3262acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3c1f0e1f661ca0ea2cee9538c11cfcc0c59bdb55e691c3d80e4e387c89c71f6
MD5 57ebb638d8486ddf3551231ea5c9b5b8
BLAKE2b-256 3142993514c5e8647d07aa038eed3c1da27507c62c1aa566461910ec036ca0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c19f7b3a054675e26fd7bbde2f31795ed8a5da54d1b9deedcbbd88a36f59f38e
MD5 9ec0d1172d92f9d02fe5e7451ff13755
BLAKE2b-256 ac89cf578d1b1e21bb679eeb2935a1818388d51348dfe576fa299fde4a256d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a3872b8f9bc770919cf0a6cc29c07e3bad3fd777f91afc2682d285feb1b7fde
MD5 663a85cfab04f8205f9e1d646fbe9ec4
BLAKE2b-256 0d9185b750ba99a4b4417bb8ee5727a0053e6400f31a4b2816bf995f70c51e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ce9a659c8bf473842127422027854ee3b144e2271cc167dedb97d1b4f1e42f54
MD5 f6805977cd7db8d0738c33bb44a85e65
BLAKE2b-256 f7660b16b46f9bc8734d2cab8e53793d87719e78555e71a7f6077b80fe7e7049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e01a96c43dd133106654db4a010d69e1c1bb1755985bd92e22eff26a65ad0c0a
MD5 6a8614876927ba834be47e7650a19999
BLAKE2b-256 ff0d6cfbee490cf7dc3bf4beda7c66ffdb6945b40d37a2005776d6e194d78ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31cbcb96bdfee9834d0714bf5cf54865be5e23e674040d44c21c2f3158660beb
MD5 8271638b7fb48f967c2264b0a0abc3c5
BLAKE2b-256 50606a156a5d5d04d066ca079b5c99eb056149fb4f266121c5c3a13468c49714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 743403d23198a96a687f0b81b9a8156a411dca1aaa4bfdc0ae884cc6a2a1d1a4
MD5 a1fa22e27795bf71d005ecd60db1d7a5
BLAKE2b-256 319873b875563ac4d82b0476050d70bdc4602da5bc6e887324414768512f1704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d7941309a341505ea9d93616c35a61c8819cddce4256fe57f13b525c59755d6
MD5 268e034b9dd71c671c9ca6efb33f7a56
BLAKE2b-256 615e879d93500d6209dbb256c69fa232ffd7bbce0c4327deca9da965db73864d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79a9ea4da9d98dad7b23e292f752cab1a69c62672d4f9ec49300634cd090589c
MD5 9877f499e7900abbf374bea5d78dcabb
BLAKE2b-256 1474ed40c697e904f65b77c06baeea54b74476ddeb3aee73fd1b8968a98bd5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60c9bc1f06c722fbe6bb15b936a82d1398eda2281a16c1ea93f11767bde21879
MD5 00b6f73d500ccc41623beb998e246294
BLAKE2b-256 bcdd4127a64b00fd321e949ab6037463034aeacf30983934c291dbec22207968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac07865811ab5bb82f2fd0c3872d27798d1152b7de57f040db6e954377457b30
MD5 4399fdf05686ddd0911a4fd77be94dc4
BLAKE2b-256 cdc206cd93ca34b21b1592bf66f5f51b16ee9828a123c17df60f134cc07d0fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97b800b2eb9c1b85e7375c8b0ee723c5ff42c2c68f6f57751e31ea13173d5af0
MD5 d8624a3eb1e5a97e7f82ae81534152b3
BLAKE2b-256 797e46a5910bf73bbf3e59542ac68b14078a5e459c850b01621f63f14d711965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71c6d531401a2ca3b8eec0d036ab8a24a01b9eaa7bf9b7ce6238d06ee21b6879
MD5 adcae65145e9be8d68bf584f5ecf2f09
BLAKE2b-256 fb204da898aa66548dc7d4368bfd26506e3e38b601e2d8233c9f2e323c1abdeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a4f1a223c5fc465ff7859066cb619210b57a60f62e26d723660845436b73c2f
MD5 5a821f0587db7c5082ceab07683c61a1
BLAKE2b-256 606676553d7425c9727dc281341d0123a2ca17e8fa6985b36135c1ce49de21e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f71a5dfb7745127c759e1af420ffa2867122076a953e09b434c1c0729ce80e9
MD5 1250a74608cd02129113d94ab6daf91d
BLAKE2b-256 671c91e424df3d5583d9d161e74497920d7b86668ca693db0129b8cfbf0a48ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ab06b1490569994d7439461ff59df1feceadfa2df64a1991a81d6b08cf9cf80
MD5 240955e6dd6899020ca75959d05d9541
BLAKE2b-256 cfb67c38e88cf11d4b45a3b1fa3af64845e580566c7228cbe8ba83da022c0a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef17d7dde658313559c65aafe45679c8e3ae28d6e81767e331f8b2ea80c7f9c0
MD5 f024659b00f841f153cce0dcafb93157
BLAKE2b-256 7c13c45dbac6c9e7e79df7e2f5d6897ddaa18a3ce78d3723fa939a60045c3479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a83fc2b8918d2ac3f1530adf00117c6c36ba56c67eacd8b81aa0e74ff57ea60
MD5 ad66604a946d4f299338c1c10b1ff675
BLAKE2b-256 13f61cd7152bac064feac8958842bd990901b321e6267c6313857a5f042891bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06e8762dcba8b2f481bbfb38025cd374390c2b25a8fd40576cabe71e3e459b27
MD5 dc4793944c8a0ee0ba5102018ce29321
BLAKE2b-256 c4a1befe3bd5acc15a811d15e53ef7886750cfcd0b5427d8c6342cb08490fc81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fa54c84e04f1e0d8dc95426b59e93f8b26564dcd661b2eb2daaf5b22042e0697
MD5 ef41170bf243ce89f536811c78f4faf6
BLAKE2b-256 9fef7170e6be9ed94ad77a1b8d9d398604d0f21555b7f31886f671cc770167cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2416ec014dc6dea72cb540867b6857481ab4256771a98de3080f2337b819bb74
MD5 0808592f1f83752bb617c865a7fcb116
BLAKE2b-256 bd5e289acf47d6cb0dfb6199f50259ba0d6738c6ecafae280ff6d8b5b2380339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8965d5b471c4d1deaff03a07a8c2a5760779b9912783c0e895a54b5b378ada20
MD5 a31f89dca40e9d3684fd0c3bb8e7dc71
BLAKE2b-256 cbcd6bb9eb844580be129f9f43886ef8f0cf67b982288d4fb360780efd812ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a71584f526f919fa4408d00724d3ed29182a4d2a3fcae2264b654d409ccf008
MD5 fa36a29db573cbd9fafa269f84c8a5ff
BLAKE2b-256 2538dbec1af4bf9e1c1fb7974961bfd019896247f0b74d5c7ebf80893e53b98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24205a1371a75b62677d0e0fba7cadf2a66360264f21b98dff1d4555498e2c5b
MD5 820a094da05ad555130db01336b642cb
BLAKE2b-256 7165c8003c400da342c8732088309f7d0bf34eb7f5881ebb29418fe1910ad1b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 290a670a6f6071ee844402cbe3751f71e59b935295534bb336ace4ffb7a5451c
MD5 baaae44909abfaa4db9d16cb6820a1b2
BLAKE2b-256 9cf8982e401936c4b155edeba86395312e010e28cadfc462bdf4fa54a061f26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3463fa5a37f1c79ba0425de9ae604a0cc4d32f39698ac763557294a172715d4b
MD5 4fc0b5dc4dbf78b10abc6b79c07c7409
BLAKE2b-256 3ec88345acbd126342d456c0b338043abbb7db44743a1d2741cb3a0246282d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80f1a8b6bf13bafb434930fa4a0e366d37ab9c996234afcc3af12f091ecff2cf
MD5 61fbef37be7923d95dba511149df3b7f
BLAKE2b-256 b2c48e9656e4df2a9ee3c45f82fbf840b42f0456c9bec1e89c5fc6e60e720d19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d6e999289b3928a93b15011c1126e5b3a0cc2c277e967237939b6346c69cc3
MD5 edf2721fed280d2286d487b5a5d3d46a
BLAKE2b-256 d4483b7d3b17de044160eda940dcc40d508660307719ac6c4e7e59b07dcaea1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f11841499f12bdc2b2b2799174bf9698e49ffa0deae4894eb936d937e0a57169
MD5 bcd6e68eb879f06c528e5bf56aab55ff
BLAKE2b-256 96859cd2b59dc58d9f2e7d144f47ad9cdecbf3acda4557e89ae6b6f78974b45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3680747d5ef2614e87f13cccdb404c6c5af64c57164ec7efcdb34804ba1b7976
MD5 0feba9b67db8690301a7b921f222ab20
BLAKE2b-256 babe262fcbd836af9047c80c7ca7561e43d6f4ae5acfaafa2043af821d134719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e0f49ae18ca5c7fface9f8651f375a82c710b897be9dffff3d6d58b14f1c98a
MD5 bf1054e26e8605d8edc680ff496312ef
BLAKE2b-256 13a2eb1cb7839e2c62079e9e9779d5ceb87f91a3081c2281258f947b10c68f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaff24c7da4d4927d23495b05a40047b3318863662c04cc200b3790ed738bcf6
MD5 36a1c9fb8d7d958b42c0e60905f43f77
BLAKE2b-256 b59808eb891c766a377f64811099f989ec38e8956f1b25d717c940f3474734a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5eb579f3f7a9adb92e522daf36941863e22023da826fc4ad82fb179eccbc7d32
MD5 113bf8c9618f05af238ca1cbddb47e22
BLAKE2b-256 59a80c32c011f9db90d38e4e168673a027e949c1d7e9e2d4b9b96913191717de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd1d880c7eb0c0471f0ef466c3b274728c550b08ca5e97b56e50b2c445c6813a
MD5 99b60b7e065fd48597274f27ab44c99d
BLAKE2b-256 8850f4ce2bc76803757d0f37b74953d36695951965f1323cef263bffda0a280e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09cc5322229765db74760d8e19bb87b3930ba1c00d597c4ec523af051fdf1431
MD5 b4741ce746f8a2f81de5ebf3727dad00
BLAKE2b-256 c35eb32c71ab4197f3cf5e994c421736345781d3af239c3153182ff6856b17b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 162a734c48cc20929a6ed0a812ec41603da40c17897abeda615c1ba7eb4b5d72
MD5 c78ff1d29ef53a888c9d06ac327e2ded
BLAKE2b-256 f857268a7274a4af954afa400f999c812dbc1ba9698bd69c6bfc3978e047bd7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 425163475134ba3898cfe7a73d6a7446f264f195f35429b01462abc57d3426b2
MD5 96dc2ec75254825a3090ce6f6a461f83
BLAKE2b-256 25b53b79fa689ad9cbbfd1504d0935e11a15939eec2f518ee2b0d05d8228c868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ced1b2d6b62986f1dce62e04d29a91aec87c87173f56f4eca954994ec84bd0b
MD5 1b487caae06053d658f8c7750ea40a9a
BLAKE2b-256 e4bda62abd483d43e097777c543bdd9e1a615f26723b501971f4617979169da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5dad1c479faf4203b6f5b50b2fb001ad5867ac478e221777b354137981c3272b
MD5 8f3c03089994f9d41cf659004046d861
BLAKE2b-256 e575510045ba7214ac3bae471645fa1b1a4e9d80313af18653a6f860f61dea51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5073006e155751e5b80cec8237ed24762c815d20c712ce2138391adfd1c15a05
MD5 1f95c1b2a0ecf24bc03e9ff7bac59da8
BLAKE2b-256 e7acfa25d8463f0f6c14a1e17c42c1ece09416066a317c565cd7f94a703bda1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f154dd2eee300ce09ae954a680b5bfe4fb68d8c1ed8b97bb63b39f79f54e0509
MD5 d3d7ed8d4a07463b8b01a10b851250f7
BLAKE2b-256 40a0136e09dcff0599c8ef26eeefa77b6dc2f7e09ea4dc996ecb452d79b1dbb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bd38b0928305cf719c452f7306a68efb9afc082d422c51222fc9a678c6b07f5
MD5 4379343e82923ae8d20fe7edf0f65ae7
BLAKE2b-256 9cd2e7ea10106676f9f2607966314a6bd15fefac1c540e5507cd782ff33f4ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 398e1ca15aa5472ad52d73563ccca9e62f8f46e30639f3a0585c9599631e241a
MD5 5820abe2ce9dae78b463ca4d8f68c444
BLAKE2b-256 a59ce6e313d60b94fe26063799f2d11377d49678b249ac0cd4de30c3ce65b1d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17eaedbcd97bfbf9e265db79049f69fc7ecc22a88225b2c7ecdebe676c42b784
MD5 39f110804037c381be02bfd8fd0a2fad
BLAKE2b-256 3d45aad8e5aa1655c9c2574c64bbc182753700f78142e6c20e0014772660da73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 907dd815ba123828f940e157461e7389a76c055e3b293acc6f5abf9f1fea179a
MD5 4a3040f559988c462394785dc90ba73e
BLAKE2b-256 142219c929a9922a0fb8997663f84f77b0daae03446d48887f2f42b0e737333f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 261b14bb0c5bcba6787f35eef2daf66f589dd4993ecd6a0ee689566c84dfd734
MD5 b535eefaa480bed800711913902bfe1c
BLAKE2b-256 3402a6506eab5837216d729fd5f51429066fd648e916cd4ca09235ba870bb858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ce749878919aa7875d924bae276d786f785125ca4f5da5c9c12f3b0427cb5e5
MD5 8a5f9e62499d0681473726d9e8a81651
BLAKE2b-256 f93b2100e2e3eb53bd3efaab2cc8e9906e31175a4d4232b2b5cc8a0c118fc6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b7ffdc23fa6c746d82dc7c5ce324c4c1dcff055d4a34e77d3c864fe704168fb
MD5 521c8e6f4a4c8bfcff6c8bbfbfeea3d2
BLAKE2b-256 da9cf93c750a511b9fe7def1af440c48051d9024b8b0f5873074abeb88f56a19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b6956c33129b78f2c2543e48560f2ef130b73a50cf16f00443aebd5c4345373
MD5 c71b29993c5e1757229ecd56fc2e7c6f
BLAKE2b-256 72e55d192c42c32d361592020fbb8775b7bf95a65f4cd9e6e5b8156c2f2aad41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 880bb79e67fd4208b2613e7b01c052d8a270ee54342b31a7e67d578f8080d804
MD5 97532be9c613d0f5af75b6e5feb6381c
BLAKE2b-256 1f256df9cd6dcf0476411f78f965ef54cc6f9a6aa127f5f08b7069e527765add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b64891d84b031e364eb876e1732f67e18213734b4d45815158e3fe522c892cc
MD5 39f55b7c878be569bcdb54fbf47d0e88
BLAKE2b-256 ed0d0f2e144be069bf3973f3dd5ed692031f6ccdfe3cc3bc79b4dde2fc74abb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 79bd809eebcebb1255b084eb35617c85a381c7b3cab43744194daa2ea4ba8faa
MD5 45afe8c56cc12b2fc4519b152715f256
BLAKE2b-256 57386f6c4c264b6ae4b4b8177cd6eb1df90d263745836d6a391bcc6e4b191c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f37445920900a391a9d2d3a7613b1c79fbbff99d854ca904dfb54d811390954a
MD5 97d56da7310ee5fb6da8bbc3079c986d
BLAKE2b-256 36f6473ad89e758e50192643a5e25ce5a934a9df3d2d668bfc0340b6ddb1b3fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5ca5e92827fd134c6d596bc7c646b338a111fb38496487a252357235e1382246
MD5 0f1eb2addce047aff1041c1074432752
BLAKE2b-256 6ee81df07d54aae94f8d0260e8d219c8bafa57aadff3068c634aafea3e3ea174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aef7e3aa8eed1edac3b51267ecf687882108a1221751f9a0844de844230ec2de
MD5 1d3d99cea950c967672b9285fb076d8b
BLAKE2b-256 457e522df2a8cb56345c90ad3eb44f325ca5cca58558aa3c93b176b57e3b3c28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33d6f1bfa833ac3e93ac311716b404f71f4e3b71650911631c61ca19c201cacd
MD5 efa9c4c67c7a43d8bceda7b0ff94e77b
BLAKE2b-256 4556f8c4064e8f1fe8832331225fe66eeaf1858861c4ad4aea00a42cc1f79899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05f1b3f205301c73bffef2d80a7336bc55c24122eff0bc243f2db6b296afe6a8
MD5 e906e20b1e150bf7da688af16f947d90
BLAKE2b-256 708a374bb0ef009185a05efcf86745a90c39a13c4530e4a858196fab728e4e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dac72386c17a6e33dfd732781f242f4dbfc08fe76b1c5547c8a23a511ac39a6d
MD5 c790e08b8296824c8b2293d918cef6aa
BLAKE2b-256 c54e579ca1a2fc84a75d843fd96a70fe9e0bf7f54c74572b0babd5cb80414ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7476ba0623087ba75849811b8e206d20d99f824bf848def9e60965be379232ec
MD5 2742998c4f0bc16c95f71118442d912e
BLAKE2b-256 474fac4c1a4905405ab9a85fe7db880c37cd97c97c695d726ee640c56c599049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 913e13064b9fc5b7ded96bcdb53c2c7d93dd1a11bd29b935d75e88097eb52924
MD5 cf750de0d9ff51a3e7b65c845ce36d23
BLAKE2b-256 d30366cd709538c67275133897dfb891dc13550761c2f91b36d2a71bfe4bd3cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdb27260095ec4d75d602a73bbcd112af42bd534b28ea916b5e0704bc8c4eaad
MD5 b7a6c2be4c111bad379e4a9c6c6b48f0
BLAKE2b-256 08702876b1f4b6f7963fc0e1b166b7f528a3c5d98e5d9c40e2cf18c779db3b5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 223ad2e023f24a357b84572081514bcbab68da3cf9d62698cafe944073c6164c
MD5 7e44f68457403fc6978b761edd226e77
BLAKE2b-256 5d216e1e45e740201a0ea1a08b90135f6a2da24f61e5067286177b5acafce411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ace93c6b4e33b9cd0a4b16ab2ba0ab9d0925ead46f2ec83301245ec6c19346cc
MD5 3c4f977fcf721e0e46a95045c14dee12
BLAKE2b-256 7db2fff326a9bfb2d297bedddbd1669f68caf2e8fe66987367d95d975264c6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f2d78d97c5bbb8cb9490a8df207027d05725c71ada5bac76b4ea016e86c4b69
MD5 c44ca0c003ff1a9b3c1eee247bc8b06e
BLAKE2b-256 d8a601495a6d63099ed6a297775dda33c9507ede8f7024c8ca16fc39e510b1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebc7aca5f5f071afc0b8131833efdb75aa7286bff50deeb67555d13f65f8d2c1
MD5 4630b55df7a445cbdb207ae315b10c35
BLAKE2b-256 95e2dbfca883968647530c62a54334b769552be67b1b0351a8b2ee405e83eb55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95781d5625431a6377049f0be69db7972fc2a0ba067ca3282c76796e76fe5a2c
MD5 464aa78af681d8083ed3da4e60fc62b7
BLAKE2b-256 fd1c8f48a4164cb82f89a9809090b9ba87dcf127e07c43a7ca2835cdeb24ea15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e7269656df71acf42a6a948799d7106fe2ab52bdb7e007999597cb358b73e76
MD5 5d3fa6c1e7a68ea616928a6fb04dbd42
BLAKE2b-256 6fa8dc9d8a5d60c78b92ddba92e84cb188e7e8a75fe35e4982028f97301e5d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 667f941715399cf5edf172e5cf29747fbcc39e31147d7646f15d123479071b63
MD5 c3ecf9376859029fe188569d2d48e0f3
BLAKE2b-256 83f2ffe45bf02e4b5a3667aefa8bd9c15b21f90f17c8f56b872aef3bc0a633cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7c8d7ec9ab5a8e3436fc0883830e41f0cb5917578ca1493e05b71ce9a309de2
MD5 f18525a5ad30ed60fa0fda6393625fc1
BLAKE2b-256 b0e4b6eaeb639ee3606aa421b75a718cff47c4a6bd3c7ed0d158936665eb1c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed8eb3c723965d426ffbdb1ff58587727ccfa17800cb06563308ecd45db13d7b
MD5 962aa892de7a9bf3b3d71e7822304000
BLAKE2b-256 4b4aacfe38470fcb4ed28ad1177a738b95c3e636271c61bf78bffc6c7484b428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6991676579b90408e0c0329d6bb7b0728854827515d5f19ce1cc1d0dc336cb4b
MD5 e8defb4930771321c29c01973f903081
BLAKE2b-256 7587ab3043b47292388b072df521569d4a7e154d319de0b6c877386b3c59d878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c255308968b80cfa97dd917d90298c4f97f7b95a8b037ff06eaeec2fa48187e
MD5 d4557035c5dac973f9421de10fb41ecf
BLAKE2b-256 52420b6aab88ce0f05b224a74b6b2de71887909a4071e44c144775fb9a947d1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2f2937af2f79ccb9ffd691fb33c29c5cfbcc21cfca01db949d04b3e547eab86
MD5 d9981cab126d7a96350a090302d736c3
BLAKE2b-256 e35b701adc49720dd0860a8cd9f6d4fa46bbc6f973282c1c38582e44f99bfe03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7492ad3355dbf8acc07e3c3882832185e4e1ae87e64600c996f40af452fe3367
MD5 f55b8514ea8123919c9285fe722fceb2
BLAKE2b-256 bba164c95c6ca57378f4dee6be2d590d9d9e3392cdb2c579373b17f3efa58dab

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