Skip to main content

Fast rainflow counting for streaming input written in Rust

Project description

typhoon

CI PyPI - Python 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.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (627.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (657.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (725.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-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.1-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.1-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.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (628.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (657.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (725.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (635.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-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.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (627.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (658.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (725.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-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.1-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.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-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.1-cp314-cp314-win_amd64.whl (260.5 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.1-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.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (491.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (396.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (626.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (655.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (723.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (633.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (493.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-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.1-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.1-cp313-cp313-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (626.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (724.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (634.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (490.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (408.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.1.1-cp312-cp312-win_amd64.whl (260.0 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (627.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (724.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (634.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (490.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (395.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (408.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (626.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (608.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (490.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (396.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (410.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.1.1-cp310-cp310-win_amd64.whl (260.7 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (658.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (725.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (634.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-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.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.1-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.1-cp39-cp39-musllinux_1_2_i686.whl (659.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (726.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-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.1-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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.1-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.1-cp38-cp38-musllinux_1_2_i686.whl (659.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (726.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (634.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (609.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.1-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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: typhoon_rainflow-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 c9d40d29286ecf0191ef60a62bbd65242fd34f95c6319c25cd1a8d66b2453575
MD5 60e7e017b17158583305cc9dd28cd8fc
BLAKE2b-256 353b5941a0035b934eb62a5fe81de5c7f995da4e50e3b51525e701ea5df9363c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928338f74622a14faab5aa3524e6e6ad50151207c3b43ab37f0dbd7c25633f94
MD5 fd54f4d3c3bc63b8af6c8e501c08470b
BLAKE2b-256 481eafcb62449f8ed11f5ae6b87a7e8c995e24f296e8af77e0b145f312e5e6e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc8990a3742e115054994357c72e4c47eadee397258b8e4c8f414867a1789e89
MD5 1a00541b25e2492ca33afe69ddbae4d6
BLAKE2b-256 e06cd845e78bc7faaeec8effdafa274f6afb5bdc02d3e616697f28a570e7e20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bd370392a9c58b56c127d3cf0c900e1c4b1b57bfa8c64a3b7067542d0fa6c9d3
MD5 b442e36a376a68d25d78cc57c919e0be
BLAKE2b-256 a7874f5fd9878efe3e933dfcdaaf5846494a8f27070fdf6df615c9446293490e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5db498c26f4421d6fd0433182ab81021087535ea094c1b3add946065cdda6df3
MD5 700da36cac08c40c1449cf778d361a86
BLAKE2b-256 f9b89271c510a701a81c977283a9587866d0e270ac202d29057fbed399d48f00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11cb958ac0950d12429c75c237d651fc73414d6047c2ccc0704d0bbeeb01ca3b
MD5 11f6c0d569aa261d0e37e92f3a7b97cd
BLAKE2b-256 2e15e8524ad5aee9b875b108cd84d9a6161a0910ba17691b52de948f8e6cf0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ab9493a78cb19683ec992e4637a17157191d9f1ac04ab6bc0148cef3588d0b8
MD5 ea8a76220b20b1ec18282916e053b295
BLAKE2b-256 438e8d56c71c00f1ddb02b5130b0e6d1def01a051087d785a8616c90d2c0ca42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30645c9fb76c424f6e9bacac196ae452a446b0b8f157a1bc4d0795ba4ab73b10
MD5 c1c0ce12af8e828c47a4ff89cacea14f
BLAKE2b-256 155a4a5bb16a54114af17ebdb46452a37e71ecea2347850a10703718949128af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad625a3eda7ccefde808afefcdebad29386b1f4c30b45dffd8ac1cb6507aae96
MD5 091d8f91b4f852d8ba2fa463441bbef2
BLAKE2b-256 3be61b8e01a1bdbfd4825b8b32e0f7c09e391e146ae3e3214cb25a54d9a9db33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5515fc03e16b1ef94ae14718878bf81d007e49e4a202f47142eb41c94b4d5db
MD5 3200d6fa84b3561bd16cf135337d952e
BLAKE2b-256 c6cfc571f5d198d923e2e136bde5ffce79bc0db0d0fc7c5fe2a9e16ae98e9f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cba665b27120d78b4bcb0f577687b4a7de470087ebf3b640a5aef8cb4b5f8945
MD5 ddd9decae06e56078f9175323f4624de
BLAKE2b-256 8b63d31d0d5d38eed3e1e46c5f09771e508d02a708bc1b15fb6f620340d8312a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acffba6be3682e6f36e0814d2e6b594acd11e5931bd31ab53e2acab230400e4f
MD5 dbdfbc8857cff0d3547caf82ab3ae46e
BLAKE2b-256 a816676b4b2982740a7e556703b9b66224f00d6716d8911999ef9d11a330487d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afcc0b9cdee1e6ca24c08ab1dd2001cb7a044261fc673e85f123229f33a4274c
MD5 f3988747d1f2a82ccc76b4e4b11a492d
BLAKE2b-256 4179d0d1232589a4da98be9183dd9e728a7c7deb8fbb7c50f1156213fce90ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d63236f3a2c7f7013f24df14c08cf30f1d99c5fff961550072318461a541a3f
MD5 066774ee4da524457712e60c28b4b65a
BLAKE2b-256 6e6e8634ee4c5088c614206537e5e44f3a71bfdc739c6a6b3c0b2d4b8638c556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b43d82946d2a6ffa84fa0f2cb82c561ba5c9a7de1e260ba8bb9d42320177c8a
MD5 48546af1556148d3c2b284dfbae34f9d
BLAKE2b-256 79b26f228d67c3f3d6eae9d181d3db3d29da6834e0fd710a33631d93ac88ddea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2aa946f4b7fd6bd738755230465f90c60ee9b9f14122b45cb9fa21922161abf7
MD5 5b0ac06eedc2ab72549d3892bb957b05
BLAKE2b-256 81a8f79e74560726582673ff641d26d3771ffc98c47e1713135f0edbd3fceafe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88bccefd3015b2bb05d40b1e479ae9fc07af7d20ac71e41ba853979090eae24d
MD5 5f6f64561b308d30832a937c2ea50bbd
BLAKE2b-256 ca7e8e711c102b59391e8753fe2dffe4c01bd9498581d493828ab460e67be69c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bc4ab822448ac7251bf409bd4ac2985f06ad4d187daa7ddfd565e178e9acfdd
MD5 fa511d1f7d7058223d4b0f909ec9ac92
BLAKE2b-256 5964ecf3d9e9c25cadd94ddd831527f810bf169d632856439704894a2fce8876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71f5c60fa02dcaf081556d23373161b63d48e263fdd3c929ac3b2f393fc3358e
MD5 48801472c83332016ac4228671d69d9e
BLAKE2b-256 05d54eb8f52d22f9735f404c4f742968307596202600de02f7ec1eb1efad207e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f4b68b3a7e4994749cb0a6ad775018d342c8a6947ddf6ca1e5a20c22a4b4f06
MD5 0af131c73e277ec47d68023868ca051c
BLAKE2b-256 56f2dacec177e2949cb8135dd7eed0e0aaf77c6f1c6c8f8a7c964448eb0d941a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da2d3645db665735b419ac6cb83f451a352ccb3d36f6735da2b668ed19c38ab3
MD5 857d0ad8491866aa2dda3c216d890a6e
BLAKE2b-256 c73504e269d707bfb9470a74b16611b14222a2481675c863b93c0b90d53d7272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 310050f2711b88b569370684227583646e78886c33460518f63006827f30ed91
MD5 164ccbe7d6427f90f7e977bd6eaa2b85
BLAKE2b-256 2de5cfc10c9aa3f7c0a17e7a1cb15c2fe23109ff77c200d5b9ccadf92d82d509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4b1048148365e3989f9d0dc30e8e8251dccbfd5be4c89d44d607e0157b22086
MD5 4ccae8903589f8616c909f864a02534e
BLAKE2b-256 e435fa890b4c7b0f7a1235067997959df438724cfef91db029e710e06594b631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ccb2fa3c26346d1acca3ec3f085356095d440adec4220b289213ee45fa5d8e16
MD5 f95ff1cb4744f112807e9a8c74c8798d
BLAKE2b-256 447241977e60cc9d04ddb388399a0c600423c75160cba7146b3a8eea48e77ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da043e2aed16dd830f0bc6e0d66031c22b40360fb73b84d089f527e1015391a7
MD5 6b6850fe783cf098315afbc629e84ee9
BLAKE2b-256 c910c72fa7dd70ed2e4b60d2bacc59fad9f1b3d2320f024d4d992152e7c71d76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e96c2bfa2199092a85aa2aa1f23749de99fdc55a8e2efe9fb21735bbf81a2b9
MD5 c6fccdb571141cbe7b6bf84baa1ba892
BLAKE2b-256 b9c2cf64429d92ae8b77aba86ffdda3fc35cc5d9c24d90a64437d1ffeb974af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eecad595cbeed41d9ae13322ea1437c2d697f0c4f47e1ce1318bbe5123e729a1
MD5 0bf7843fecd5e52cba45172fdb2979cf
BLAKE2b-256 78241176aab383baabbd136299705a5c37d40460c9201c1e4aafef025610f9ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9a3076540ae747b47562d2f44afc352c189fc2eb9be220c6bdd72a6997806f02
MD5 81e33a85516157ad09e484e034700748
BLAKE2b-256 ce8760034275548f774a51ea7ca7abbe3de42e6865d61b9afb2a9ec0e73f318f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e8170a755128a4f810175f13887a9b55d711527f5d97a5dc247d84521878b52
MD5 1ae9766cd00006b892a1adbb9b975539
BLAKE2b-256 826454ae527e75eae214c6dcb086b8f4e85dd1cf166082acebf0f3c2f07557f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed5557449697b7053e17d2d95066167e404b185bdb5799b3998638a460ad52d3
MD5 39f2abe78f35e35cd25cb5a1af34804b
BLAKE2b-256 29128a9a07d10e43bc3cce66e4cbcbf15f2136fc002809dc20e9072a947fec31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7ad049b102758908fa198b6dbd3c1054398e3c9ad6ab28e9085604233ea9642
MD5 a34fc85faca4135805a61d0b38a31cd1
BLAKE2b-256 891226fd1dbb362d244be9698defadf97b100ce99ff6758e865132b4542ec564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9ace91cddcd5383a4cd5703c704e7a2f0f792bb06fddcf438721d11a80e56c8
MD5 ff6c151e2c1cc58e7ce36e99ee635391
BLAKE2b-256 be04fb047559e1635ac0e56be3b994de499ddfd5de341b6d6a27b6d58e463f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f00dd177f089793114e53a31dabd08b235bb75750b5dae0eced77ba3fa63b11
MD5 3755a8efb600b0645b1ee0a9fbde5088
BLAKE2b-256 8c71474460159e82e0e85f7315c93f368266d9be4cc31d7bf1c3532dbb6a81e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be43836921511a28c573b639583903f10d3904499a0ee685c0aac7ce06648390
MD5 401b84285a3a42571c5263e23b2b901d
BLAKE2b-256 386c36f8f163d4404e122a79100fd3f8d0c01709c39db12459b00c026903c567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eb35523bd93feb7fb8bf5c189041b3b206e6eabffb9791d681578aaadaeafb48
MD5 d4fa0b3227e8ffffae7f9f2a7363f438
BLAKE2b-256 80cfe8914b39164e49af7e4aee7a7302b0f4799c3faa314814446799c575824f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b579eca05a7382bc558c7da3f3326ad354f5285c3382be99ebf31da0231580e8
MD5 f626f51f9da6d42b669c3160b7e5a74b
BLAKE2b-256 cbeb361c7e46524474ac2347e9a6fb037636283dad76eb37571f5a0441ed867d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2374d0af887d9bd238c22ea716defc0a485cec9271b8b0b247611f67d5c0ddf
MD5 293550ca8875e828cd821c9a0ff69fef
BLAKE2b-256 c24f9ca327b563a26993884c596f03f18806a6c2ba61fcf645280b29d95b6c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1230801dbcf38a47f175f38dfcc0344eae550c99937d2d0d14ba6b7c3bbd4cc9
MD5 0765de0a598d3675b90244f300192e14
BLAKE2b-256 2a9fc5c5cf9cbe952148115400d18dbbd41159456fa60aae374c476f6a189ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1bb0cda3e187f2e6bc4eb36817b4da31d5f9fc9b599cc205d6accae0e03648a
MD5 6d09ab07e487e91baeb0a06b18e08507
BLAKE2b-256 6b1aa5ad83c27a1a7ba5899f95a30617ea4e85c0cab9d664181699f9788926c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ef9c7943e319f8b259e6d468eab7ff6b1232771ce2a719b644f86d94834ee24
MD5 95035aeb0e1d72e11ef1e5db002b6204
BLAKE2b-256 25957717f7d6d21f54aed245e7387641b6a48b24b126794f18aebc9279188c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a9a91ab32bef13a15320289c1a4a9a637e97440c3a396ac239f15879d687e4ed
MD5 995d82825ad90fbe1882696d79e2c047
BLAKE2b-256 61af95904fc2a35eb1f8235a32e122095e11e635b34fe841a9182832df8c35e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f809b186f0dbb7ffb7698b2b6be2568ee70c7f3f1d18ad76cdddd737ce8a38cf
MD5 a5eabf46b04d1e5339d196fa94d77386
BLAKE2b-256 0894af532d5e2fc53f7ad48302a92d114de7f1f89e9953fd4346fa757fd0bdfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e217c21c3d5a3c784a310c6ef56443be082d27f84363ab2c0060efbbcecee02c
MD5 58e88284d184bf63beac8fca948fce0b
BLAKE2b-256 bcc5bba219812fc80a3b393f4bdea3e3f607a0dfc565c31021bcc61e4607a3cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03396abdc47fa2e830ccb23e188cfa5ffa2f9cb452060e8fe5fc68cca3880907
MD5 914e6c1d43c2c354188333442bc90242
BLAKE2b-256 d862afeb7abf9ed251105c05afec90e0c0cd74ddc56d842a011af368f76d647f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b53d4095d330a6fef589e24147f08a1a1ebdf9c9a8f9965ef4a1e6535591222d
MD5 e57759633da126af4d7956af7cd47197
BLAKE2b-256 1ec9233b9b38b0394a5470d9de6d0f2dc12c466f62155e66c325fcf5e38695e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66eb96de02b2d48d54291a1f1cc58d21c01dda8ee927352819c1531131c984b9
MD5 c5fe2fea4d70cec40706a5d889112ad9
BLAKE2b-256 221211f8a93478ea96625c99a62210058b5a06fcd3c22b7cdfdcdce9727a31bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1abf0ca7c770ddef9cd516f7f20bbda0b15aad17db6776fb27e8f7b5104d9d9
MD5 8b6ea2cb18a991a41b4acae1254cc0b4
BLAKE2b-256 ccc5f4eda7b6e26637228dc128f07c0e752d0445297e6be451b637253b8a9ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be3937d807c06c448799527f40460ee1c19914125bdbf7b06a66fafe2f4e27aa
MD5 d17b4484d3640393d3ddf33567df1d24
BLAKE2b-256 a9fd801213550cda073573239773be518c56c99688df9d2e3715a411c7140612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90e85642f82ce0c896898d09bce313f67af9c755021112734a51786f17c1e5c9
MD5 1360510d70c57dcaa08b15ff227f1415
BLAKE2b-256 b2bd264fd9cc3a6283c36955d7d90770920fe698609401feef44734f5f3cc527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 964747a59a5783947380470554e3487a335ebcb40f758b6d10e6309b8fb1d5df
MD5 d28c27b13175609aed2e44f9d34b919e
BLAKE2b-256 bb2e82c5dd87d5d435eb82e3fdeeaa189281567e6a61fbdb2cd1eec27b46a77d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93c70a75ecb472246a73a4430350a5235c61122ee63e30d69b871f8dff7a10ca
MD5 94a1b332d6c5ae2d92c96f105832b609
BLAKE2b-256 8a2433e68088c000c450d7d6eb681e8b96b53416a308c656b8b1390799782e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5dadbaaf7056e0b5309aa79195ed51493b2a416d53ffe5e7f36738fd4b5c52da
MD5 b1081aab4f1189efebfc2ca28fce655e
BLAKE2b-256 734c80f73c4581d82736b470027a19e84349c77b1bb563bf56f08ca04ceab6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 133cd7d91ff289f8391d9e2e616d08dd42905bc696f0104263b029a2c0860cd9
MD5 2eab7d1865f961358eedcb2a22cf345e
BLAKE2b-256 e34a0906e24b33e7eb66ee8f4251b8e8d97b76051de835d98869ea2af9f2206a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b7ad3331d523ae703e4d1929061f89cdda4693ba1921de3679e1ff4d44871183
MD5 ffc2f92cc6b32817f57d9d36d5779a71
BLAKE2b-256 e7cf117402b20774a7a21f3a8090440b400a0b418ca8eb8ec2c62f946bf00259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abda2511c08d1845f5faabf941ed011fcc36006357e10cf42a1e7cbb54633d2c
MD5 9aaf776ea8876ab328667ddc41e35d25
BLAKE2b-256 22c3961523a7001a13451cea08fc9d05b7b4250109cf6c61bc23071fe739fdfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 952cc287beaf36b1a5f2d3be79d1db6abd7a2619e1834f9d25fcff7803287a36
MD5 11c0d4dec5947145b637140d85f271f6
BLAKE2b-256 d8a7efd09ab988e7367a01f03e09b466610fc76090f2b9c2561adac0a67ea3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bd42fee8b57d4c9762bacbb93ec848e6953fd3ece0617b2a9a4bcd3137b1642
MD5 7e9f24e15d10cee1a19b26087ceef927
BLAKE2b-256 7699d58d165aa4a21d1cdd7928e272aadfc94a2484027bb318892c9fb74eb7f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c92fb9ae1ad84c9abb286ce57bbce2cceab811bdc060aba2c2fbd89c6bf02e7
MD5 48a203b1064595a3cadd75e1fb1be2d7
BLAKE2b-256 b63c8ff10312fd4b3f43055cf4757673fbe75e1b60f3da8275b1eda247793814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dad28eadda3e5692c449f8118218f74ccb18852e30694215a2770735ee8f58e6
MD5 980f27ac877a0aa58580137c7b4cb8df
BLAKE2b-256 e230ccea2b4eac00059c3904701cb5c4d3b5619ca86a87b753d7f17deb23275a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 59b61c614582b02985d6f74b1a6c4c34826fa304924c2a3116a4c8e1faae42cb
MD5 711f455e308d9cfd56d0d6041c1cd6d6
BLAKE2b-256 fc159ce0e7c0991f145b09ec219bd7d6c107d486d904a1f1477ce475fb4a09ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11453c450022fa18455db1bf9e7c954aeeb32a80c30c1f8cacdb44ba1059b343
MD5 fa483996204d41b59ab1d8d1964f6fe3
BLAKE2b-256 6571bfa27498643e6119d5756ab23139a1c003061767de6c1b068ff5d612f45a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 798fc5345d6fa10d017f6f423c4a1d18cb495a4adcf465a349368416309755c2
MD5 f8267d1915075aba6b59ee479465951b
BLAKE2b-256 112de0d07b4eaa27929d8924638f7e419bc4a69cce41774128d0b4882bcc67ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7b210534ef0bcd598c1f13fb3fca2fdc0c168f99b31eb430f256e9a8451f086
MD5 dfadc8766169a8851cffb2ec3b907d53
BLAKE2b-256 0b225ddbd5f1685759445d9179ab562000aa3c89cf0a2fb725ec90cf7fdeaba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a40732c666727cc9268c6e27cdce47c63803a51075a122a4d2f10b0f4d58e18
MD5 2a3c016101a63025ba1167fe7a38c1c3
BLAKE2b-256 12ba7b26152bff37f9aae03036d8c19df3bb0097a3cf5f161abf051bcd83980c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9a5da775b7c361b73f8cdf4fea7aac4db7a74dae36bb8815335d48e93a2f3e5
MD5 6317c83f4eac908a930c27494cd1802e
BLAKE2b-256 33b13132147eef99cb99d56e807675b23369df53654fa70a8c0e4a4dbd4bcc62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5490153480e658ba92ec4f74bca6ad1d02f7d27d8dc3319bf83ad603b6606f0
MD5 353b4ba7710015ead41984b9197eb6d3
BLAKE2b-256 be6a9c01789fc27e73f2144d77da708443fca9c20adea3832e7ebac723c9ccc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3a21fa2810e573e818da759702b521f5a83f53c8f965152c1241a4a9e5e730b5
MD5 3ebdfe334c59dfe7b29695fe0bf12e66
BLAKE2b-256 35d68429c7cb3b0834f39d86276e0749319ba924bf64c3816fe62785b8d9d60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64ec1655ce8d2675343c48d521c11297888002c05e0574a1e2cf5e57d6eecd4b
MD5 db1c8a44eb5c5857d0654a143fe82c21
BLAKE2b-256 0ba16b1040731b80bc56f379c82f44a97f303e7700cf2a7193a6d7830bbdfdf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 283ae5ec41c9adb550811e941da33adc0e8aba7a5701783041aa4bd6aff1490c
MD5 9c27b26db886258b859a6e3c69e9350e
BLAKE2b-256 5b7f4dccc0bb01e37eb6f540ffefea8eab3d683456921a4b3fd51cc8dd5fa16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1e133840502e599d90ce2664c735eb1f807666b576d385153cb60a5ba472aaa0
MD5 9fc5855736038272954b0cbd51914453
BLAKE2b-256 3be414e2b58261db0b402f8cb580d9afa69d81d8083ff38a4d96f5d0096bf203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 366d400b7ee5656c6f1bceb6bbba2ef39f4751178e93291ac169546fd174e012
MD5 c395c6f4ea9f5a75c06e008fee426a5a
BLAKE2b-256 f01c9503df04ca037c97bcdc0715fc38156c9d306544b335a96d4c110a186b03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98dbc72e4cba222d2c3d44ada3a6354e627c287d4b93e2adc6e103364248217e
MD5 4542ec4d15bb92f031ca5b6fe073e147
BLAKE2b-256 582c4edb71b88f681725e783f0534ef7214262794f7deb7866b183ba0b8b2567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da60d7cf6748d887da2719ee3beb417b427d6076468383c6fe4821901dd3a84f
MD5 fa7138d30779a82d5556959f4196d5d5
BLAKE2b-256 6465eabc02de353abf9d654a9d19a14f7548a0548e20392e2eca3a3eb209d453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75229cf3a0326096de902fd27886790760e54e8397ee6bc905e199351aebe146
MD5 8ecab13e2244e06efb4b5dc638c2e750
BLAKE2b-256 a125cfbabb4e28bb5ace6714936bb5c9af0c112103cda70e5321021483d2e55a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8ef855090d1626dcd0ebec956f80789518d46300dad9756541305feea38ddc6
MD5 3a0319a7902d3b24cf86dddf9bfa8970
BLAKE2b-256 897b8fa862c0d1e3d8dd009a54308750b11c3e529e44923232efd06ff1dbc505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c3e86731a2723c3b4724601fe4cfaaa1a26d6f8950e3c9c6a4c62246d903e01
MD5 bd5065cc44288ea60bfc3fe55d698aa2
BLAKE2b-256 b66899c174c65207e036f52c77b7a5a4c6b212339a5a4f7f7cdf6ab58d60f1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 082e8319d23879acba7f879dc0b071f3d9dcb6b0e2dab1c25c9ec7cdbf8e4305
MD5 c17bc14cb1b918efcfb5787aa21b0416
BLAKE2b-256 868721337e288d6e9a04f41892b884c63216040ca4671a46eb21169c9f9641bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 441440a35b38938d89312493c6e7ec91f8fc86c034124906f9b465ea94edb847
MD5 7e0b4c3827ad763656b7abbebfb86c19
BLAKE2b-256 529f0f10829c0439a4ba93cc16ee1041bb0948b16cc86e4f80875e14ab4c8987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd5b0ff1353bc22d93cc6564f6d8ea25da340f4486fd73d2213a4df1cad72b16
MD5 053624c1eb3d752020d2ddf1e1014e81
BLAKE2b-256 cae392b671f2662e0486ea8fdebd6dd25fadf3441413841022df389bcfe427da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d253a0ad69ee24f7414b5fa78f0bbadc63d0ec94539ebda190077c99518e0838
MD5 0a9bec2be92caea1d48c569e92a48d60
BLAKE2b-256 8e27bb0b56d8a62e70346a6b58575a2aa5b57fef93e805912dcece5775c2dac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2079afc9efb0d46fdb44c51e0fbff1221d8ac8b531ea381d4923f89779595c60
MD5 7dd0b9dd1b48ca7d31968ac33b0763ee
BLAKE2b-256 f9211e8b2a4c54e91f51d4717ccde04c422bda13befcf1ee8f0128b480886f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6bf381963d7d062488ae45c4f4ee4439c21ae12f30ab10bd0b6f6780c00e554
MD5 7b2c3d62ae6e6feccc0bcaa8a58901e8
BLAKE2b-256 37df9bc00dc2f258e50f7acd94a7b6c01365e75bc3ba4a32dd4c2219de9edbc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60cb047ade3d23d086f68bedd5ae42829225a6d98380686c3b011230c49dc866
MD5 e0b56f2e6b507a8e0fe33a2a99dc6b52
BLAKE2b-256 cf144b696603596a0896e2e58927e1e6cd8f9eb5bd6cd7d7d4a21e12947b3653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 434ccf47ece39c2d74fa274c031cb37eb2b0ea73bf34ed7f639e096e4eb73577
MD5 1bc8fb24168fdde1e546e6f39485e017
BLAKE2b-256 1f7e80ff16e51f07e278cc210fc810656d7334ef311dadccad74f8a1aa5d480f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d7c67062b6413533ee3f3f773354997f686bb62d2dad92c1f106f6225b0f0f9
MD5 121142d9eef60089bdc52d51deb79a32
BLAKE2b-256 e56a0aee60807dd5d9a316057129fdd8e07ea99909edc1c5825740ddf2887689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17384a339bf9d764bb235d76c927f839c9dc22f5f80560a1a01c32a5efb43e48
MD5 6096aaa570d3ddb0ec0a73ce30d5aef8
BLAKE2b-256 fde66d897c1de4e79e8b4fd6e7ba002de8d8b30812d22015369400cb17e19986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62df367e88eab7f802b4abe0fffeb6251ad049d27984844b2b36509e98b82058
MD5 951398e92fb65d3bdd0bcb8ff66ccd87
BLAKE2b-256 0c76fb4a5cc9996c129c74c5a69d09bbb86816f04cbe8a95eadc6c8afea89b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0409464078024bed11bc49be487802a5bdd53dc097b7fc6c898984a40b4db57f
MD5 3b21d4b33a1039e6c4ee119fb78c7175
BLAKE2b-256 cebfa6954238377dcba29b75c8c78ab2d47becee482ecb7e2881f8cb93b5b325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d843037c532664d41e991b6e3c6befc48e782502847364baed83defa0b63633
MD5 ff3e3d9dd9e5213aae761acabea80c37
BLAKE2b-256 ad85e7f66c5fd65e421d562bc6e0db8024d09b09e0489c4d36c7229fc29cab3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0607b2231bcbb43f3ecf8c5725a50087359df50f3350e8797a3e8d733c134129
MD5 2cfe424a8c76aef64702b5867c969763
BLAKE2b-256 0a66fe3d3467744041450d8d5f141242d6b1f2b874b20d8ef84d35e94f0e5712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6585f4415def92952395a71beed038df1687fa4475dac76346ffeb5781c09096
MD5 811182a7e3863e32d3b2943e9d9e47ad
BLAKE2b-256 e648a290b8a1369e52b3b667ca8cb0a3c4df1c19575ac9825cd38fbdd12c1efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c17661c0754252c366609c53ba438d4f79e261a47c0c0116354f972160c0d2a2
MD5 f6083255861801542aee942acbf862c5
BLAKE2b-256 b8d01232f7fe203bd90837a35e56d615fa364435de2558005676034ccc3ddb77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffedf5eecfecd6d3a12124ab81b2f888afdce24a5d034c56b91675d9af8c93e4
MD5 669159b3a2cd89bc9d78da3a2458fe37
BLAKE2b-256 315959d3338c1541cc9bf7edee7f988db9fcafc0085400442d01d6f9476561f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4465755fe29f8a36aab1206add169a733d5f480cb2682596b1b02ca792c3a26
MD5 2087604e3d010f5da1e74b5af9b5edf1
BLAKE2b-256 ca949d4c2dbf54203560daf5f9984823a2cbcd1443c1e3dc23ea4c573ba37c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93b5d339ab639be5f8e841e8acbbca1242b529bc0ed5af4d771fba13e84da945
MD5 4f22ee1fc0a6ea9da5bd7df9a0b1984c
BLAKE2b-256 429aa2421b11bb6bc90cc63e291be61fdc3a3e66ee8f1ded3ebee7e6085bb638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45b3092c6c704a76655a2722df750d4c0a73d9369072a6a4272fcd47b03edb77
MD5 2410371345a0eded107d68b9e233166d
BLAKE2b-256 c730ac6fc6001343771e16aa9f0def5e1d9e3bf329483664c11bb0314d2461b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e2ad8f0f71c7824d6d0cc188ed8e821ac9d4734c6400243678ff49b59e4f40f
MD5 b222cba0512f255718760ca44d1abc90
BLAKE2b-256 569372f5c3529c262cf87f14a9ae9a4ce6c435e0cb1fe8d558a53af4d512463a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fff8cbb327a15dbf2a45c6187b6784ca34c16ba711f0fa592b66ad4efd27d85a
MD5 fe27a4d9a428dc02ba19ae50af34d5bf
BLAKE2b-256 75c48f82792ba5b5d4f9f7e261006bb7fc3e68c14916d1a2a4cb9d239e43fda6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 084a8b688b44b8384985b6b3e562af46d2c80ef6ffcadd1edf12166c97d1c8a4
MD5 132ac02b2b633b8f5d0c07b8ec31ad5e
BLAKE2b-256 6da646b8b75b0c099b900a0f6fa30c75cb057b92c2f37b141d711b3fa2d9d8ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd02b00639ec56f540a5b188e43b672ea4a82b7292864a6267165423b083fe92
MD5 7aad7a2ef5bb4998b4bda5e8ebc4abe6
BLAKE2b-256 57ee264c3634d91d9c003e4c5868bbebe386ef1247fa5b071fec4d99c7ad2597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a84065f57951690be3affdffc68ea7a5c102354109abbcb31effe1d214b271ec
MD5 de41e5369330af7ef41c406599dcf110
BLAKE2b-256 dbc21dabb2e607a098dc754a19d007cf439694a4513cb1123541f0b4b5288c75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6aa24d60db0c3774ad58554995429efcc759d6cd3788ba5052f67b1bb0728699
MD5 f04d9030c9bed046bdb3d1ab75ec7c64
BLAKE2b-256 b74f2c1e6e862cc2efde3b6d10567bb9aba836897ba42400f507e23edbb8e701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7419a1f62d6827ca5b410932aa8b99252a692b59b1593fd6702e22686e5aa596
MD5 0a41b3e21f6e8c97a9093e8ce6054e7c
BLAKE2b-256 e70d2d88ce2f3e0ed3716699e35d0fb5fec67cda098a136c2285aadc24df5e6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4d2702102c9f53421379c75bb4c23a58463d271a87a217bbac722bddc19e5d7
MD5 40d4be790457ffe9bb71ff397f3d5b09
BLAKE2b-256 8e93b5bfd1007ff739c1c4d348a4bc2ee35904a45dfbd4bfb662b205ed54ce14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8d768a9340a1fb76e12869a5f58865bbb49a5ba4e1b74bdabb1d827447c16d2
MD5 a742c4290142b4b6888c5896d078ea8e
BLAKE2b-256 ff116bbd6641b7fdefca7ddbbdd7e1661f38439c09e4597416a5b08430853192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b66a7ed39a7e9e2cb813703477aeb61c464e1cb6b4247019fc60ba3e813dd456
MD5 62ea30336e45ef3d6391614293f1b0f1
BLAKE2b-256 758d3da754f0b43b0a2b0eb5deaffe5baf73d66602714ecfcae18350a96c7720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7cc27850c72c7abbbb78b73a177b6d1b7b2a5836e9a9d54cdc1d895f7a3ba364
MD5 5d7ae2c315d867289b9a34cc44547fc2
BLAKE2b-256 02e834bed426652402c98097f92372de6bb8f98eac6a50052f4f821131051bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85d531c60a18a4b80cc2fc59203dce9af320c8aa9d6886007890b12c03d34e52
MD5 cd7861ca459bc77fd4fdf007741368a3
BLAKE2b-256 0d42504f88da9f9dd2b978bada84fcf53bc00f322d9098553eaa61bea25b75af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 260e686a2902cf239806f974f50e0f63c681cefbffbef2729296c96265e7d3e3
MD5 80a7801db82580f39418d5adbadfd0f0
BLAKE2b-256 1d4cdb5e57bbd11eaf4604146614efc6e494c9ba8bf4db5c1f08714079d8e079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5849d5961a77b916eedf02123da2fec267b18d10763c49f276b8faea4e271c23
MD5 9c364e73eabb64e14e1880bfb7ea2b51
BLAKE2b-256 17f3dc55b461128e163395294186dd1116e2eb5e5f6c870344d6f371ab93447d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa24f0037e1521e9252919077ebe59010b5560e6bbd8c43b73a84617a80ad306
MD5 dc54359752b48f39dd725608fa21f9e7
BLAKE2b-256 bcdc9e7ee173105a978a8fb3caf9b2a2c9a0db0aa7739ef1a3111692054414b9

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