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

Example Usage

Single Waveform

import typhoon
import numpy as np

waveform = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0])
last_peaks = np.array([])
cycles, remaining_peaks = typhoon.rainflow(
    waveform=waveform,
    last_peaks=last_peaks,
    bin_size=1.0,
)

print("Cycles:", cycles)
print("Remaining Peaks:", remaining_peaks)

Multiple Waveform Chunks

waveform1 = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0])
waveform2 = np.array([3.0, 5.0])

cycles1, remaining_peaks = typhoon.rainflow(
    waveform=waveform1,
    last_peaks=None,
    bin_size=1.0,
)

print("Waveform 1:", waveform1)
print("Cycles 1:", cycles1)
print("Remaining Peaks 1:", remaining_peaks)

cycles2, remaining_peaks = typhoon.rainflow(
    waveform=waveform2,
    last_peaks=remaining_peaks,
    bin_size=1.0,
)

print("Waveform 2:", waveform2)
print("Cycles 2:", cycles2)
print("Remaining Peaks 2:", remaining_peaks)

cycles_merged = Counter(cycles1) + Counter(cycles2)

print("Merged Cycles:", cycles_merged)

Testing

pipx install nox

nox -s build
nox -s test
nox -s develop

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

typhoon_rainflow-0.1.4.tar.gz (11.5 kB view details)

Uploaded Source

