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.

Stateful streaming (RainflowContext)

If you process signals chunk-by-chunk, repeatedly calling rainflow() and merging dicts/Counters can become a bottleneck.

RainflowContext keeps the accumulated cycle map and the residual last_peaks inside the Rust extension, so each new chunk only updates the existing state.

Key methods:

  • process(waveform): update the internal state from one waveform chunk.
  • to_counter(): export the accumulated cycles as a Python collections.Counter.
  • to_heatmap(include_half_cycles=False): export a dense 2D NumPy array for plotting (and the corresponding bin centers).
    • When include_half_cycles=True, the current residual last_peaks are treated as half-cycles (each adjacent peak-pair contributes 0.5).
  • goodman_transform(m, m2=None, include_half_cycles=False): Goodman transform directly on the internal state.
    • When include_half_cycles=True, the current residual last_peaks are treated as half-cycles (each adjacent peak-pair contributes 0.5).
  • summed_histogram(m, m2=None, include_half_cycles=False): convenience wrapper that returns the descending cumulative histogram (same format as typhoon.summed_histogram).

Example:

import numpy as np
import typhoon

ctx = typhoon.RainflowContext(bin_size=1.0, threshold=0.0)

for chunk in chunks:  # iterable of 1D numpy arrays
    ctx.process(chunk)

# Export accumulated cycles
cycles = ctx.to_counter()

# Goodman transform (optionally including the current residual half-cycles)
hist = ctx.goodman_transform(m=0.3, include_half_cycles=True)

# Summed histogram directly from the context
summed = ctx.summed_histogram(m=0.3, include_half_cycles=True)

# Heatmap export for matplotlib (optionally include residual half-cycles)
heatmap, bins = ctx.to_heatmap(include_half_cycles=True)

# Example plotting
# import matplotlib.pyplot as plt
# plt.imshow(heatmap, origin="lower")
# plt.xticks(range(len(bins)), bins, rotation=90)
# plt.yticks(range(len(bins)), bins)
# plt.xlabel("to")
# plt.ylabel("from")
# plt.colorbar(label="count")
# plt.tight_layout()
# plt.show()

Helper utilities (typhoon.helper)

The helper module provides convenience tools for post-processing and analysis.

  • merge_cycle_counters(counters)

    • Merge multiple dict/Counter objects of the form {(from, to): count}.
    • Useful when combining rainflow results from multiple chunks or channels.
  • add_residual_half_cycles(counter, residual_peaks)

    • Convert the trailing residual_peaks from rainflow into half-cycles and add them to an existing counter.
    • Each adjacent pair of peaks (p_i, p_{i+1}) contributes 0.5 to the corresponding cycle key.
  • counter_to_full_interval_df(counter, bin_size=0.1, closed="right", round_decimals=12)

    • Convert a sparse (from, to): count mapping into a dense 2D pandas.DataFrame over all intervals.
    • Returns a DataFrame with a (from, to) MultiIndex of pd.Interval and a single "value" column.

Woehler curves (typhoon.woehler)

The typhoon.woehler module provides helpers for evaluating S–N (Woehler) curves.

Key entry points are:

  • WoehlerCurveParams(sd, nd, k1, k2=None, ts=None, tn=None) - Container for the curve parameters: - sd: fatigue strength at nd cycles for the reference failure probability. - nd: reference number of cycles (e.g. 1e6). - k1: slope in the finite-life region. - k2: optional slope in the endurance region; derived from the Miner rule if omitted. - ts / tn: optional scattering parameters controlling probability transforms of sd and nd.
  • 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.2.1.tar.gz (25.9 kB view details)

Uploaded Source

