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(): export a dense 2D NumPy array for plotting (and the corresponding bin centers).
  • 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
heatmap, bins = ctx.to_heatmap()

# 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.0.tar.gz (25.7 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (713.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (748.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (777.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (673.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (542.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (508.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (713.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (748.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (776.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (673.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (508.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (713.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (748.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (777.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (674.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (531.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (654.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (509.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (498.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (710.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl (745.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (775.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (670.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (529.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (649.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (493.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314-win_amd64.whl (314.6 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.2.0-cp314-cp314-win32.whl (296.7 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (710.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_i686.whl (746.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (776.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (672.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (529.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (651.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (540.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (439.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl (449.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

typhoon_rainflow-0.2.0-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.0-cp313-cp313t-musllinux_1_2_i686.whl (744.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (774.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (670.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (529.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (648.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (504.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (493.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp313-cp313-win_amd64.whl (314.5 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (710.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (746.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (776.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (672.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (649.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (539.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (439.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (449.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.2.0-cp312-cp312-win_amd64.whl (314.9 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (710.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (746.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (775.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (649.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (540.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (439.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (450.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.2.0-cp311-cp311-win_amd64.whl (313.4 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (711.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (746.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (775.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (671.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (652.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (540.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (506.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (443.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (453.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.2.0-cp310-cp310-win_amd64.whl (313.5 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (711.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (746.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (775.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (671.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (508.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (529.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (653.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (540.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (505.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (712.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (748.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (776.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (671.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (509.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (530.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (653.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (541.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (507.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (711.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (747.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (776.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (672.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (507.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (528.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (652.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (540.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (507.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.2.0.tar.gz
Algorithm Hash digest
SHA256 96f237104c2751b22f2b7f9f1300784dc7ef6e2f1783e40443d58a38e7d44098
MD5 76d6ded701145103f2d339c921359387
BLAKE2b-256 d95b3b190942135ae85df9c44aaebed865eb24298e6b15aada3832f11734842f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51c1046aa28c518640787146f9625241087479a05f42f99a26e7c0944cba8690
MD5 ced1b1bfa44a43430ad7cdb42c62a203
BLAKE2b-256 9233ba8ad60b88900d39b432dc73b876dcd2c1de82a76ca4be15fa844dcdd7eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e71309e7fe627a37c3b28e408c849b9a6c9936ba3d838e7139be4ef1e915532b
MD5 fd5795902d7603293770a41a7e7bad56
BLAKE2b-256 078c03db18406fe5777a00c547cdb806a48c5015b640bfd83ffc385502b45370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3ca2eee7ed22690c71ff61a0d3360dd3e37e8aedba13f041dfb77aff4186a12
MD5 ef75e64e13b307cbc08d813215612b7b
BLAKE2b-256 7ecd414f2342e59b581f99833859c2413bc5f3907a88e3cfeaa4a889b5108a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d22861dc3ab23d07129ac4629d5c5f1860168fa32e17edb00f596e39beaf096
MD5 77b34c41cb1eb65fec70d67279344cc5
BLAKE2b-256 fc8aca93072ff3633768f4a4a2974f78c374fa455d876825285db75f264c4fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d22652ea1369ac22cc95ffbf85b27ba8ee5cad3d6266eea7b9d680217b77c1
MD5 d86ad5afaa2554f38a4b1a3e8a01b3bd
BLAKE2b-256 035570bf07605d3773694604fa7c0a349799c907ab1c4381fcd7e7d1478110cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f28c45688b62b735cdc005a7cb35bb963d92cc7c18276599abb0dfbbc821cad
MD5 09889b4fd49252d52c11f1d734c9ce6a
BLAKE2b-256 fe3ea1aceccb17dc5df43bab3f402c1bdfd4cb5c4bcf4bde55fdf6b6d292bda6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfb56e091c9a535d8329670717c53f261e98241abbd7a184e73785382bcbd495
MD5 83ab36168280bdd98ff1f267decd0494
BLAKE2b-256 7cf3d2ded6e0e8cb68d808fe77fe5e40af5b31ab828323419e0dd730f1b0d873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04be900652e00d572126499df242f14e0bcab0e93d8456ff9bf3a23a305cea80
MD5 ffbcda266e683d046c32e7a7d97c92de
BLAKE2b-256 5dd7a1837443a691aebe1af9edec6d797bdf7d27b4bfb08cb9014dac6abd9df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9ebe9bb438cf8ab989c08d7752b3177f17b464b98d8af3209733ebbcdd660ee
MD5 854d11509c881dd592cabe27d54328d6
BLAKE2b-256 a5653420cdcc3cdd5f886513c168884f1767143c94000292b0110bebcfc93708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5fae0ab12ddd9092b25c5027720c14c1f6da74b1d2bc3965f42f12d573d3524
MD5 3af6bbb5fac431353628f467ed4822d1
BLAKE2b-256 040a815bd4835e3ea03abd51d7f2d29128cd0713fecae0da327371e4e24d8977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c15b6daab42844bc8135ddc133230560f580e2e2a5c76bc14880bcc34f69e3d4
MD5 90e7d8516ab8d5e96d0e0b9b379c5a81
BLAKE2b-256 3973d400c126459e6b7ca4d66b27c3f16882fadf7f7208f6d995d52594567dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3741dae4e7e969097ef43f4f9bb62a69e8a4f1423eae87e7db8154516f7d6828
MD5 0194396911f1f2bdcf3f8086edb66157
BLAKE2b-256 5f31599e2d6bb5d79f51ca67a9f7eb4517a3a311776033a29726fe322e6f008e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2b6886aec0b328acd20059d4838f499c4241d5d63b770ea2119f965b1e12624
MD5 9e4ba632ff7ca78e4cd37e4c6c217971
BLAKE2b-256 1181af4f5d5c5cd9b3527f2eee5447e3ad4198510ef34b92968328016c0ac98c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5918b1516c5e553d0405977e8fe302416d7733e38cd029b89b60b9347e9d8894
MD5 5703ce0564bf7cf4b2a61a10477cf17c
BLAKE2b-256 899224ef6357445f8ea865cb7c5c93e71f1d5cd6ed9613af9582c9c937d6407a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba455bdd1269d11fb2a797decab6f8518b3627a28e203531bd1d5f77edee4db3
MD5 4af21e79d30d6a22521b69426c89a2f5
BLAKE2b-256 77bcdf58da481028fada3ccc32a694e47d23c48a2e74985b84fb0d8dac99135e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f69c93973d8268d509b1c65a42e80a1abb9cc47d2fe3c0a248205269b7d2a778
MD5 bffdf50658da6ea5f37aa64a9fe4d5d5
BLAKE2b-256 01eb834d874ce026be262539d9527d263ddef0543cf6e009df033948ff5fea62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34559939a7f32aed9f7d982559831935997bbef5bfad6c325dd45e49d1c76fcd
MD5 db2a742a5e550c72c9efcceeb2528a78
BLAKE2b-256 3516c1abe4fce035c0058d2855efbfd7a983e0e2d73273b2dc5d2db084cb7108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62166e6d8ca3848fc00ee4a7fff2a8f1d348e3f61253e2f3543310783dd491a2
MD5 1bdcec53ff4b8fdfff1823df3c1ba05f
BLAKE2b-256 e8756b06212e266ce3affba7abeac064354b89d9daf479d1e14909dcdebbc166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ec276c40d7b27d6acdb76190e40e2991782e0ffcbdc62ce30f77abab2c70544
MD5 c5ea1cb5cf7947615be4d4de217c6da3
BLAKE2b-256 f513128bffd332b2eadbd0c96100018f3d361c0c57fff84faa4a109bfc7490d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f301b341b60142dfb36471ebad083b5389dd97094b124cf9ac9bc57a6cd78e14
MD5 8fc60032f14b5d49adb443be6f0078d0
BLAKE2b-256 408bef41d18d4b346dc9a58274988e80e6277fb9f68e8423690498ec7f55ca18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e28aa3e16aa8fd52878e7f2cb4016d8281483f0afb8b839c7a135981afea1e0e
MD5 2d4b6e37315bdc94716447f8ada3c625
BLAKE2b-256 c04d6b21696b062ad826db4ef6433f78c98c37e4467600b1641698e1bed4a406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 441882a8147f472274140889afbf46e8b158103bb92f5f4b839955a844ea5162
MD5 0b1c7f01f99107861bdf029dfc7efbdc
BLAKE2b-256 5025b2f6e6555ca34bbfe52be3fd6679478fddd0988dc64c89ea0b784cfb53d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c21f669bf5553feec96782e6da817fa4638178f001edd568806eb23b87114a4
MD5 3a24184f62e2de2b3b934170ec0359ee
BLAKE2b-256 73b7c174bb6c931bc151577846a66abe695c3e147110a5c8783dbd0d714e121d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4bf7c88bc1b93db66bcc2548bee10ea6886a97ab3a8df1b06ca411b354d1eae
MD5 404d949c86125e543a0fd500c6ee035b
BLAKE2b-256 23a9c4925740a262b9bc9aa62a3a626bc42338113bdb13bb73fd62480e2ad2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25dbca4d9f4db0eb98435473bf49e89af55e9d34b4d02010b1d5730d8bd7df25
MD5 7bc1a5eec70eca71a5066a7cfd977c2d
BLAKE2b-256 ea405a68e82cf81407fae3959a89823a803c739b7471d3d904ffb52d232f5ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d0620fd40288483aebaae2328915c3e6b6f981a9e2629ed2955d010833cb8b8
MD5 0802ea094fcf3078e3b45853e08cc166
BLAKE2b-256 c237a55ce37489ffabff75950fb7d46c3d14f0a20e8baf92871e45b052185a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25ad8fccf91b34d435eb5c432a83b7e3a9884532d0eeb50e6dcdc5f6c1c9088a
MD5 4f6dcb8ed3f45df9b7921de295ebfc8b
BLAKE2b-256 70c552563ee7d663a44cf6152f85aab287dbbe7e87e8476bf805f2ee00eb773c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99bf70164d41188d512ef16e30fec62b2b5f147bc1104c5cb952e8d4e24742d6
MD5 87b608a3c28b4f8654c7785e3d59ee40
BLAKE2b-256 cd8447b6af60e4dec1533676b4cf82bcd3da348fef8e1590712c20593f356ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8a314d762a352752482800963a0e4d0c4b0e4bed5dfc28f06abfddeb219ddd2
MD5 d229ed8fe4ab76ab814ebad05e38f303
BLAKE2b-256 ea23b8c1d1af650384cc094eec844c18896a3c30c2885462167f053ebe67bb7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55561e6b112df32c8cd304cd187c726b4a44452690939b29fa1c502b43300f03
MD5 21a3e94eaab01daadba1471033fa37cc
BLAKE2b-256 63a934c3592058407086211afa1a35641e327c18e9eee95d38c11c6fa5d49b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 214983c930dca9994e087058474cbd99f551f6dc78edb8face01e54bec952f4e
MD5 b52974548f8f4f022ee9ce9cd797f28f
BLAKE2b-256 de12715ab99a8910e413ebeb8d9cf4297279b8803e2ba42bd1c1f150839a085b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 654b46051bc930f6f2ffa53e4daa9e7514dce4cefa030ac322e6cc0087a9f7c3
MD5 8b562aaa476a2a00d43c7d7bc580b9c4
BLAKE2b-256 9946a9e135d24ce26bbbce979625f010682692e3fae7b486fca9daaf32f832e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec75a9832f6b8117ba7340d7703c33bf108807e133a48d11dec2774c0f9e7709
MD5 1902c8294bf0da883ae6c0f978a1440f
BLAKE2b-256 2868ab43034f9d97a8471788022e57db292623c04ed12dece832cb4b131ec5ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc9a078b487af8113e326344b9fc6d22de9c1989ca651ff3fc604d3552070c42
MD5 6a53e8d8de5e1bdcb615d76ee229dd99
BLAKE2b-256 69b0c9693773659fb8950853f765c273c7ce001b0dbf49d6dd5d48b4d674d666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a67a34e1f0e3c5f26f06e6f472ea55f0d5ed75b23db88eaa1f91320a9bb309df
MD5 18eb3fe8c7f1450f02dc93b520a20722
BLAKE2b-256 a6f3a75d777541176339d5b25590fdc2d67ac3363b41cdce05824ac69c53edf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b72653880f363f5fabe39a014f2380ffc942cf11fe4e6020f9f770838deaf85d
MD5 f55e5de52e5ab803edc632e12082ba02
BLAKE2b-256 758efa0ff0cbe4d8ec394c2ded6d184d873f116d6141ed0f6f444f369cbb13a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56dc96b6ebfb9c12ee453bdd920456fa27bbefcdeb4992f66aa966c0f2be386a
MD5 0aed63c28d1fad9575bb07ed3c542a35
BLAKE2b-256 c048a4bb50822882c486619358565fa726d25068930fca9fa0431198426fd70b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa9c911b8f251028b26905578dae0826fc534179ad12477247f12475c84342a4
MD5 d51554e37d4ef39e3a8c76a8d89d1781
BLAKE2b-256 544c408672e7ac0335c0724c75c836b1671478cde2a97ade81fc94dc71a6d78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0a70e0663f07669bd7872a6bbca00a158a8bb723f24eb118bd319516f3c670c
MD5 54e9e7977618cb62fedda9e675348100
BLAKE2b-256 94d786fa94e2fb02b7b50726a01914d2a21972e98d7f38e9c2fb949424c02335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdc3d8e184c4829f56d36cb1fcfd0df05898224526fdaa417497165e91aec02a
MD5 cd92bb7414e4b7f93801e984e94c1ae9
BLAKE2b-256 a879e888f6833afa3702d63974f02bf7326554d7c1c29f616e0572666afa9acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a1628dcd9cf98d9aac8acd035143a1a58256b122c47f63b23caef02f1d71dae
MD5 fe56593d082fb937acf3d940d0c22ace
BLAKE2b-256 a0dba87ccc14df1db2a1f5ec424201601f0451fd174b0fc1b1248286df423452

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e917d700c353543809013850e123ce7d14c532df822357379706e2922193c2f5
MD5 31862b4c50dcf5d8e0161bd862589935
BLAKE2b-256 1bd1f91c208553081375761159c8f9ef810b314332888396d1d08624f04d81ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94e886c33bbc87428dfa992203ce84aaf0b6e8e35707549a122888aee97c38f1
MD5 2529fe1daaa6aedd144deb82f1f18602
BLAKE2b-256 6368e8883fa37bbd77fa6a9686f2040be1c5129264c89395ebbbefc55f7c46f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4e623a687572a7ecee632ba71ba15158f220a3104c46bcdb1646a214056562a2
MD5 db19a61865753229e964a024e0df8827
BLAKE2b-256 0916d28b0eaff730b9781e4575af12afdaf531494de365488733ba1ddcbbeed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97d0ddab19b47c89faa14d6686e9e3e4187239019cd97a0273a9a8a67aefd6d3
MD5 d96fc47339f365d74a2e90eb1fdfadc2
BLAKE2b-256 1c1d1a5a2c65928ecc291f0918c7fbf0a6777a03344b9aed45fd63aa44233c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b35797c8288ca3df5eaa760e1af5d57becef2986524e6c46132e69d9c50cf2d2
MD5 68c2575a8ef92a8edce65a6bcde94014
BLAKE2b-256 88bb492d2212881e830899338fa2e370609fd74d0a1e91962eaf841978cd2eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 281884451d034576310a6f33b28261cc171b1064dc80ffee4b3614b7b315d7ee
MD5 abe26b13d2066da0d1c8ec91b8241b52
BLAKE2b-256 91e7bdf62e7de69a71901939d460bfcc37efd967952a1df237b159d52d0586a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f83f9bd382693a2b54d4c5be1b9f14420c49b2295f79479f0a5a8825c5ab6e99
MD5 a1d47fa8659915d23071d1ddedb90006
BLAKE2b-256 fed99f82b283a37a27b6d968644b05a04ee422a9a26f609d515167c738f0ce31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 517920bc18837ef28a902ab700f5d1693ca843d94771580cf3c52e076d314652
MD5 c144cd0f95ff64c882e87bd6211073c7
BLAKE2b-256 23205d167aaef32615d850ed664a8d5d55825d262eab427df692187b749d6f26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c865a578d33e388db8330ea47220da8f00ee1a0551b236abb8dc961dde62dbb1
MD5 45bff3b5c838341f4b84026c321e75dc
BLAKE2b-256 aa636f093b20b6c30aede0e558491324de118fed1e4fba39df175f4071aead94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 69681f11991aa89e2a1a52aef88f42a5fc163366d34579efe109cd838b22589b
MD5 8d5def6c5c4610f5b67c35d4fd46ce27
BLAKE2b-256 e2e92b9b7ece9771f789ce029cf19500af486816f169d69b09d19f97219bd497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef1edd2b3d336930c9de50c9b629009dbc3ce1dab70d37cf15c80c078b3fdc38
MD5 bd09ac7636a96e45a879deaef1049cdb
BLAKE2b-256 bd7b989661c66a1711a3b11ae2263e30d69fe883586e31b871c04d4c5490f2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 110d823128aea3edb26326e2be29d687246db19fdd88b46aba9e3f4f475ad469
MD5 881006d76bc71682fbbabd600f485091
BLAKE2b-256 dd9d1ae86b21dd4b71b17cf8bc8b69a91d83742b2c7568a04cdfee143bc9084d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4693659341048b6823d4fb1e64c2ba1680e4707c6989957ffc3e6921f27f525a
MD5 868d88817aef2efb813b2d189992c127
BLAKE2b-256 460307539fcca650b1a8f8af1267f73be5553db5152a03bcc5828353c108a807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd435a22352461ebb092e010257c7f8b5832e998091dde02e6f94a5f3d3c5529
MD5 db2820540a2a25a2d805f4f0f35dafe2
BLAKE2b-256 1c946e62434f66d3c09bf6fcc6783f9d41a5fa4ecb1f7878ba1950a98319e42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21714325ac7d16a682ea38a29d30884c1c0c9068858184d66bd4ae80b5d06580
MD5 e9a884842af4befa44273ca9a0b24501
BLAKE2b-256 fd2349a71e62160038fb1928ebac56002811ba2584c59a9e41eda21f01a54ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5b6278c07f2adcf88a820493ebe875782f76254fd21d3b4920c8986ba94209e1
MD5 b2d8d103e51290a9127547395dbc5ea4
BLAKE2b-256 40b9d976cb6b4e51892acad2ade4753897742ade4ed4b576319f34d377492157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 615304dd09e22320724a04fa77263a80325b08f184f5f5cf178dd257a645ae2d
MD5 926674a06bb44f58acdd06f210ee7137
BLAKE2b-256 eb328eb7cf0149450f841090706f4d90f1bfccb4bf63beaa09dbc01b3805bedb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52ec4f794ebeca543aeba1eac6e9357448b43fe953736544e9226856b56c2372
MD5 8135c8cdcf95ae28a5854a128c8db721
BLAKE2b-256 facb21838490b30e5d9869d78975ade324ed7d021f920f15fd555c355d1a3c45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a96c9bf6989a955c62f8019b76831fe4b105e81767a3e39c5c207d42447d70d7
MD5 df6a7ea5f8e8d1aec8aea1919a40cf06
BLAKE2b-256 11faab850936317dde2ffde6f44b190c0ca304bd6f8b7b2a1b0b78581ffc1a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78a8b62b2d532691e25c5b8a912f31cf476fe31a353be5102375fbbc1f8e9d1c
MD5 00a91fe6d5f9ffa9d32ddf529581f684
BLAKE2b-256 102f7e129a726f0bc48d88d2432859fe320fcc1c7424dd1e0bf587c5660262cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ade2c417bf33c1198e859fadb6b4f356aaad2af17706e07278b93ca7f149e343
MD5 fcab00bd825ffd3d74ef8658f6372db4
BLAKE2b-256 608e7e478078578a64dc21f52c3dc9db8f0ae5c1c095d6fd30cebce47099089a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4623f031fa6730401c4970db03eb2585e16dabf5adf5e8c74da7242d41a523b
MD5 b274d17757b49acf7aafa92e8c29f36c
BLAKE2b-256 62944e6d614fd2244cd7e93482254d812eb6946487b021e438d4050b08453bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b459245de12823cf82c10dc5013c1857af1642055977c1429b2ffb68b32b233
MD5 7b37a22cbbf6afafb3135fd241deb489
BLAKE2b-256 f23bf1ab5455a7e0e304a51559c9bfdfced734de4d7b8faf6248a5ff252d3941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c36c707bb248e7204cbc7e890ff3001f889c99d8e7b5a834d6fdddfba464a5c
MD5 e9587690641cef5e38dc1e77f2c00b85
BLAKE2b-256 1fac3457df1ad1f6f51470ddbd4fc46740463706631e5be02bb3d88bf0592da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 466e5faed17622d6649bfe93297ccb2a4385c445cf5fa1352449c745e2a13ff6
MD5 8fb6ddbc317685540ec148b7d918f086
BLAKE2b-256 aca38d7dea29d642098003fd495b3e961f5383659f1c9ad0a6dacc73dcf5c182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 457634005fedd27601a1c176ca96ac82a9676f604f1079c6818854ac3023da1a
MD5 b32cfe32dc8ec87f9adb4458381a5571
BLAKE2b-256 ffd9f28b43f21c5e7e15835b070c141fa557aeabf8e881b0334dcc463b300f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd415e8ed511c608cab624d59c4128452f03934c4eb06ccd11bd43e4f89b98bb
MD5 f9a311923ead207fb83928530bc38bbd
BLAKE2b-256 156dfd0a66d3e9ef145c27e4c6bd44282450431640b9fa57c3e473bc8b57b873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e94e2d08a109b725090f255fe2f998e710a0418546e58573dcd1f28d805726e
MD5 0830d5692cab9fd43f052d63af8b457b
BLAKE2b-256 a2e57c263951d7dba2acd7d438b007ee6734360c4b766c73951fd07793e2f683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 be0fcf4768a791c61ffd70c45e507de876bce71d381227ed001b9713d47948f4
MD5 dc68163b88e427d274b49c87701fe3a4
BLAKE2b-256 7240bf804f519d83ae8bf0809055e5b9364a5d2f0cf4039024aac324fd7c1eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14f06e36add39635f36715761a2d605d560fb95f3a0f61dab7eab9bf7090c0ac
MD5 3cd6961eb10a1611f38b9b9b7d505463
BLAKE2b-256 d0a34939329387206ffc2a6b830e22e12dccf49ea9e016b1cd84e6fca59fad72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6ef6883e418a608cd958ffcd196e4f38bd7b3770603d68f2cac7d55e6ce3f66d
MD5 fc2d8d16b45bb26cd5e66d4f7758fc72
BLAKE2b-256 43167b1d9597f161f52097204724cbc40c08e2e2f76104259fbd0b366632651a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98a5d594699ae02217724c4c3c9d69e5ab7803a619fdab773960f6957bb2773a
MD5 8b38b869165b923d91a556b6e26d70bc
BLAKE2b-256 9fe807974035dcc4cd7c409a087b5e3093a9b4bc8ed566d3eaa17e3367bc75bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1d2f7912b2c0c70eee4458375d2ed457ae27ea8ab30a04b430ce06f6c680f68
MD5 125ccb893b99b75c69a6a6e614e154a1
BLAKE2b-256 2a712563f2a48cf3e79a9d55147e0ddc93d546d2da9e1cd6c1fe5cc8bb3b07c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71f26aaf90185f6bcf9510827465ab2d7b1eccd48040d6566247526c95a5575c
MD5 c3ee4b25a7d8e2509e276747a15915ec
BLAKE2b-256 7180a9eaf88aa70e38034a6bc9de1b4245d63312da7bed4604d3b3e8bb2d6aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79112f3927a19e871091039a0110e0eaa402e346f65bffbb7e3829beaa0969a3
MD5 b23846b9c05bba5d8fc471aafef4f0ec
BLAKE2b-256 c973eb63da48158d8b28cc5fe7b6c8eabe9e191e4206b98d41480101c61b827a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b84de83addb509fe638fa80dcc9592ca499b1170f24bf961fb42d501437da53
MD5 2cf2e2a39a220215658c45d44982ae2f
BLAKE2b-256 f848d95eaae9ccf692d4b823723253e24eece17687757e45d22d5503a6ec3be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e36f54303ec124bd83a3ef0e85594fbb99dfbccd18587386bf8080c6b04338bd
MD5 77f6fef48613270c12804b5cb45838b2
BLAKE2b-256 9d87a9f0063351cc955a46d8b70e9461a718016e62072874df7557e5f312f78c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a90149b6eab2374ddd57acfc0b09ef876d569cd7e862cd32fc459395e38497d
MD5 e2fbc44c22245a36016287c1b3699a48
BLAKE2b-256 1d9921e21db331b0e85137cdce5d43a60939c4715c156b21f71c62cd9d1faf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c9c3b979fbcf53442d548bfef371a64087251a50585d32c0c2178e2deeb0135
MD5 335da4a77e7927e3e45e00ce09049894
BLAKE2b-256 2ff43edb059f99aa16a7703d9ea9934aea4913ed693efabad29b5adaf28cc962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d868b27c7b37386ba05723ac2a6c84e0a310efd1bc1c909a4f24ea51a66e2d5a
MD5 75afce2666e88b30902e855d7b15b554
BLAKE2b-256 3cbc8cc8574ee0456f7b5892dd3bcfaa30f9259ed55d8c9016bcdf8f698c4767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07677705f68bde5b4844aef365a959852fb90c4a62ca97e64fd054649974010e
MD5 4815bba464247cfa7dac71b2254b9cc9
BLAKE2b-256 97b3504001558123a96b5bfdb844c542c4ffeb498bad6e8ba68638a3f660b25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 002db33ddbe0f3f0430b8d159c4019c7d80ed45d0b81ae7da4cba493a2f6301f
MD5 82afb354ab0e76bfc6c27551a1771bdb
BLAKE2b-256 3cf5b296b2477ebe253a39624873a4d1b161737b93698588b81b9c74b0959e99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2937a2ba3aaac2155a11a33b590acde32172fb6ab4246711c73bfe811d0a24f0
MD5 961a6d0be730d9df63f72e803669160d
BLAKE2b-256 42a046de74b95c9fc89da3d6d04fa7ee9af32df704d0e31a9b7165e1fa60900e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 958fd7311a8b8772d56c7990d821b0c46a71f1bf94b459cfa65c040a85365156
MD5 cacc14cbbd9963eafc156b207886fb4c
BLAKE2b-256 4dd0b4429c189698f267c09376cf9f9e8e2d15451a5f2cb8c33ffe9ce2f4d422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fc7f20de89d3d55509ed03a0650edb34243ff36e168ef064b5bc848569d4f6c6
MD5 465e0a86f50493186bf532631be4dff8
BLAKE2b-256 55d36bdbe498fdd634bc866b8344155349a49ceb35ec9fba6a28d64f212171cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b15fdee4b46adf97d642d3c4c94e0a81085dd7f74b80302bce469ab2f8093a1f
MD5 95fb54a85901fbc842412d38a9c195e2
BLAKE2b-256 57fceca1c08e26af176348f99a022546d20f42e997c9f3c085984ffa88add0f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 058bbcefd6b2aeb9264554c087f8d321097e463f86d28925cc6d7ecc592eb878
MD5 b5df4a33ffa6667b32df48aba9e9900f
BLAKE2b-256 10dd53e1b9c3c1da26a9778d651c3f87d6e231e07264d3bd335ab175cd0e21c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e760c5a72da2243848ac0550743c6066d2ce7fd4f67b70df072fa42e168fd8b1
MD5 f6c51046350ddf934d63167bd475db1e
BLAKE2b-256 510fe5a7ba435ae0bd9dd8133f22e4fcf1aed86a26235d18835fe195469aa3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c83c52753f4dcd9b505fb8a760fa7c6f19b52f8b0262325a0660139f0c02eb60
MD5 c9e46a4cde78c2d1f4d467d9ce413f98
BLAKE2b-256 505cfdc366d7aaaf0247df9f931b525547938bbd36c5a64eb7e8857422269fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a6ec6156ca95eb5bd7e9317a3741f8418c83c8fbf58ba974c35cbd336acf810
MD5 d853e5ea9336c3c82272262dc216dffd
BLAKE2b-256 8c167fee67f168f544d45455cc59d12da93378108303cb5b2274c9fb87e458c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b54c28854cd2f5175228a4c88df33b1e4cf765a86bb45e881053af7ad48d8465
MD5 9dd2e0bec855d23fe31f2bb5f91e2524
BLAKE2b-256 be6fcbe01ff123303b7eedd0af68c4017939cf5115ae67a6c7807b8998433c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74064e67dbd4425c6fe38b7b26a82ec8f6b0115cbd51546be0f77c2ded065584
MD5 8295403ec418c6c2e6d1c371555a9620
BLAKE2b-256 38d0bb3d04236526303712afc416155002f4dc4f533f7de7b3262b0ab56c5f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c53e1c644b93447c015c5cd454537a8742fe69478eb528f7051fcb5439afd16d
MD5 db5839d81106e4bc6c41650fddeffddb
BLAKE2b-256 5c74c3d6812e89b93590b0c6beeb40bd81f00cc1382762bdafadb002144abcc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6db3ce8a4763c7e925e8b96e40b932bdad8d8f04a497be44127a3f61cc5e5ae7
MD5 6c6313a6940cb73779405a1bb380d744
BLAKE2b-256 4da30c3fe52fedd170a57f1c5fcb7aeecf91c247539bc1d5a8e48b40281acf90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 db13c4b44e4b3111f91daf415fcb2f2e04e9d8f32cb637cdbb8bddbe09eed155
MD5 7bf0e8698a33c2cadc9e0e1bababeb2f
BLAKE2b-256 34d8816f8fda60a25b2a11fa8a9826c6b11caee122e7961b2dc04025ef9d60f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bf7041d02c2db3532a17b3c812b04100e66585042e529080228e29b2762ee86
MD5 d7bc2283554773c40e6797bf93e40575
BLAKE2b-256 5142e8a6ea171a111acc4a3b4b73ed579dda479cb0fcc8140543e76f312f1a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef0e33b5af23c9915f0e9837f9fb387e5aeaa9490a1641f8fa96cd362465f137
MD5 77eec65cd72d4a9755975a93d999a60d
BLAKE2b-256 2bfb2d95a56e9b07adb472b2778ff7e54e4d21364562d12b475ba04bda1483bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82a59a1d924174ccf27e08c1369b56defce1d77276c6cca2a543a30529b514ac
MD5 0fb56cb789391d7422cbf5f05cff5b31
BLAKE2b-256 2adcda0170c4f61a4042d0c1ae43ddd76e07e4155699fe4cc14b8e190feada03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 434a1487b75668f6cb1bebf89dad5ea7c46f761ae3e990fe43d50ecfb92b5865
MD5 d43cb5dcccb8353044de9997c10cff3a
BLAKE2b-256 f355710bebe999e24387d76e951de3335e57b785ea9a738f6d06da044d1016c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44a57be707fba533bcfbfd712ff9e4b722c0ea6860ec30b6f5dbf310e2448d5b
MD5 5f47744a95f4e9a237d315b68f137c61
BLAKE2b-256 0e30ca3a49c5ac1ea937f302c568c44d52054a9116dbcf07bb461795fb78fc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 317a4cd311d317813b128011cdd319b418d34ca80e2f5db756addf88141edee0
MD5 6885efbbadba6a499223c264487fc20b
BLAKE2b-256 6922ece7f59118d9db956c2a1455b34068032fd88d56709250ae08ba2b6b888b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4cd086ee60d3db67f8602023aea8e88c70090b3519ced55b4bbb820b808e8cb
MD5 847dc89a58c41c1437c883db676cc59a
BLAKE2b-256 19ac4ab7492aa53aeee76392322ff133e61a83212cb84de36c3b4f464130f329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 225b4776ff44cd7c05f30b2443aa6df9a082a8e1f0f1e8a6ea43df8486cfd0b6
MD5 af738c2485a02fc6237db2533d20fa52
BLAKE2b-256 42aefc6bd12dbdb185ec7df4b773fa87eb63809e52d5ff77b5225a0092c43501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94e4696f6ccea14cee18cb690f0a671f9022b7af2f457f8c107828a7c7c09f41
MD5 a2ea7c7f76d158bfb6a6ec151cd7d440
BLAKE2b-256 f41528e46e1315b20a146d8963b0993110698f1c5febf94cc36770649b905392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dfdfe851e456f171d551d80871cbb581c73e55fb807cb240240f759e90a3344
MD5 1f7a72a85577897e651987bd726c2cbd
BLAKE2b-256 26ef9a555eccd81cfddf1b5546db03314e80d9330721597952c9b322a29e05e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d21f2c35dd4f4dec5a6a7bea3d0a38581cfacf9a7fa402b01db3111f867c7fa
MD5 827864f8230514ad899a0953607a5e13
BLAKE2b-256 12390b5f7398da3fbfc673c0654bdaf5714f777aaa8361df3957b9acd0a04608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 073b1a99e301cb1a84676f08dc09e5434ea29267f1f2afb38e47f134082e92cb
MD5 d2d41e1d2f3002b73f78b6bc3d2ae9fd
BLAKE2b-256 763f83c48a5ed1b775c25afa362504bed48a6006f34ad201e36e8fe25072c0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92bffa82935b486cca3d172410505ebb9cea28778ec672d2407ec45408f956e6
MD5 c48a9c53ed27db8c99d526ba320592f6
BLAKE2b-256 d703b9f998287ee4eb0d74528518028d6d8b5f20c4736576406d89a85f57272c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9637ba0effd4ffa29b5c577c2f04bd71e3a865ad70df2980257c5c7bd202481e
MD5 a41d2b58263e65912e2dea845ee750e3
BLAKE2b-256 d98ef59edffda26c60b91e1ceb62162bc4ffb84b4377ebde2c42e461093f5904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c0ab3d5e9b5168ab6d1f1875d2550d9a3e5e391007f4d80a7d62851454dab66
MD5 abb8622d08810eba227429d0ee7f7868
BLAKE2b-256 7b7ccc2666363cf11ac3076876e6e446ba5f1485eb0f0d0bbf4882f0bff97a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc4ef3254aa2d657daac67f879cccedb35f40a8c3630d74829a9f16af56c96ae
MD5 003c14d71fa421e5b7e19527561c39c6
BLAKE2b-256 6f77ee0ebebbd44818275baab3f7c1cc3c30022b4aad2841801267ba2c7221d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69b8caabac01d4c00db3db8afbd22a4e3dca9aa4d2044d2b0610deae8c946312
MD5 47129e418d652029518caa195da54ca0
BLAKE2b-256 c680c459d74864aa3d0d59d17e4539e182101fc691c1b80451337d3464292172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b914f721b093c808abf47f8d001ba9152d72992c186dba7cf192a53b382fe0c6
MD5 684a3c68bb506671abdaf67cfc7541a3
BLAKE2b-256 543400492e8152320d29ac5403ea8a9a3ef16564fa73607324cc14d82c9dea67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e228d23cee602415e6f693fa3c82c13be6075f3645fb34777c753a911886a376
MD5 a4a74f0fee16db7f0e95cd44340174d0
BLAKE2b-256 9e8e2abd0508eadcb8bbf566c2abf7bba328f34ac85e64d2cc0c0cbd5afc529d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59f0e0331a2c74bb1cab904f9557bfa3ce4f684fcdc9a4dda14c75ee9c482039
MD5 bd0b6983f0dea0bde889f667ed8aadb3
BLAKE2b-256 4ea6b86294f947ac12433400e8f709850ce691e6a83d1c539830bc3b1757db49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b9f539717f6fcb704ab31b2caee2f1e9669753ccfc095dc36550d3a733996f2
MD5 fe084fbc04b1d37c6a5d8e2f7ec9bf47
BLAKE2b-256 3cbfbc1b774c832ed5d994178f1c83463f1e778b31bf19b8617ad036b0ef5298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 294fce29cb1455b3bdedaa8f6e4358cc473f8ab89eaf2a6426db62439d6a79dc
MD5 fad70bee1ee37a2c459009dca3c9cb93
BLAKE2b-256 ae9e477243cd8c76d0fe76d412ae2f387c28e4dcd63e806e40f086436de87d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b849127ff6c642c45400f6a7fd12e613b6850c0ba3442af8fb51fed2eb6b4832
MD5 7cd4dfe0a02874fddf5ce1365f8878da
BLAKE2b-256 afcf38711de8df17a96b690abb21a3c5a1941d27c1c4e062d6b7424a17dd627d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 426718c2135807e920a6a915a8947ac0a9120db183dd93139551e22006610ed2
MD5 feb61ddceda79364d421b40626c257df
BLAKE2b-256 adc6eb218ebfa44643eff0375ced7770c48de7e22641d4b41a00b6f52889423d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6970104a3db4b26b2d156ff332b602157124214686dc8a28170379a596cf8e98
MD5 439c7e90bc2ed30f0243fc80f89c67e6
BLAKE2b-256 f64ffd0298bb95189bfe30643de4a32cbbd398fc79f4dc30668dfe36d19d361b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bea39fce6cc572598faa16f5ccb5701b33816758c64030fbe60c9f717ca2fbd6
MD5 bb872f3db4e1a407c5832dd655ca25aa
BLAKE2b-256 d9a2b7c230124c2c04adc906a9abaedc0c74f96e6be54521036f190889375cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bceb3cb2dc0ced2322ae7a92ba501218c590da1c02489390dfe6808b1f22f18
MD5 3c3d80d9d1b3c33a7859dd024cf43856
BLAKE2b-256 6bf2890c158fa69ea8a4b789c7f2eddb4fd4d54fc9ff691dd4705280afcb54b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 992a694246de40ef65b74889bd3acbe69043f7bcd920bb8d81798fffdaa26063
MD5 f5cb060cb7821570cd58b578019a9355
BLAKE2b-256 5e6b761dce9001041985ac8670dc6b2f2bb3cfcccadac069e5807d2601bd3ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 184616a5bdb5a11012fcb2f1f70a6f0e3a2783ce86f9b89b4fe0850fc8cad829
MD5 eb50dd829b035b5d1b6b28f87db747d2
BLAKE2b-256 f973ede0234b03d713bebde96c0c63689d5b8deaeec77de346ffe24fb6b6853f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9582f4ed17098f3b199f158e71dd416b5da132fc5ea97d7027ea4368848ab2f
MD5 43437e61d03baf2e541481422fdc2400
BLAKE2b-256 266b588d6c673fc0c9c042edcc35cc291953b4e2e7b0512a298dd1f4b34caefb

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