Built Distributions

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

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (627.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (657.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (724.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (634.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (489.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (628.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (657.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (724.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (627.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (658.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (724.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (604.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp314-cp314-win_amd64.whl (260.5 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.1.4-cp314-cp314-win32.whl (250.8 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (491.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (395.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl (625.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl (655.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl (722.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl (633.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (626.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_i686.whl (657.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl (724.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (490.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (394.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (408.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.1.4-cp312-cp312-win_amd64.whl (259.9 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (626.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (657.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (724.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (634.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (490.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (394.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.1.4-cp311-cp311-win_amd64.whl (260.7 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (626.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (658.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl (725.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (609.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (489.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (396.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (410.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.1.4-cp310-cp310-win_amd64.whl (260.8 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (627.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (658.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (725.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (489.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp39-cp39-win_amd64.whl (260.8 kB view details)

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_i686.whl (659.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl (726.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (635.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (490.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_i686.whl (658.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl (726.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl (635.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (608.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (490.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.1.4.tar.gz
Algorithm Hash digest
SHA256 c90527995cda408946670855eafd958e1fa64c62771574645948131a1344067f
MD5 e56b57afdcbf19b982cd31e3140d9258
BLAKE2b-256 dd7807cabbf02401621b6775bf7860df62639088c6ba18210e8a8768d52167a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc47a5aaa024cdccbf8121fb797d3606f00cbbbf566ad0b4a5e6dcfbb561d8b3
MD5 ca87895601b93dc4fbb1055ea10b4c2f
BLAKE2b-256 cf052cf3b84838b29166a31fe55eeb60cede29ea535056049d2155bd9e9c5222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da705e77ba6af12609aad40a0bb8f37219b2f3b1e4ef6741542a37129929ac6b
MD5 e748b0f678dbd26b0f3c079292c29f8f
BLAKE2b-256 88a03e0fdde8641bd7b509a11d5c811143ae7565db9af9f70f61105f358d2442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 280d77b4bccc46f09d789a1c6411afa8418b4185900e89186a1dcc6e02c2abc8
MD5 347aebbabb7872dffd0d0494fc5ae373
BLAKE2b-256 6b7edfe90a91d8a1312a70c82bf830f5149319ea2e6b4124e3b90dde0680cdb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2589642d35bfb74eae70e8c4088d48f2b07f4e0129f5cf9bb88ba46276ba1874
MD5 675e8cc5a25908be3e405a1a3cca7b29
BLAKE2b-256 e25e300fd0c9a3cc5c1cef4b858f52ca7b025453cc28f6809399438a4d355e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 609254fa4679797b5c46fbf95e0f3ccda5af7af41cd4704ecc1921c863af964e
MD5 3999ab2ce4579f44b3538f2c49e13613
BLAKE2b-256 6566c2b419ea2698c6e787fb1e1af2c29b2a4bd19183b788d120f0ea81d5537a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3521f9e3dbccfca3d7d876aa30c0bb7ec9579d836f08fa6e63d128aef6bddc2c
MD5 5a65bf91731001b382bfd23ad70d05b9
BLAKE2b-256 e30818a8b7a78b59bdff2223ce8032ba22df35858e34aee241432d78c9343a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11e611c1c63942a19fc07db430a7d5d93c51587931b9372756a9d1d38c44a3fc
MD5 40befae0a39cc4d42040912378d97fc9
BLAKE2b-256 0921debbedcfacb731580bd640fee837177ee20e4962f300b3ba886aaf422b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a38fcb1b43673172a3327c71e1b8ebc64fd39486d1efa7732f22704cbb3d379c
MD5 be57772f168bd1bf6b256c11edf0cf71
BLAKE2b-256 fde399800071136cd9d3675aeb12fa388b85624302c58e52f6f22c1cbbc32cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78813439fb3a44fd7897cb598a6d0a79c30b97a4452c9e3201da16cb7493c82e
MD5 690e4ee5c07b6087951362a19dcb683d
BLAKE2b-256 b369a6b50d6b0f91c8a9a7c533f017e23906d9657de5af588e18abcb9e272642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b582c362bb16976515f76c6d47590ef894054517a8a1595433f1a031c23d76b1
MD5 cfea411f153f07df9b0f149726d590f2
BLAKE2b-256 b73747fd3170c3c140d3c825c0e183c316fafd1b01a4db2591fcf0fa8307871c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76b1f36a61300b8c1c51f844d0bfe0baf73c013981cd23b3a9fdf648759e7410
MD5 83ad6221b45ac7515e8e1226df21eb8d
BLAKE2b-256 77885dc1a4ef050f8d6bf4d8f7eba51ebf5428d1a3201a4ad4abcc006ebd8b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05c449abb8ff3cdc3d7d643cb6370ee8bba1f18f845c335270e46cd57b3452ab
MD5 3fa663ee7be505f1c3a7429f81924564
BLAKE2b-256 4b1f08bcf1def73479a50fdb93c65a566340d608c66eda23032c50bcc03f9f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1682b8d6d54b8c3959972f3ef5d5d72851d3a6ee7933a2a87dd1831012831e5c
MD5 7e5c3f0d2afe16b3d65a1fc4dd6b90b4
BLAKE2b-256 855f16eb55ad868f0a22cae5c5d1110de50f17a86698e6e74adba6aa232eeb09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61ab3ce0c66b716ceef493ce75857487f85e6fc01cd264305879a2e50bae48ee
MD5 e1c0e6fd5367b4e315b51d086cfd2ec9
BLAKE2b-256 2d5b2455cddab0d47aca6ea23901de1f1e7f38c6df52e9e18e514c8bbbc31e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 460cb5b055f37f2fed7a0338462f3fc1648f8002438ecb6664f28bec703d1a01
MD5 26df6fa8bd1f3f1530966beafbb2a963
BLAKE2b-256 8dcf2a6800d5bd57354b72a70927940bb1e66727b61b1991972e59f91c12deea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89a99f1442236190f7b114e528490fd60cb7486f0a95daaaa4a7d17cb24f3710
MD5 6b191ad07f19ad98f3ae27dc05f5ead0
BLAKE2b-256 adf418712738134bf7feb989a6dd21d74a33c95c4e60c1fce2e3655242303d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd66845952bc5445f9a4048791965ffb89185e9f8d0c192700d181ec2df36131
MD5 564f7e613b8c04333fbde30190da1d92
BLAKE2b-256 f6a0759610507b8663c7369c686d4dd2537343103589abdbb86faf89c9ad88ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ced17847ed50381bf68bd66990e6a9c23b2c8d75005d4d44ef32914a3c7cb7b
MD5 80afa7ccc1e4dfcf657b01a824292704
BLAKE2b-256 9cf6ef6a7a94919eebe6d0ba9edfb20a741b67cf6ce6b1c0f4be049def5f302c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2aa41103ae5383c740db5591e22e9fbd609bfcebe8821067fbfd30c935a6815
MD5 fa72af1b6621717ce6f8b6d36ddaeac9
BLAKE2b-256 e0554b66ecb48e2174f23f9e86d0e1176dbfbbea1af9664585b7b2a2680634f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 160f5a9267ad5b344ca0f2e3dd06d15b63ca54f9cb5f714e2fbb21d5944f7d27
MD5 965a5d5c39dfe99e07369ba630bd6a6a
BLAKE2b-256 a748490d2c9ad1f5a05d00f7b40cafeece07033b625ef32003c8a7ab5f655d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1294274af41d1f895ac3429d81d4db46145fa37106c6b43b8d276b131808498
MD5 ddbd350586e5afe474ddc3df555034d1
BLAKE2b-256 c3a0e97f712bac211203e6637fe3ec4f79b3247240ab180711b848a362cc0bee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ada8e4b43fea3658bedbbb5b4b10260f930befb0de85bf49b2ddcf0dd13105f
MD5 16539195fbc0ff264f20c49a1da83fbc
BLAKE2b-256 1f995ca9e5d14ccf3b8a9e0115a11a1ae44440c54ee23a836687b631a911fe08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ec23d93194acf474f3026b0f9fb9a8cc7fcec03520ad7abf3773284dc53b334
MD5 95611920b61f16ae362cddef6fd3f96e
BLAKE2b-256 ced15b52726adceb3a6d18c7e514badb706e87870261d96ad0ce0f37fe2df680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb58cdbb0d1ea6468590f69062ad1b1b95bb28f404b70f5e275556a9fb17ae52
MD5 a3fef9014313d576e8a75d7d090f8e08
BLAKE2b-256 f6bfd2fb2730dfcb31744af813430a0efee082f0f64af2378a2793817c4d6c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c51eef3fb354b44560ffaacff19ea4f52888dec89a252a87d417b001bfd52350
MD5 087ecd6c999d4c906e81f0d9021aa1bd
BLAKE2b-256 62a864f6cd3b63d06676e7f10a168d727db841ef2fce143b92776faf87251734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b65e785fac8dc70d9c06398eeb012d7c2deea9dcba23e201b5b5a7bf9d1afd4b
MD5 f5e3aacc45912a83378d3e137c46bb66
BLAKE2b-256 28fd77f023b56c114071f0bc6ca7bfc95723ec2a2d7dd8358b4f79112c28f958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a4da0f13affbda8f847ca388ce1336511e473c00a40079fb747d4cf923a12cf8
MD5 afd84156fb9f621a8bfac692a50b42c5
BLAKE2b-256 c0920cc97b4828ab2e433498e9530c5f36d4223b86e465403492d93a5600637a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 726f617932f328603dc8842595c1dc1c9257f3fbf1fc54554bd483b8009e5de0
MD5 8caa4f25e1a767f3311100db956ed915
BLAKE2b-256 d89bf3516bf4f73a93958ade509876b41ffa3816b8dc335845778438d87f423c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb0d252f2f7dbe68b66c560c9cb59853b271410e806e7240daf1959b5423af0d
MD5 af3a26a1bad4c4d4dec723101a6ff45d
BLAKE2b-256 82c80a09272ac8e4960e2f411d9041602b74d52d7e52ce0e49d0c02090cdb72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b64e8bd4397514dbddbb7b1fe3db04e4f06bfbe6ef6fce78ecf1d88979675e40
MD5 a1e37bb479173cce3be323623b52699b
BLAKE2b-256 6311f455b4c4cad01dcf8ee461283f4defc5751034dc6a92e4a948f1fc01a272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c797d6211902187f084803bc94f2469b196246e4651586814301ea641e2bec6
MD5 b0aeae6eae733d29eb97d36432a049be
BLAKE2b-256 0e9fa8bbb87957047300c1de3f1980ab7764bcd01194f9fa87e3af5c52d57183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 470e7944bc7100b47613bb4ef03811b5c3f9c88df93fc1f9af58dd28fbea0bcf
MD5 76a778ba2989b77772177740c3befdd3
BLAKE2b-256 4aa98a353d00a4074454a21ffede64ff742cbb339874326c911f8cb5acf7283d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 308a923775377c39725398ba6dd83be944e7729b09670004be2d57c3d7be5ab8
MD5 92f82651f286102092a35b082df4aeaf
BLAKE2b-256 10ffaa963416e5d9f7e025a5707af50fa706cd8ea406bf9bc4f7c6a1552f41bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48fbc0366a20e7c4e9524b01310c8935e8efdebd114efed1bd83c67e5a8134bf
MD5 d2edbe7f18a2c8694f0d031874234554
BLAKE2b-256 ba01b5d2d6b946524da1f57899db3ca93d070814c440ae806d9d8eb90744d8a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02ec24c58b8df1a715f87be802dbb0808da33aaf69407a5ae7abd2b56451664c
MD5 c0229974bec105ffaa4aef220492dbb0
BLAKE2b-256 f71b604f26b2ddcb4f1ae1b89aa3e78905f82242e576f5c53702069a74b13b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 941cfcbf01e7a1c1f3275f19f7e6ee7ce9bef526ba7c1ef0210e9bfb9f1907b1
MD5 0b21e18db212cf367fbbe5468cb99a62
BLAKE2b-256 1c7d8127f0fdf30468f185bb39245bb5ae96c8f9b2bb21d796de5d2b146532e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbf4d5aa89bc214181f22154f2b76e3b10c4cb97cda18964677de56a3210fd15
MD5 363cfc91ca6376be7bf90a39acf6c4eb
BLAKE2b-256 863135e61cc287be27a0506b56c446070a552609b0c2ef3cf84128e2ab01e318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 499a78da4785d5a9294c731940aea73650c907ca7f93900a6e1cf2707bb50ec1
MD5 d9f088c8157ec935ae5d9f8f7ad13f54
BLAKE2b-256 f9fb46871ddd424747fc53ab46249c524498e9e0e162a423d69d599736af0481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36b0a244c538f50c9fb80b5ae78837fc33122a57a7d5b2dcf5e974e30f18f368
MD5 17de513a7452aab0a058d211cf0ce34e
BLAKE2b-256 8ada6977dd337fcbacbdccbfb6415c43d909b0ff628af14d59deb525e1c1a7fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f81e964d176e8b2c3a113289404a12fd15282e2ea32c18be01a77a67389b4854
MD5 8f4d103275ad603fa28051383ca70f89
BLAKE2b-256 3e276c0f4e4390e09ed3ec6524024aa04b24a69f1a661cff77dabf5bd66a39b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c161609c4a40a7c2e52684ada9efa45ecd6080323a0d663d5e190e16732a2bd0
MD5 ae014bc6718ffb5b2308e732f68c4352
BLAKE2b-256 326ab1e614d4ce1da1825b3bbe96d471397ff80af692143b37523e9c83316d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f35c0bf3987a59f15265a46eafb217da45f12b7ce8b15654a118cfd67b7aa88f
MD5 46c2d7b057481bde5614afbc6375aa14
BLAKE2b-256 fa882f25fc28594a3d9bfe06cc5e82fb8f1818c2e61ad57d06033570e13267de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bbbdcc45fa15982d366cc81105878898706f73d5aea4712f0bb3274718dd3a0f
MD5 ff6d6c1eaa107ca5e3b99bc51e6e052d
BLAKE2b-256 288b984aec852ed2a2c5b00f42b9f6217d7c41970d24bdbb24354e99c1c1c203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d601d7d699dfbda91a2401712cc275633660121ac42dc094520cc74b808062f4
MD5 a9e47704c7b1af188c3d8348c2621390
BLAKE2b-256 8ba46e208114e2e52a68906b80f85bf9a79c4fac434f5b96f5b1dac9be5a865f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85448fe47474227b90526bfe05ca0260fb539ce60ce4ae3a521ab2501ecd486a
MD5 2b5570902885624850af56b0ecc5904a
BLAKE2b-256 60dec47ddb88f1b4bfd9163decd402cbceb1ac943f0544b8c221c43daa33c372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6155dd8a0f0c9b380312c0fdc84b210926c71fc9d5424f577b359c5eee9ffbcf
MD5 0b23352dc0d924dfe7911f85447d1536
BLAKE2b-256 8a4f2b277150a39ec71cde0657211e4864a636f016a3251a7bc7a4fe62f992ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b93c06a7ad1beceff1e2e0d5f720211156e0823147320740b23fe3af71b8be1f
MD5 b4daec77a52d9539f23256ed1514757c
BLAKE2b-256 bc2ee3cf78e9cede20089888c1c97645eddd67b727eef59095bf92521a41842f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bcf4ec9391ef906d7140df9011f3131417b4eb09133ed026c5d31c955ac7a97
MD5 df55442c4f49a5441ec1063e4e1274e7
BLAKE2b-256 09091672a3b1e0432098063c0e752cee09b8323e746fa9ea507b7e3de7c2dc0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a195d0dc1f34c98053fdb6e07c142fc58b5ad056618edcddb035baad15f9ea6
MD5 8ede9e47bb6c8fa3cb1da04614e82810
BLAKE2b-256 227cbfbca9692b8abdc9feaa7e4ef9354ec2815d4a4272b0170801822a89071d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed5f859539ef5f7cf8408598ac186af95debd2376e3b719f6156500f336c27b8
MD5 a64b19288d473feeffcbfb4c0e002678
BLAKE2b-256 1a75a0dd03eaeac13c1748d9e2a5d11d3c766423c18d73dcff7b4888807cd09f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48575cf5ff4ee49a15f9a07ef0a88c6e13bbe8b711cf3e8ffbc9a6e46b526eba
MD5 96f139076884f75cadcaed47d2cc24c8
BLAKE2b-256 06b4e420d55feb0d9404073b424242152948064f1f8cf6725e4fdacfcbf67426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ca47c02cc08c993b52743b1836121dfaafddd87eb431e190123f0e8bb64c133
MD5 04abaed2203b629792cf81dceffa5a04
BLAKE2b-256 ac001658451c97870dcd8585763b40a6cf80ab45a7da499a95bcedd21cb20230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58b3f63fb652ed2a004cce5c19287d2d9c20446ecc715fc4b31769ad90dee74c
MD5 5c86a24a0a02c0921b8c965ae9f351f3
BLAKE2b-256 c052f0bbd1f97a37f096c7eda7af057c6aa98f15121fced0f260d45ab07d8b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 285505ae87233386da798dc6485e73e14742de7ec897750674f5f52a43aa8c1a
MD5 5606f4c471b0cc6171456e2377e169f5
BLAKE2b-256 354c6ccb0eff50773325f22aaee93c8770df53deaf77d10a35615b15b892ec1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69b02a06c2c9cc1445d7039d1bf92429755b0169a8c97cee6dbe8399dd2331e8
MD5 3bf4f8f8914af8c212e384d4a1ed50cf
BLAKE2b-256 399b9a27663ad638db6ee71331d39d449dca7205fc6d3dba61fa4afc633f38d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bf2c4dfa92c9330c446636f446cef111df94b985cb2ae0f68c52ca3b5298d7b
MD5 94706ccb40293930b6a9e38b956ad691
BLAKE2b-256 7d76cf721c426e1371d51a05afe22c62e3669a3b6ab29261f2a47286d9bc0adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 387e2ce96576bf11ca4dbe6351e9d198b59f767201faf32a6196b25755b3b25f
MD5 84f0778495c47d85c63a682c157a30ba
BLAKE2b-256 c30953e6e1cd65298cc96991266564a5acd6818faa6293a42a9c82dd71c126fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 051a1c037e9ed9a6867ceb2ff1784cc9755782480adee1e2fb918850ca2f1e3e
MD5 89c6864b660774f40e277c14b37532aa
BLAKE2b-256 559222e254620b3e0db37c96d1296f5ed8a3f7c08ef988d050731549a19f6697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c9103a51bd65536dfd5472950093c5b1bcdb372838edb5246c0d19c1bd85be7
MD5 8edbfd1b5cfbb3075fd24e9aa5e090ec
BLAKE2b-256 917ba1233c74be732c17f2c19cebe68fd258cf91c132e8da2afc3a949a03ad9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a57bfe51d24925f5603e44aa583078e2ad8c84f97d5f657cd3bdb087baf1781d
MD5 41e39d3d1e2520595611977640d71f7d
BLAKE2b-256 03198feb6428a4a75bde07a75e16af8a835d389aaad44ba1d7d1888c3530f302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dca70610df5720626c54310eea27671469d99b349e4b4691aedc27016b8bcbd
MD5 b8ca372c888fe29dbf305b45becd9725
BLAKE2b-256 257c0a61f319d189a41200fdcb837e6d3941c12a086379de1c6e88dd3161e1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c447591cf0459143340ed4e8dddc14c63f408608dc716787998dd758e8a75ae2
MD5 cdad399a31d2a1b935d6a54de7071382
BLAKE2b-256 d80f2c263f905b1d52a5a158ea72805da64d741277106e7289a8931031bce3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49860e6cc2f39a51c3273512b79c120b4e894f98cdc03b22afed450995dc0365
MD5 8d7a6525628d884650ba5ed27d553bda
BLAKE2b-256 16fcff165eb7a76ff3e7f0d8c937aa3516b9395efbb47554dcd3fe31b5e725c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd7bfb5623e3df0a71a8733fbcb2c986cebb753178ef239066850b6866316d9a
MD5 88951c29db1425abbb646612f5ba8a16
BLAKE2b-256 a92a1df55ee4187097bf1b1a34edfa5bec9d52516156819b06f1250d129657bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3b03db527aff227401af4d77943650c316c596d485489ad53f58e3c279d7723
MD5 5dffda62af3a6f3a214af8b10a8a0770
BLAKE2b-256 71be54ada4f696a496093830f564c66b5b0449af613c5900c75427dad23c1732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e699b5a38c794c322a586333c6f2771d963cc4f62fb7a9a08de62c0e97e522ba
MD5 a522b44e0129bc9133d695e48a6b1d6c
BLAKE2b-256 383e4a294e3d4adfa8ca2bd3220b499308ea3c7447a426cb1cd65b3ec27c7321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a876dda313fced0e999d0e4065a6cb7d9c94bcd6b641b4c4f1d3ae612fa05829
MD5 71ef7a10ed97044d04bbcfcf3fb79f18
BLAKE2b-256 17a2b1199e7eaeb9aa564c835757882d058f499690ed0660e6fc3a8dbfc9efec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 558b59743d0cf7153b6e6aade154c36f388b8f3035034d3a10e082eb781fbadd
MD5 28fdbef9dad8b799b725458a81187672
BLAKE2b-256 0014beb4b822ac9b7d8849286cad82231acc0028998a0a54fe6a327bfbb52035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d128f2a2b0f2ca84b89270843debded4df7c076627d6b461144f580bc6c1229
MD5 67d6ff361cd42a17cce55ced13d3c04b
BLAKE2b-256 1d69b5b38ac5fdf0b440ea1843709c90797074e03ec9d4745ae4a9f037bdaf60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdc827050b2af903551a5c6198edda4dde84aad50368c2cbfc9295c901cfcd0a
MD5 8dc17353984184c87e2c173e46bd2f76
BLAKE2b-256 a8d68223b619d653ca478f4b13b0f59f423301dabac02c65e052ab475a4e932a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4acf8d9999178250cef83f43bd3bd085f10a986bcf57c162faac868878e3bc6a
MD5 73f8ca113e6afdb918a1caa696b095fe
BLAKE2b-256 291254685f4fadd88293355bbceea79ce21edfbd98fc2b360b6d46b2c327bcfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2253720b86c3692a4c2d6b9033897b11b65bfda24f4bbfba13e9d05774dbd5b4
MD5 402c78342f914b0b0016c1466b1feac3
BLAKE2b-256 fc214c60108ce76bd1fce2e79fbf6e2d8deca0a6e1a5c910ba86f22fc3938eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9dabfeec90a1ad7e1f7ab8fd0607fe27314700920d21436c5af797b24e401b48
MD5 f3ab837f5a20fc070170f84315c58f05
BLAKE2b-256 31fea978724f138ea134c89f52d75df78933774acd413215b8679f497dc19b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2d5cac8dc72f3cf9b861cddda3694085efdb87dbb53c2d1307632012fc9bda0
MD5 02c5c14fb5e07b16d8e5efdfe4215cd3
BLAKE2b-256 92cef525e7a6e1ade2fadcc019f8fc70364450b368d5fed03c6c2263a0979a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9cc2dbcc1e0e23e6673bd3cd47b5672bb4538a87a6f5d42d191e9cf34bd2c30
MD5 7de623684db58bb3e22cd218518ec559
BLAKE2b-256 7b5c9ee91e16749083c11579c726a484ded2d5c11026a0110640e45744116d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03c16573781b65d3585041adaf11445c2479260f3a904f33a2e616ddbefa75c9
MD5 79dcdb0cc3deb7da6020837e6f8bc1f1
BLAKE2b-256 7b1ec8e4f108f7589a602e1ec5a4853bb3d94ddbe4964d2a3710b4e2c7acdf95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01e87b185495329c53deb16ba1d3668fabd7a22ec0e78f44f639844e07827e93
MD5 951ebb73bfde34b0b3da0b464d9a7497
BLAKE2b-256 c018c06a4b1fed06a7083a25fa3794f1826d7eed3b4e045ffbbb0a8e5db03a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83d731a42ca16dd4d5d470a8906a67a5865741c7d4477fabe1152e05f65d2a65
MD5 09e9d283f86d630403bdb2187fc9e1f3
BLAKE2b-256 ed558a036e0883a535f967ce55d9d1c7b0b805cadb247e6d4f55e98e3f0f4fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fa51cc95d5a4a7507caf70c4f25bffc33e108f26871de2028d3b09c6df5aa44c
MD5 1b65abba63c7782a903dae90c19ebe4e
BLAKE2b-256 f0390749ecc58ee7a70bb17e44fb22cae9d0966836869bc83880bb46993e7911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8c9d3e3debab74a99a4dd69fb316d17e1dad42bae7b27971de4388496e2af13
MD5 60716c8c3ba86f6e42c2a37b10bb6885
BLAKE2b-256 62c2a8d2bfbe5e04b7e996cbee46b4c78faf768af6e278c603a6165ffc6f8dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bdc70d691460c281364fe51ee818eb68d82dcf353a30b20aa19ef63c690db002
MD5 adedba22f2a3c9add1aebf4f654a1409
BLAKE2b-256 1ecb99891d8fd44cfbd224a4555d733cccd62ce75b3c3ceb95c2613de5540c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 05d1f74ec7c3b335728d4b5383a845352f97011f5b3d433bc8fdbf9757fe895f
MD5 59622080e9d96bf8de04f1bcb79fbaf7
BLAKE2b-256 150fcf653fb1ea708f96004959a29e12799301faeffb3a73e45fef73220130bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9448e7f07e1c75ee5c0254589392863ad4577be1f073f66e29432e1cfbac1796
MD5 093d2f45f1c2f4e5ef8b8309b5ae9ce4
BLAKE2b-256 a19abb5e72f27fb80eb245a2573e9b8507c9e99b523c2fcda24634eb6b17ec1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f577668b5c5641c940f707dd26bedca229db565a4319a3fa764a628826bf876e
MD5 0aad40faaf3b65ba0da2b0579295728c
BLAKE2b-256 540ac7bb77247b0b05049a0a4e0a41a0cddb03b3a5283de5a5ea724d87ba983f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a3f046fe4900d4ef80deae48e74f724eb503724ca8a36ee573f3ba3fe674a33
MD5 dc4a56136e42f51487e89aa457b629ee
BLAKE2b-256 33c20fb0a6d0ed4c2aeebeacc091e981c2968d636c73298b02494b8bcb285943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7176f20318a193c73a73cf97857a870df5bab31c0e802b3fd8f3c66939aac7ed
MD5 2c99416d90e18b63641e2e4a14c7ede2
BLAKE2b-256 adf3dd451f48582a0dae3e5f21e42174112b3b97a99d317d9a8d6557a91cf1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8843dfe74d78881dcf4143e6b6a1774e5bb0861acb815a67ad24a70e31a56fb7
MD5 01d57347834436b3f55960e5896f95be
BLAKE2b-256 55d9a19c4045d66108c9c21541c5a23887979e358e2fae53ae6b6c1743edf0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e29800521a9f7acebedbf69e1d073f719646d341ae20a1a8e8447429ce8dde96
MD5 2bc9269ce62ff68a3baa9fab79cfae0b
BLAKE2b-256 237bee26f523c88e94f36eeb0cc2bf28f7f240842c3cb07137c70361b01d526b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2f4c7b1ed2c69db42932911bd8473adff300ad942a9f27e008c7c16d51fb5bc
MD5 40de8ed27648634e1c86f80fe400e223
BLAKE2b-256 2d5ba6a5c1c2da6f626a9329a697ee8dbd3294eb1be72dc9459c56f32e8420d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7133c19e2678e124dace348a7893c3ea3052417861e6aee2e642973f09d4bed0
MD5 bdbc776a850b598faa82e37b9e703c57
BLAKE2b-256 7fea5f872eb8d1f2e1d3b01cb82ec92398eda82984704843ba1fdc34632b0151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7f17579dfc8dafe2713b23af19e6e10da4e3296089756269c0bb632bcfde8c9
MD5 4a9637378bb8122919e56d73380ca28c
BLAKE2b-256 3679b993bc7e6d19e9966ecd293ad9f3e7c4be1153c29c2c82a8646ea2d3f0ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a68ff347cdd8f54371d8a7710232dd277be3ebf33b0bc47f28739731d6edabaa
MD5 f19cdd073df43027b89355c7b427af77
BLAKE2b-256 4929455601029372feb30fd0b4d8bdf4a540401b50fe5e58201cd3f5a6812673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d6f4daf53ecbb4a528cb824a9a7ace8e55caaf40ca0f0abfe71d4934de1295d
MD5 9f063479c8697d1bd5c9c3581b4c9996
BLAKE2b-256 83ad053cf2978df4dba91f3377a6a150bb8b25c1115cd4b4e85354f58b5eb2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51ea162d20607b8faf70ee81d95ef3948d76a94a8f0e6392419834d6c09ada53
MD5 413fe7348bb19de8339387dff7f37797
BLAKE2b-256 e2bcbebf56ab398d0a173f44ff2ad1b2cd406620ab2aa7d4384b62ed5c534db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 053fc7b5f522dd5f56340e81e3faeecd207ef649b47159a62581184f39937446
MD5 231b06b5c7c96fe906e83b9e0acf4e0b
BLAKE2b-256 ceba71998540a06b784102f5414ad579d1a4150b39ef678646bb8e60a5b2455c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cc7bd3601f2e759db5375e91e793dea379cffa08ae07f0a5fa2fbb79e67a457
MD5 91ef28853fedb4faead1ee3c38d3a018
BLAKE2b-256 35a4947ba3dcfe6bf80fe77c2b21219289b796c78b7fe8244484751ec884251e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed5d42c3b00bf0dd893535365a9d8b123e5f6d1137b3fc7267ec292732817ad0
MD5 dd55ab3d4096096480358c4e420ec6ef
BLAKE2b-256 228112836280a4ea8bf2e2332028fb1e4205e88ffd53cfeaea052f41608af74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d11bc2d9aae11c04a0d591e22190f95323bd1ae237274176083e463e2fb6ebc8
MD5 e1f147554870abe987dd829a65ea604f
BLAKE2b-256 659b86cca37af15d2b0a3530ae62fb940a7fc3e23a169ecd3292e21255727ef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44a2d637159e0745764bf860cc4c935422efd727201991c8600629d0a8357e93
MD5 07aa7ae5aef99b6ed88014f3eec95716
BLAKE2b-256 ccab863ec385219fd6faf64608938013685ef3bd87659ada229de3588669887d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae297a2c0f654359811fca1d040690919b0f83c854f33ae9b81b05a37cda055f
MD5 5043404869b800c64f2b0fa1f3fcebbc
BLAKE2b-256 d2907ea26e8af1ca202e09395043a87b4f156b1dbcd74f9d4229235cbae888df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 541855f5be27c66ac68d85ec8c826a763112cc50d14c3b255f835b46e159b520
MD5 cb111dcd4325c6a6400db22c79d6b25a
BLAKE2b-256 05711d28e198cf0aa34aa363030ff686982612aedab3f6773fd35c89a26fbddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e317f6698ccfbf0476ecca25dc9e41d176e7c85f4fc573ae5593c69cca50e6c6
MD5 7daf554194506f943f2e70da001cd09d
BLAKE2b-256 f94c3e72ea5334c3ad9151f4117792b8c206dc1e9833aa2af265a1e8f0ae5067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 31927fba027b6bb6e31988c17fe53a540883e16db8d4c3459961706d65bcb7fe
MD5 231f6a6b1c9cbc20213d87905ee2c32b
BLAKE2b-256 5ea1f1f6dc787279d71d3316d8c37873e3ead071b24f75dfe7be99ebb0266531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5485ce86d79bb812628fac1fcd3f481bdd8197ac7ad8d015b99a434e24bef440
MD5 d7db7eceebe87e447fb99fe883d05301
BLAKE2b-256 fdd7ce855f2952ca4ab7228fcb18aa5818a178c017620895b342729c8f6148cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c9273f7aa182713b113341a9c26704830244493012135a6f3267ce2b6277ef0
MD5 f7c3d4b84d05f388e11bb8256b249612
BLAKE2b-256 bd339d4d4fc917438b8efb44d302de355443783244b5a85c53346f37d67aca92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b993a5f34455ae212a61121b20180cd9bf6456df2a500802ca44222dda579d7
MD5 097db22bcb69c11debd8c3f130262430
BLAKE2b-256 cdb0d160480538f1db55ad604c189b56862bb90ecb536faa1dd3614d84eea098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f70d228f7c7ec45ecf00319d8e003e5d532bdf14ac699a74012524bb7f70e508
MD5 02d84b44d152f4e0d7e82ae04d8a4dec
BLAKE2b-256 c279ff6652f725e81adab660da7bd04acb61a957b05f2675cb0617599295075b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2654a8bc272d1cf8536465e0c08b7212e3c98737343b326500fbd16209940b35
MD5 2b15a2a57473c6a1ddf72be66f680d98
BLAKE2b-256 b8ba494cbaaeef910f80681ad4aea7889c15852d2a3ca6bf7bdc1fe705f3ca15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a57c3ceb44e5c000ddcff5c1bca79d470094861a943c71d5473d23d674f79ab0
MD5 386c3b172caf7c74bf563609fc4fc74c
BLAKE2b-256 1e06334b0ad27c84c092ecbb392554ba2e68b19d42d87bfe67a72b38bb87e2f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e33206756bb34bc4d79897cdbc9aaf1113340c83d109457f470976dcfc67536b
MD5 006bd97d39da9e17de9dd14a1a64e021
BLAKE2b-256 7dc32ab8cc7ca82bdd09558accd9bd64bb844082a3d044cf8f58cd96c18cc6bf

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