Built Distributions

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

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (710.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (751.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (779.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (674.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (655.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (544.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (710.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (751.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (779.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (674.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (510.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (710.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (751.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (780.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (674.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (532.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (655.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (499.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (712.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl (748.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (777.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (671.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (649.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (508.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314-win_amd64.whl (316.0 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.2.1-cp314-cp314-win32.whl (298.7 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_i686.whl (749.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (778.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (672.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (652.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (542.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (510.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (496.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (439.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl (747.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (776.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl (671.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (649.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (507.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp313-cp313-win_amd64.whl (314.3 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (711.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_i686.whl (749.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (778.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (672.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (650.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (542.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (440.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (449.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.2.1-cp312-cp312-win_amd64.whl (314.6 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (712.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (749.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (777.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (672.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (542.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (496.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (440.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (449.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.2.1-cp311-cp311-win_amd64.whl (314.9 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (709.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (749.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (776.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (672.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (542.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (508.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (444.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (454.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.2.1-cp310-cp310-win_amd64.whl (314.1 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (709.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (748.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (777.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (671.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (542.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (710.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (749.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (778.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (672.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (543.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (510.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (496.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (709.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (749.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (778.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (672.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (653.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (542.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (496.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.2.1.tar.gz
Algorithm Hash digest
SHA256 2d2ee929d2eda119c79303ba2ece5b61e61df835ca48f67773a1fa77296d9c2a
MD5 19dd2fa702a70be58412b0404f9f30ea
BLAKE2b-256 2ca339dcfe2beb6a9c1c8b5ed5e06fbc7accc64dc35516a0bb94bbf68bda0895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3af0115d1cf52d5ddafebb43cede4b369102fad70dcb2d97e591deb802ea2d7f
MD5 499ae8cb1c4c98d1f14eda971d3ae235
BLAKE2b-256 ee84f3d8758a51dcd52384b8ecfb09fc6ffaf55bf1c2a239f16dbb99ad6fd178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d7a35cc9c5f52d68a7f58f1edc17276fea1e1ab236559caba7b766d96efe77d
MD5 811956db799a0c5e39060ff857ebc710
BLAKE2b-256 705e6f3d76816412b2938a9fcb27f4d7de090315fbd640727356c34a5e2cb184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a38ae19fbd856d835552243568799c0d6d3989ef9d3045d580eb34909551437
MD5 0e69a2eff53eab66181013d6c0892b20
BLAKE2b-256 3467759e762295f5663c67d1da8c26522a077487668b332d34c4569dd1329dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3fc04e41d53d8b5069e4a4ccaf7feaa36dd78151bef26cb58dc381bf86463aa
MD5 1d7e1db0d493c87aca8c5a7234a74f71
BLAKE2b-256 15808a6c5763df5e1709fbc4056219ebddf51ea0e615991e7a15c34a32a3718b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6464b3878cffb837592e6669fc7e99ec671de1270c949a9faf6abbcd74a8fba
MD5 f30db0956f9dcc12cd5b7112224828e0
BLAKE2b-256 ccde4d8b791c074c06f59fad0b09ee5e978a8d2161e8067cc9f9aa34c6bdcab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d714c1df6f0708e1d1874e542b434b9a5ecbec9c1ca1205115880a0b620b8a0c
MD5 d6bc4be380d7b7d99e95f558818d220c
BLAKE2b-256 c4b68bb50420bd85f34074b57a456b946166c5414da2cbc0928686f8bc049b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e0d212ab3cc8f048446b8b3aceff50d9bf6aefdf70573d8d17808b2079ae5b2
MD5 2cc3cb0490df25c15ece18dbf98cc7d7
BLAKE2b-256 e9b4e120ac42c2885dde085157255bcf864097bb9e26ccb5655500fdd52ed909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9b8cabe5aaef72b33ef9c4e5981714db873d44db8881d03007c6f4f52b0f26e
MD5 edd679f55754a854a17aab665d326cb2
BLAKE2b-256 8b1a8583bae9a5bf1c8f4c3789d541aa3cd64a86d16704c9d6ec71797426c8a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87108556104c78754637b7c6f48e299730c5330844db0b15c85679c60de7a20c
MD5 e9713dacad13383a3836ce988e96cc57
BLAKE2b-256 e1e14bfdfadd1bda8dd9e2ccbca1425f104b7574ea495f6f46fa9877bb0c8e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d485f5a5fedad611556003b6e711114d8ea83e2efceb8d048142ceb0a85a1e2
MD5 351ed4a931066c584fdbae83ecbe3bc7
BLAKE2b-256 4d005ea8b4be57148c0c3fd30d300c4125bc96c326ab65171aca55864b711aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5fa6a3dd49340557cabc16fac9ea79ca7ddaec712cf5e0971d576ab695e352f9
MD5 533e19495718d4ce2e79d2cffb1427b6
BLAKE2b-256 c719ed7cc09b8850c07b44ab2c0b9b13852dc2ea8d81265acaa285a10059167f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03666bca1eacb52f3d19186e17878b94be9d6be01be7efcf14ebe9199e682927
MD5 5e2b36d6e93e3e6f7a72d145e8458983
BLAKE2b-256 d6daeed31b2212c2853d4b1b988b5206dd792c806298ff20a8cb72cff9e5bb5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 44975086d02c94950e95492685fed03bfb32a797a398d184ff4a68c66ccb07a0
MD5 99e4484445db7e6c6e9cae9552d38d7b
BLAKE2b-256 3f270da71a1f9eb4be35a90a4a9aacbb6d183766fab10616a4166dc541128877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 648ed889dae5b8957b2f39cfab9e249f7b6c10360e2d25bd51489ef0cce70789
MD5 bb632e08b4db0f5c5ad86b40f4e02e49
BLAKE2b-256 589c48013d38481906319df0017fe18fdd3a4a181c40d6ad71c70d62069b0fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1ff18c0ea2f91362093072eae8ea3454d9813761bb50365383a24c56c3756e5
MD5 110dbd3112925c7761b90de7b36ea2bf
BLAKE2b-256 80dfc3790a61caa876e820e807bb6bc9fde53e2aff40c6fc7c9751472e573fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ff6ed4b827e1437c15c67062594d0761fb0399a5f9477e4c595dbb41d8361b0
MD5 a1916224cf1ab307062479a986a72789
BLAKE2b-256 64d68c70b20e5c019bb10330f43fa9fe17c3c37a307ffcb6c594748b47d9ef58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eeed0d1e81a808bdff4ca2cdb0459456f381c83ddda156cc5230f4842d0e0b60
MD5 10c9c9d5958bb88aeab22e3f5ed88cc2
BLAKE2b-256 b1d0d822668772f032b1c19b1b3654a18032a497ee68a2769b170fcaa0572318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e2520c8c32a6a1b5786ca5358197f9b6e3dc4e45a9537f50eec2f6c1a2d23d9
MD5 40856498bf056325067250abe749dce4
BLAKE2b-256 3fef7c530e58060153ce4ffdd5cefd64c932f28a80bfd027ee7cbb5f0a724a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eedae948fe1fcea34dba3b514535df22428cb4649e6fb52c7feda38171af427
MD5 c845877935ad2d4e09ad7db389ffb355
BLAKE2b-256 916df322ff3a19f85e425a16d4c8a3264bcfc01d13b6ceb9433f58f8e799fcbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 139ba481e3d409a388319e8f09473e9cca784fc2b1982b05c724da6f32d362c5
MD5 af8d60068af684c42a7450358f865dba
BLAKE2b-256 ede888563920952928f0b5ab24404e6647421bf0cf5e35343e53ccfc35d3a931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b27ed880e28e1619610c8b9132b4a538fe795c901efaaab58c75d486f8a41f5
MD5 24baf1fa5e6b7cfabc6eaf7e00f3f7a7
BLAKE2b-256 054a54d596bcc3da6863e0f954c7fe81eace35d37ad77902ba65abebf2c697cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ccd0bbf84c159f1afa2980b636f3b99420bb94ab2e4c7d8dde81ba028a7fec4
MD5 42574964b9cc8222f2f8ae0b5b0ad140
BLAKE2b-256 b4d6589d4040cf8594d2cfc98e04b6556b5a10f99e9f8be8c239883b15bd8f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27fad09aa7146f88e274cfbd8eaa6b189123c330be555589e57aa05ac7c287b0
MD5 455b2bedd5fc255fa1ee7ed9916d5b9b
BLAKE2b-256 da5e94f0e48184bea651545b92a94494fc7c4165c8703e2033522bd959d26f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48cd83bde2b9aebd27a98f88f50aa5388a2dabcc73f67c76434060d19b4c0db8
MD5 7d3768310eb55d0b88e9dd5389cfbe48
BLAKE2b-256 4a9af9dbd85e7cf6a23b649c88dec1ff058bcc22ee9c1acdc6646420ebdcd91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a2182b25c7e9f17cdc166a78b44c231cc3fbc17c8718212aeb5a405998f441d
MD5 77363030448ffa1868946935f014975b
BLAKE2b-256 10b7a07c5f3d88134b30acdb3e54176b1c0316d88f66eabdaaa769d1c15403f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7c1f8010ca30d081a21343cff669f2cbb98dfe6af733f63b451d291721ac053
MD5 e3c556ee5a2a5ab767497ee1747c84dc
BLAKE2b-256 f997e7257ff06b5bb0ed9e689f3292a1963a2e8e69a947e491f1456cee0e8cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 828bee158b54dd03828f5d23863dfc6801d2a52b9fbdef1213a5fbd9aede1de2
MD5 0c60fb5c0e02aaabb5fc82dfb569d3f2
BLAKE2b-256 e36f2dddd390e3a0386c595f5e4ca1520ef011c770c8f124db316697237d92c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bba75ff371fafa245b359ca9a43a7f0ebcdafdcc11a5845daa609bf69e28141
MD5 29c9f2407ad114187effeb4589e5c051
BLAKE2b-256 84129705f22016ffca6f6353d2aee08052d75bc8c0dcb73dc9485fad31abd8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc0ee6c94e2bc7b9a7795e4bc8d984921edd4b09f51b42b27668adcb24b5dc5c
MD5 77267b4fdf5f24b8661ce4c456b86499
BLAKE2b-256 e1fc3fac7e60d2fcadffb05b0ecc8a1d108b41426690c3c61a4486a0ecd5c4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 289a67c234547ec65213756cdcdb1c49ce4229b31fe784cbb80188e922bb05ae
MD5 0b49c8e17b3fbfb2c8cbd6a4b986e77f
BLAKE2b-256 cdb39e19b075883af9eb06f414d6d6b9cc4743e96f8ed714dd31f508286902a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19e83c1932e721d8bbeb69871288fddd56d60e4d367cf97c9faf2720367a4a3f
MD5 7e85a95fa810d0f3c73b4b9cd25e6c11
BLAKE2b-256 bd35664d93d770a1cdfea175a2f1f06a3ee21ba13eb4ca90ef50ffa98db13a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 852034b9f83626584854383f014e47e62412e498af754cb7aca19fcd69c9dfcc
MD5 6e99ab1d8696a7099c8e4077ff6b4c63
BLAKE2b-256 10ae99b929d13a455d1a4c055234f40c4db793a6b5161d02e99144289c0e31a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70c8362f14751571bd0448c641861da41bb8c6539f16cbc972ec9e443634e1ba
MD5 ebbed2242c36ab58fedb605685162fd9
BLAKE2b-256 9def960c5ddf28a2682d36bdb526ae6f58c9b23dc0d8d631fea12551e947ec34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e7d7d038d4f7a227e42acdf2e2d4ab03e600f65835c85f0dcdc5ae3233ce2b1
MD5 976691135faa6f2c852446d1b1d1cc55
BLAKE2b-256 7d39eef9c65b58b2533ee74e67c77ec6379f9fb0ad05bb70f5ee4509f6db2155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bfd6ff5de892c42e06eb58d327ca838cc63e8c82bda93c6050e400a3b9419d69
MD5 552b31ccf0ee31ff7c85c20d057cc7ca
BLAKE2b-256 498542fa8abdf837eba2144a145ccebc548ee372252c740614fff5c6007b5444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 85fb4be194fe30a041b0c364c8a1a9c33e4a308d5ed7c0606eb4c72195ae01ec
MD5 b4429019c5bf1f8dbeed1cdfd5e645e6
BLAKE2b-256 ed6a934ee14c621435b0c65d881ff74a06e84c0b8725fe62e6b4e18b80cd0598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f4c567ad4db9db6dd8e827defed24c8b92e3f271c39799b8bd85d5ff3e564ac
MD5 b902f654152ee4d56397b54de5037b8e
BLAKE2b-256 f0badf572419b1d57f686d3443d27f8db883ddebb2d01e19ce84559af2d3d67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3fbbce92af9563b004d003dcc044875366092ef5faf759e0b99df16e7f3702e
MD5 ef0466868f2c0cbc84397524de0baf58
BLAKE2b-256 775f14d4781631d19fe1277da4414bea96cc973df885892cce1a6cc013ec0735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6709b650957c033af26102c1edbf67834ec6e91ddb9afde6c44c8520639f1d2e
MD5 b028a35fc8e6b6d44a67dfbfd4a4d9ee
BLAKE2b-256 17ccb9f86242b4db6b3def3114c3d6538265d12be9bc0ec99625634248a61bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a464b506fce77f6f1f27c39eabad14c97c3ea2ea69335d19fae05b1375b141d
MD5 2ad6e8e41398f164e37b5ffbb8e259ca
BLAKE2b-256 88a0f955f8dd8b2ba1955bb6bd98c2e5122298992e748a6c7fc1717ffdcf415d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fa915a1a15e067cda16f60700642690fd1069e81e1d4bca7f53bb3607776ad6
MD5 4ec554339dc6a7ce72faf54cdfef8dea
BLAKE2b-256 a45ad39454ad94fc95d794df7dbb23f5370c7cefd243387a125aaefc050d5b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2561faaa4d11e88c40709bdcf84d99d71bb12eff13d13be32903eeee65dba829
MD5 e06f38cf40a124da409a0c8d161438f4
BLAKE2b-256 ebd229dba67561ae6d42f230c7aa9a313da973d57c824e40e05777ba583d54ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbb0ee363a6e6fee5bda68b0851eee1df9448751343e5e2b807240c708ca5882
MD5 0ca85f75a409e64ea3c255a0066b09e3
BLAKE2b-256 2ea960a8b1e6ab7d9b57766fcd74bc7233d45f1a8cdebbe3cc6d8916ccf8241c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c55f6d244786f4c20e4465f56c74b053d6af7ec4dc2aa8a866ddc78c4b900fed
MD5 b4f32ae513e5b9ecc4b719cafbb4971e
BLAKE2b-256 b9bc2aba3a62edd31794e404e1ec97bd56ad6df8cd15cd67aaa91716a5f3a68b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a0bf2c45af13cb393e532ab79243c309639cdd1d439e46691641dc42a71a5e7
MD5 3fa025a3b22c47a526dc5f4f6651b9a6
BLAKE2b-256 1b3c5f64ceec45de2e6bfabebd882879c7014106f2ce1a2367bb343c0b3fab58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5563794156cba4eefdf87da4fb2599d2e8759bb99b488df88d02b038063be124
MD5 52514efa82646ea569ee9d51b8345712
BLAKE2b-256 4d2322d0f01e34950138a7eab372bd2611a6f35982e8a1bffffe995f3f15825d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fda0af1ca4e939fc8d0d1a519ed969776e825d4d4fd9b9e4a85181f39bbf6aa
MD5 6fedea210594130dc2d80449eee88933
BLAKE2b-256 fdf8ba896723a4562f0e54088ab39b43471e8269e8d38a96d52f876474bbf4a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 009055b54b37cde2bad5e77f27ebb32742970d1ce8e1c5cc3d87db6b524de172
MD5 bfa42cb2665e63dcc82f52b4d8417f50
BLAKE2b-256 bf9a15b69c43479cd6ebce129c6a7fb7c185802caee3bf7a182b7a0af990bfc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2896c2e35db7cb6701a4980a4fac9ae83a9b6ad6ca001f8b1f585a75a7a7d3bc
MD5 88f6f95af5b2c1d471f815bf46c91722
BLAKE2b-256 e66d552b189d73012c136684e2ff1bfc3a1e4505dcefd02c6309b4df262d11a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8524da1e707eef1627c2c38763934a9961262e7d3150812ced9fa528f37fa52
MD5 9db3b6ccbadf964da4d0d7f81936747b
BLAKE2b-256 8943cca854c7848d3d11202c44fb0ca33609a9074dfa93ab191423e13a26f0a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cdd3dfaaa4f8ddad7987190b4dfb741319cde1a2ad26371471a987a3500e0ab9
MD5 e455a31eade10d58df89ef7dc857cf9b
BLAKE2b-256 5361cfb7959038be4a9916d34165839973f4a60b12b41ecb853950be36bd87c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59999387ba843b91493a8fab3d8b07f6b4e1b40d9418f247ad9e11f7b2759732
MD5 7c4f30f1f66f983dddc085c676b11e6c
BLAKE2b-256 ce6beed0bff1f83bede5ecc93935c910ff0a49234f3d3d3e94012ce955cbb627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2632698028232d4a79dac8c4f668ba6b025117f8339b1eb38342ce5d290b8d2
MD5 56d515cfda0f7cfc10e98000ee9dc1ce
BLAKE2b-256 ec6a6c013695cb5a860d9b051f002c62e57813dbb76722f6708a8d7d9a1f5705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afc867e7db0f151fcfd420b97df1c70f10fa7c4a22dbf3e2eb6cd8957a6b9113
MD5 0041a5e044a5e29e195a5b7de0f8a128
BLAKE2b-256 cf98a49d48022ebc6c16cf18677c8defb68df0d68872c1549f6df5cbbe9ee9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8d6d40f93f4f7d8719798aa33fdf62c27f5d5391388170852f184c70f3973255
MD5 fa9fc90891c54dce56dbda6ba4acdbe1
BLAKE2b-256 0cccbdbb1b96d628e4d4feb63a89a17efb10dc407a62ebc73088ac31c0516117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9984c89bd5a9c672e391489a9637794fb5cd736c3a631557ff753fe197bb64e2
MD5 f4534df1cfc121b9ca41b19d232df6c0
BLAKE2b-256 56dd41ce2142c9cf04514474b30a936d0b51d5693091e120278786cc70fa3750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 93190ca9d26ea348f1d0e445c8656256ae8e30b28b2407ecb97a35b77021cc7a
MD5 9937e20a025506176203ccced1d867f0
BLAKE2b-256 44105b39f3378e138e88e42488c9cc2ea10d2705af3212ab153053c8d51ac56a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 65002550acb0285be5f8fecd487d68f2baa23e50c1cc9e8586c1e4478fbfedd4
MD5 47e8cd1facc89d89849715891b7ad614
BLAKE2b-256 9337b24834ffad1aa580ae8da399c582f1b41035d239519611d25352b614aadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 336e82ca50a38b3b6cc7cc486fc9207eb4021407dc7301c0240a6284d3d1b3db
MD5 792687261a0ef32bffd4e97e1ff4ac65
BLAKE2b-256 7e35a90ccc5093a68cbe2fbf6f37d71a25d2e252b9738bb63a0c02c20747d745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fef8773c838159b771b6fd4ad8e116f6c233a2011a742de403840098aab6290
MD5 c8a3b34aec9a40548b4543a2173db12f
BLAKE2b-256 1d1f698b073e73803985cea96f298d1eea41a26618280f97cf47b6e15665d255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8561665fb745915f82e62d48a87b5a4e40541fdc4c0dc45b516d01e42c5f497
MD5 3bd75189fedcaf67e271265602f78cdd
BLAKE2b-256 2250f1dfe456a38e56a5122203722c4fce4afb7d040f14d292ff49ef8868fb93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f30751723ad9209f28fa4c393f25e26e2daf199f4a2792413edb9ba6c5e3959
MD5 2e0e8bbd00704272d287ee53089550f0
BLAKE2b-256 1b1c8b66d5c90aede9f022ce938d254293fc03ca1b4d29529d84b1833207e1b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 db07b1d7e9d810861bb416fa6811631e68791a9b398ff52fefb822896329cf31
MD5 ec0f7d6273d74f4ff38e044aa4761c55
BLAKE2b-256 204b3f0317186eaffdb0b91f8d6b54d2999b0ecdcd2101dd6593024fcc89596d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94e86f8b07b20b7f956f7a443c8460ed36f1a3abb80844d004fa306dc07bbdfa
MD5 4d995a02ac559e069b3566bb85df32f3
BLAKE2b-256 d7a4e35f5e58dda6656b90ea17d55d3f1e0e99fc3743030a046774558e547373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae702341937818f42af13e1bb20e4db910be96819b3f25035f46624e17408f8f
MD5 b0f7f90224ebce9808a92f34084a41e1
BLAKE2b-256 895744c993a6248145f5f83aab0ddd02cc52dc5d8488f6fabe51abbce3e3b18c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bf71161dafb55aa9edec5bc02f9c0c63bc50deae3f3fb9bff1f73cc9212db66
MD5 9bc40b9dfce5892dc9d15ee3302d795b
BLAKE2b-256 1eaab4d5548f614872538db364db6a58a23ee6ffeeae50815633ac63b054209e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e16abe047a6551761555989634d1004ddf99a9e60f8c2454d4d1375d01e0476c
MD5 4a9eccd4379dbfaef1061138de826adb
BLAKE2b-256 c403ea0d283180878edfeaf0d2d0b6c12376b8540d9ea495af12fe38b28cc5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4b8705b7acbd67ffd5917a09d2957d4d2a779452ca4bc71794d9ff3f740cbb9
MD5 2b3ef578aa3f1e297710bc86a71763ba
BLAKE2b-256 a7626d407dde6e1136c00a28e56fc93da08ff58c9d64d78292cc5c5401aef564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8fca0eb4aee947a339fa6b0f6436f0bf3f19c3ec4a2ab8540a3fb9a00d083e7
MD5 82691dbb9e1b83701c1aa8aa9fb41d81
BLAKE2b-256 3cc61497aa7d23ad16223d963ae3a09fc200ff76bd28d8de838c8b594e43b2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cf614766668967d4392de2c4df38a76c0a26185ddae0c5fe220949eeddcf4074
MD5 7558366f63309f532e1c135e26a19732
BLAKE2b-256 dcab9045b378ded3d9d001958527ab2f4f7997f788945c34ebac18cbfd706d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5490918c49a6fe9b42401b842b15951ae4c755fbc636b0bb0141ebe00bc6b12
MD5 a223847748e9c88d1204e9f728d7b844
BLAKE2b-256 f54827810f3bce92003a385fda7f1cc54cba3e155540288eb3ed2a89e0b16d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52a57db875303884ead61d3274e24de0605f757b10c712482b13c50afae03cd5
MD5 f5040910a595412e27fb5eb0f431b179
BLAKE2b-256 cadcc4063907f10a790665d95a21ed030ca8350e77ae8b4d1f0c119254aa1fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 393b8dcad3ff08dde6fa1eadfd727e6903e3735c065903c63bfd6cd17f6d4dc4
MD5 846287bb026e00b30f8aa35045e98f4b
BLAKE2b-256 1618201d86e8676a08a3992ca34fae36a550981a246a98c6aaa54170791d0cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b9abd6bf310a315d5d6892194e5b077c60cbb89cf890985433298e4503cfc6de
MD5 8f5bb1555c3fef5d5ed8445e06eb0c9b
BLAKE2b-256 324aa92e7ad5907c5c2f16a3c2325c62d30e193526c7946675fa9c25882134ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de9d369501fca545b76551ad4ff42c4e196b1039a604e053dc9b180ffb88b690
MD5 2afcd2dcf5070a80f587797a2c5ad570
BLAKE2b-256 4f3f41f2f6078730158878645fda5030ee7dceaddc9d7eea873af4478240f361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4653aba56d6be38cafc82de394b167fe8a36b8bb45425a75f44c0db6babcef2c
MD5 744ee95e058c85b9d1bb8ce22cf5769e
BLAKE2b-256 aecbbb5c03abf0ca4d1c0187fc99ec0955b627620c817d0f5ef4fa498bdd4e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed2c3f7e8d6bbdde7d4703d6e64817d2750a23416f8bb81f12b9396c46368588
MD5 394e6da847317bbc69f1bf8055113c23
BLAKE2b-256 72e6bf5be82ce198282696a81bab0548211b35ea65a11e5d0aeb548ee518b12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 be818b0aea3314270904cb447c35edfbc768e8c789ecd9d8dbb105cfc75cd83f
MD5 6d7ba17e0ab5f23cb5ef4143c2f576ae
BLAKE2b-256 a0bd8290ce00429503710785af502175d2e7e2512d18b6bbe4269d6fc63dd9b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b69e15ed7af93a5873f2c64c5d390a8912c5d391d57973f0a25171f71711ccd
MD5 33e875f34f3314737f11ff7d834e6620
BLAKE2b-256 67259d02e9fd337b34d6d93089ac5e8e2a884ca7ffa6a74274b847eb1d5805d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dce383af6bd71096a9f890d7f1bf2999adc42a7cf10bfb4f117c43dcd75442e
MD5 53958931aea7552c3a91ca2c0191f2c0
BLAKE2b-256 616e8efb952da50d9e37be679dd7f347a08e2ea0e78f048276c9edbdb864d396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97aaa332212587e428eb2e4f07188e6834750a19b1d666673c1ec140571c3515
MD5 85231aed05fcdc17d4a4be9338b2fceb
BLAKE2b-256 d8951434c996e25351c529db3693ae843b26ff40531415cc64fc893b0ace0d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7bfc67b6adf888d7e899a0f232d18e3dfcc9018514cbfca32830a51d0511f07
MD5 2c965c9cf83f61e7551a051edf5dcbea
BLAKE2b-256 10ac31e01f783f6b37e6fab367dcccee72a259a459837ee181800a21a6c5581f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa0da5d4ba52375ebf4cfb3b9990d7cade77213ecae3b6f76bc94c807f672c0f
MD5 efa2cf8eb5b2a932d2cb4179e763c086
BLAKE2b-256 5681a1928a9ef504c44efa9c1fd2c14ae925d2829402f0f0c95d73801e9ea553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88b2b3eb32e70c770190ed6bc8a939b9ad2ad35ca84ffd0215efda9975578769
MD5 c09aedfa05a6b82a088e63f0cb08e00a
BLAKE2b-256 d3c9cfbdaad53420f2f42ee6044fd07a305d4bd3f03a081f65f6589af43c175e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d154109e92ac6070bce8b0956b464d3ceee86a2ea9aa96489f8e2395052693c
MD5 0a54a11ecb7f39685a88ab60ad895572
BLAKE2b-256 bff8fa47dd84510c23f5caba6a214dd045765a5116fac905a382ec6b78d6546d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 224544b1468a609a0f617655bfd0e3a7d7234ab8d43028ddd3f0d39bb6e9d7ec
MD5 d6098cda875109508c0d83a6cd478516
BLAKE2b-256 d2565fe0af91da0127b9a3a080ecc828d6fd5a6b8ce2491c8fb5948561fc5a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce9544608321c56daef1a33d67acf8bdace3a56a1bea70288505bd71fcef891d
MD5 41131940de2c8b7810cddfdc3fd858fb
BLAKE2b-256 19ebb526ba5d8f7fae6b8fa5fc289fafd7f08c3ede4ed0bcb79dcb7a7f1145aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43af5c2dd5bf5ec8dfd35645ccf68acf4486b974d974ea4852596eb74235bfe2
MD5 0772607c24d1e3f936390d71d33892cb
BLAKE2b-256 df0c285b3f632be3c02639282e1c5c6e0e7449d0154c368af035b1c69a3c4300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 252c9da4a7fe77a188100017edb29cbc2e5d4c823562f10cb356f57d8d695c79
MD5 ea89c01efd913bc84480bb81998c7232
BLAKE2b-256 4c323ab8b2c31c453853f93f109a3cc1a47e8a32eac9b02c52a8efcbaae55479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62fcc767b98102f8b36949559ee23815e633e3af3b8ec75c18a8ba81892fc407
MD5 ca48c7a16f3b9ec0a2172f795ec30861
BLAKE2b-256 1d5d7aca7acb3b30df40183ad1a06729d99f8c93da75a8f44dffdf87ebb0a3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 004295d0937d26f26ab69e282a022adf10e19ca23ce1a25dd17db13d259bd8ad
MD5 e811d70465e3a3431fe0f5ddbfd7ad76
BLAKE2b-256 9124a177f721b297ba3e4b9dd41e152000fd1a29c40fb8e565dee7d13c1651c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3a7d701bc6e25c96c0ea5bcc81a37cd5b63cd559ab6240cf4b5a60550101fbc
MD5 5791f84a1eac61845ef0ff004c6af78a
BLAKE2b-256 f3c6ea1b272b35c7d52a5f2f56988d2803ad7401395b09f4dc4579f36137466e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7dec62a48d05961fe0a0b78ce5cdd7312a27dbb14e0f9aad0b3f526f9dd836e6
MD5 fd5a4ff2fa136790bfa3142d97143a38
BLAKE2b-256 e1ff4296b453483ced6ce4071513f986e77bef2328593e44f2807dd89ee39c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c38c7fc09d7a7488f771bc8e4aeb0a58b89fc834b1a0e238747a102ed4227eb
MD5 4a748c00223b0e4dc0b496e283346731
BLAKE2b-256 951d29fc34c6af6814ffa5e2aa4ee2715cabd93d157018c63ee6a89440c52bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c526d8f5bfaf2c9e5595d7174f94a59787a7d8c623316529fe9d29ec6107dc9b
MD5 f39524e9445e93d748b70a781da7e3ec
BLAKE2b-256 ee25a7ebce98bee8676f930f083db927c1fe1f6adebe2f7b388835a66793507a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9b8cd8d59a1ed787174621c0cfcd73105f5edcfec20dc7eb8f95ceaf58b59db1
MD5 cd1d0149542e7c9d43fe31b7127445da
BLAKE2b-256 7bc2a9fa19ece672d5fef5da938fee9d1c6d42324c3c99a910bc140740237d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8c0798acd1abcd9b00a13791a7097d6aaa8f333f5df357659fb202efd64561a
MD5 e1791bf986ea48257e45335fa890ba5d
BLAKE2b-256 e728386465df37d77bb849e7e0a6471cdbe5ac9cc62a49136de226f28c834595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3697e918a58e551ec20d153d8bf21a0bac306481ca5923890c83945401491863
MD5 4217f5d69d376775a5c1ff310f18bb4d
BLAKE2b-256 66a017ec957b7e173c162e3b7481e272a6ec37fee65313be908697e2a1830547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7eff8779ad78d9aa3618ade95808b9a195dfbd131d79bc58fcc4ad7d7846080e
MD5 3b41aa1917f0b10ceb6234b7bc8a9533
BLAKE2b-256 60b1e53f9fff7bf0da29e32cb6a82786076a8eb38beca3a53b05dd520d799452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8212f46072c69540534d059c35dda332cde6a8ca3785076371be9d7e9a53a45
MD5 5ac46dfa5e5ed5c37b3a281293666f4d
BLAKE2b-256 bff9437cdccadaec2822addd616fecb885ba389e88f15e5d02e353e94f755d91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5bc2e465a067afc9d7c0d705e9aa43fa4261a5a71cd94d60278dde6be8a6d2c
MD5 ceb2c735cfd8ebb1d2677deb7ab0ade1
BLAKE2b-256 86cce1542febae45b1d7a0ef771804ed79df86b1fef48cdc62125d437adb2251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 435b8772b2654ffbe0265204edb9a87b38db27064b1bfee4d5fc1bd4cfeaf5fa
MD5 facc2bc66f2c4eb7ce0975d0f1ba64dc
BLAKE2b-256 b96f39fcc0be4821e0b8e514c3e1e311706c51a15ace969ae2e13ed3c1f117ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e213916725631ce1baf17cb2ee6027fd9753fddf65f6ced4398e85c22fd615f
MD5 82a021f45de1b7068f2a616a7b348558
BLAKE2b-256 7a854f23da2f1fc7336375bfe08bb0f8316418a86412c5965c3e3e0ee8a82b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f3f03e012f4d62c13411d3b037aaf7f7c609bad937c6bdb7d6e91937567bac2
MD5 a25950f160aa1ac7aff93cd279f8b226
BLAKE2b-256 d350c9e2a7830865bcc0947a8099065a8dbdcaa1b9b717bf42008f918d0c7ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae91441f1c1687c8b15d4dc835da0f3d7636a013ca7ef199640fceb0fee987b9
MD5 1bbb198693ab46d9679261f1a5c79447
BLAKE2b-256 047196ab13131ff5fc9d65d237e93f15c653aaf7adb7e33d9e44f6a02e32db60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c922d62e0fe5371f9d1278aadc885430a06186f0183790fde76ab4569c9cc63c
MD5 bf857286c1980dfdd847dd532b8f5597
BLAKE2b-256 175e24a969a4626f9f26967ffb533d1b5291752e540fad2604665f7298ac4a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce634084fd75158532670f59ae2c796ca6c1f7d9b2372cd9edd3300af1288387
MD5 bc2fac09e1bffae63ae1a07b7367534c
BLAKE2b-256 eef74b1d20357db0ed196dd1262266fd609acd2a1eaf5113b35c3660a431a83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 384cb2b5d1501d83e92fd2ab53671f194f5a148975718902b82387681fba7e77
MD5 55648e4026f1e8d8875de2d11a569b9e
BLAKE2b-256 1afa09fa1317b0a9a020c9a235cb05b990761b8143d54893a4aa839ac7c23a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66b8c69be1bfd11b971f284f19869999c732a2730d95ecc5b6e8103d67ce1221
MD5 2233dd6f64ab9a3a03aab9b8872d5a33
BLAKE2b-256 fd5a7e7b847b7efe94066b44d3144e48822cf5b025e17e89345ff92c62441283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 613b4c82c98a3497d39c93cd03163e05a4a99595c3dc2429ef3b0eda62724385
MD5 1b2320d8ea5b1b8b57a6bac00f563434
BLAKE2b-256 247b232cdcde7f8add8fce8cbf8781848a55255697bf461d87df2f2965106f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf94253618ce16fd725eeca4a0ad86ed79e8d933b1d6e0c6d4d28a586211c5af
MD5 ccb7f11b15ec7c4048f34f5745bad37a
BLAKE2b-256 6b205c449607ca3fabb1cef50a565c80627a6dc686ea5458cfb5866a0685e169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75629ff604d8e4be8b1fdad6224a0e1789291974fe9700cb2b40a43331426296
MD5 15fa0efcffb42ffd041a510860696aa7
BLAKE2b-256 0ae5c8c87d5a96abfd2b8243db92649a7ffd512576c217514893d94f80b9c0d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acfb10c91c8faf9ed1a9f6c6dcc226cda0c7ece3c3c2398a0732e033bacc352c
MD5 8b39897123dde1b9a6c0eaf01e708dc3
BLAKE2b-256 60fc02a36101d2e1e4d3c56d0547d1992cdded16b2982e4e33ad6106bf89ca04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 009a9498108e2232f7e8da798b7761ceba4761c99bb75cb987c9ba45c49cb905
MD5 d20547b5ed35e987a92e71274f761b08
BLAKE2b-256 f84f66608989850e6210e702a0ee26555063fa41a85f31724be648435682d4c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8225c2fa5b671a177540ed4f5fdfd1a227a6f4e0ecdd9472aa5a2c7fdff32500
MD5 4a1b542133860f31491c3e2581b088bc
BLAKE2b-256 ba852db4404b11b0e5fabd938235dcbb9880bdd411bcfa5aae95da4946b76b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98f994aaf12368d68a5f731c895493aa420672b2a6a29864cfdd877219b31fe5
MD5 ca002a6aa1f81545626ec0e3ef73ce5a
BLAKE2b-256 add370e70d3d76b49e0be51ca050cec3b9cee45c7ee01c221db6e1ed249e503b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86f291b5b9c1bc8e7fba1eaca209c6aab0b579e7ff62aba02395809ade570846
MD5 cff39d5a55c11d8b077d46b7c2721199
BLAKE2b-256 23dbf4895d84f3b07cfa9fbb4f4a452a0346e3b8faea2d23d879ca405cbbafec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 411e0c35bd2e538825acadafba8b743a27294cffd2b419f897cc91c94ed6b265
MD5 df49fde1a02e6d72994d6c684c74eadc
BLAKE2b-256 32f2eb33bdbb4af20fb2eac57e687fae8c2db979b98818a8a1a46975c438340a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae1fe9a13a5ad8501f20a9801a3f9b4b53bbef7eeba3b3982cc2863a57a8919e
MD5 b96c46097b13d21a57db6fbc44786171
BLAKE2b-256 511116ad27215635f9e9debc00cff5e7c73ce85799524cb083065a01ce8eb26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bce09d5ae7a7de6f720c4fd782e8aa591b75f8b68c7e7b9801dd9f8e12267971
MD5 b8d7bc3cf17ab5f5e92aa16ae64d195e
BLAKE2b-256 51a8cf046dbd894d4d3bea6b62affe4687bb51565170ba67e8a193752ef225be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53620c7e2c79b000c32dba7c98a2947e624348b7e810d819dd867129d88fa697
MD5 58cdd300d5a3255ffd1f8d1b55bdc485
BLAKE2b-256 3b5ff1f66d6e886ff5f440c51321c8a722e100748e58fe6763b8be12d7ac0e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd133552ffcafa8211f285916008bd9cb6e120b78b3fb931d04329ad71dc7b14
MD5 ed6a04d0d3dd9894f5894d05b9b12bc5
BLAKE2b-256 6761a8ad916eaed0795ba12b423b0c4130995ccfae382547ab8efbc15db334c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d807db6d44e69bc811a1bc24f6f4aa3ad5045cab4b9e4e8c6cd9fbe231a176e
MD5 79a7ab247ad0d85d7eac9680019f8c4d
BLAKE2b-256 21975b49881e130289bd1d00a45b15a4309e5d03e9bccc6ba25e22b308a8fdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c56d62af6938f8601e0aa5785ef65c113a37423eb2724b182f8c074b69f79d08
MD5 7cd9caafe2b79072ad0e1e81b810679f
BLAKE2b-256 dbe8531f06577dd633ffaa6dae544c2bb7373e19d68eed878022aa2c66e2dacc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0ef34e42298edc80955fad46125b6ba72e49e9101645c61e57c6c6f98a9e3b0
MD5 d98fde972e86a30df7eddc7ac2702ef9
BLAKE2b-256 5f51d67384a90a065f72359128db61cb085e15e36f80548a1286966413dc806a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79b9b316a2dfdc2fb1a59559e9dc9cd026c3954ed9a975d00a2077ed83907d32
MD5 c9e585783324846bbb8164afa285a415
BLAKE2b-256 cb575bce483951cd8a47daa475341db83595e93835e265612e4fb96e6640ce4d

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