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

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (656.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-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.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (489.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (628.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (656.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (634.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-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.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (627.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl (657.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (724.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-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.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (603.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.7-cp314-cp314-win_amd64.whl (260.6 kB view details)

Uploaded CPython 3.14Windows x86-64

typhoon_rainflow-0.1.7-cp314-cp314-win32.whl (251.0 kB view details)

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (490.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (395.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.7-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.7-cp313-cp313t-musllinux_1_2_i686.whl (654.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl (721.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-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.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.7-cp313-cp313-win_amd64.whl (260.2 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (626.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_i686.whl (656.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl (723.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-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.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (489.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-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.7-cp313-cp313-macosx_11_0_arm64.whl (394.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (408.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

typhoon_rainflow-0.1.7-cp312-cp312-win_amd64.whl (260.1 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (626.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_i686.whl (657.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (723.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (634.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (489.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-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.7-cp312-cp312-macosx_11_0_arm64.whl (394.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (408.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

typhoon_rainflow-0.1.7-cp311-cp311-win_amd64.whl (260.9 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (626.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (724.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (609.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (489.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

typhoon_rainflow-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (410.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

typhoon_rainflow-0.1.7-cp310-cp310-win_amd64.whl (260.9 kB view details)

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (627.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_i686.whl (657.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (724.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (634.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (489.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-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.7-cp39-cp39-win_amd64.whl (261.0 kB view details)

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (627.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_i686.whl (659.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl (725.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (490.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl (627.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_i686.whl (658.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl (725.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (609.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (490.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.7-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.7.tar.gz.

File metadata

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

File hashes

Hashes for typhoon_rainflow-0.1.7.tar.gz
Algorithm Hash digest
SHA256 cece17c770eda4feeed529ed817182cfee1af5389db7b326b66db0dfe3bc41ee
MD5 07544a6ed6249356cb9cfcb30f033a4c
BLAKE2b-256 c7a4e08f6bc26a3208476f411a8191bb0673bc594ad14958815f2764b7392795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f118e92c6d7d5274f9e7aa8b8858cc53168682420326d8edad0e8126622b62fe
MD5 a5141a78e0c16652f7d16e3df47d31cd
BLAKE2b-256 e70777b5d1d6755b6b16e1e7079fe8b1277f8b62cd95472843dfd1bfaa6da4c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 92610221b57316b31dbf9a82e69ce8a0123d6a1ce6d9ce746c8c8b305068c9d4
MD5 04ff08948b23d2ef333d825a8d5244a8
BLAKE2b-256 fc3057d4543a68a3066d85f900b3bad4ec3c4c377476add67354bc44b4289dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9542cae5fd8f889612831d48779d9981f3fb22ce0b66d7fa331b832575923ee1
MD5 8cb1f8e88aea4232afa44e96d8d59405
BLAKE2b-256 fa3929b25db3a6ea43898944766ab8065ff942a55e5a7aaafb909a9de0629aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f476a414f9d9290988630c6c92abac61049a3022bc535d0e945ec9a768a28e03
MD5 ba410ccfa7f14cfa3e6cd4d8956320e9
BLAKE2b-256 9abb55075c3fcffec75fc168b22ef5b9e64e3497d318b071abc2ae02e32d1bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f1ec480c9e39cda53013b7200816b04647e295d55e8675188302a0e796b7310
MD5 0623a5587f195e4d8eb74d23d4d452f8
BLAKE2b-256 0f4c70f566d4d523e27952ad1549c827565b0c1e45f6cb2ecdaa3ff5bd07bc4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c1c32141f9e2e2c38a125c9c2a77aa41ed475ed1bdbcd47f59e2663482a5560
MD5 a3c2aa9b2ebe20bc6f32036ccd940a4c
BLAKE2b-256 033407c8b4c447602bf621fe4f9696b98a8f04b49192a8b0e1b625dae178484d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40c0d4af08ff2be668727f28363c1b9d7fd45dd110c5af72454c574dc4444bb2
MD5 abf02138a71eaeb829c5d31ab10c7f5c
BLAKE2b-256 36af8506268627f991bb85b079f43de7b9ef2ef6a0127b232438daf19b684d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35c73783a33414fd799974cde7193471f729529882a13a535c93de3bbd3897ec
MD5 16da46bd081f62f5cd2c109b517fb619
BLAKE2b-256 f25584908a02d8c0320096b6bf7267b6c189dcd7766bfdcc335756ba8bfc8359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f332ac47e663346319fb773bfedd0e3f652bd7f09d3e8a060efec76c095d19d7
MD5 9c834b935c539f65f6ed7b6b937bb85f
BLAKE2b-256 2268689cccce952dc67810f979e60e31ff398d157145d42dc517ac0325b66f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6361b5ceed2d5df12b072df12f97c35ae727c25aada39f203cbe4c337285513b
MD5 b8649f25eba6f9c64f4cab7ff36770f4
BLAKE2b-256 d12f5720cac24675f73c9b641dd2cf9623fd21f709446bd7c810569b26f271d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8aa7b5176b91f897d6b766e382c4475403eca472478cf49bab46981546b2ee68
MD5 140f380dba851d06acb52f19465508c5
BLAKE2b-256 2d00b76891e06437fef0dbf1ce5406681a6cfd39a74eda8c8fed178f9bb92372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d473afc05656168f552a3bf91a9953eefeed4659f8032031fb336e3a194b5c60
MD5 89e1f1ab07442dbce5f78231f59beb69
BLAKE2b-256 12436999dc10b4aaf300aa48caac11f05bea00b09722e58cfaeb5780d1071d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f97f096585f674ec522a99fc33e1c7e14d80024bd0e3f9c9c6289dd0d005d3d
MD5 5cfb06c1d62dbb1ffb95de01f4607374
BLAKE2b-256 3fa3ffb41b8d2612024b8a3b81d422ace185e5373102d19d3a445672b6b8cae1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4b5ce316db559d254f4eccfeeba8374d42461d7eae4900e2e070bb3a30333e8
MD5 c4ee743c3cd78540aeb6a68d09f93c94
BLAKE2b-256 314b1ef98876635b8744950fd72fb5e3a146fa16660712079b43c06a82b38ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 897f99e2bf90cf9912e7f9c51986f4776d4e68bc0bcccd4dcebaef15eb76ebab
MD5 3187dd864f399ba3abde65c55925723b
BLAKE2b-256 118936387af8f7f1cdb479b54d898983913c262981abf085b5ceb8c06cc39ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f576e8dbf8374650fa91860e9a0a7ac4231b55c4e96e3e53d19d4f84be992007
MD5 98fd11c3dee93536acf978cc18e678ec
BLAKE2b-256 1ad12cff758907949b39aed6809640de2176d814d699d159196552c961ebce6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b9f5d60c89f784b61bb23b0b044838171050b8f43cf594e853be916deee6db5
MD5 45891b69bc4ebdc279577e38cc788d27
BLAKE2b-256 cd42e24b69fe4f50ec2605a1c16eff735bb9ba335fd5f6b4715e76aca49e8c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c74408b0c600bcca953215deff16ea2028de0f9e161e0ea72b551b5523ea5c44
MD5 90c0dc413affefefb99508ef2eb7337b
BLAKE2b-256 6e6d6ac4d9b93a999851069903165de4af748a03c9fb5cafb9d9669af992dca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 056658cae9124d40d340b988f8f9284eedf558e393383a21a39097cd55e867b2
MD5 7f612446fe33bd61e07782338e266853
BLAKE2b-256 a7e472efb253231f62ce03903879d45108ee6e05622968ef14e60be3241acf41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23e73d0402f5dd2aaadc4ee86a1f5838da5d626b9647ef937f9cf7c4b3212526
MD5 4c9824faee8dc5056ed5dd7f330c1383
BLAKE2b-256 16ffa83584afc3763e39a9eaf9209c3c45ef4a7095c8d91a39fd2acb3cbd1b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38efdec90ea969cddc1b1f776a46f112503fb87dca0e506505886b8b48a5fe0b
MD5 e746d96b18985f90577eab02bde8d8ba
BLAKE2b-256 c9bd36b82c521e9dce61667346dd8823dcc0ac8ad25ab1f3553495296b044613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f43980fecfe890e4f3eead5ed0f95ee125663d32ccdc65c7cb35b364466c37a9
MD5 a26dc21868962a536c471ca9719f0094
BLAKE2b-256 8ed77344c6bb5f7928fcdc8cd5155d2c2d0f83e50a97f32d47bcc08286691fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b341bab9e578a213b67287d13bad1195da6080862161b3b559efe4e2bbeb6a6
MD5 595762ccadc1d3599f24ad4f472a1260
BLAKE2b-256 9966a7c35aa896e03b18ecf33a8cdffea47842dca005d83fdeb4f8705b169988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbf12faa64e82614c90d57b7803b7259330f6e406340b8c5ee9cd413ccb6d122
MD5 2697f0fa5e153d6b8be93d3d756fced4
BLAKE2b-256 bb0274cb5de88712ab56b68d4c71b59467ad5867af829252b28e92d3ae8a696a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 421e4246163b9596de19c7d875ea929da2edc5c7f06a0dcbe0859718da162fb3
MD5 7c18c862d9471e51c375b78b6fb14e33
BLAKE2b-256 270d776e61baef083ad4f633f3eb915f772279996bde0eb4a4663a62a7e332ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdb131bc428c02d99c5b359b45dd153efd317ff6f75cb6e5f076f14e478106f1
MD5 b2177975b0b3701df8ae5aa6084b2044
BLAKE2b-256 71595b8be834b3a2173ca68ab4f9e91dd6c0f3f707ef54a9fec35d32e88744f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d0a667dfc94498c4722d30fbc4118c140439dd5fa745e77a2e2a9fe4fcad0a4d
MD5 17cf054d50d06928ae07a962ad1e8764
BLAKE2b-256 bb01bce35c68b6e939474413d156613d77db26c2c773777fe2aa262c5f2f75b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4fc9143d3551ff7679f8830f2b6e23ef28e8688b79ca5b056af3d34e6f5039e6
MD5 7724586be9a641c3d66c93e4492baaf0
BLAKE2b-256 8cba202a368694d41da44cfb889e5a704868226f7eb826c19aa147d138d3ed2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbbe887cf46d4baa622a26424e5d39d8ffa3173da301e7169bff6ef033bb12f5
MD5 b006b3e0142311cf82e2b29af35bc72e
BLAKE2b-256 a8dfeeceaf02f382bf0a0674b28c7ae4101720b6e0313ba29257645143015975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e320c5a0af6dc1029a231f33ab63cce665804dc69a85522573e375d503b2154
MD5 fdc2a6f019fd8c64775fc814e720b76f
BLAKE2b-256 8f155ae1e625d9f7fdfb63af52a801afb29848000c37fdda6ba175f92d86e445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1866814062fb3d7ed154add409f95072f3c04ae800e972cb52de58613cfbc82
MD5 eee82ad8882ced4094b589ffbdd0b89f
BLAKE2b-256 3d6340578ef98b99fbcc453eb64c53554c0adebd639a0ad9f85904258343dc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5565a1048a3678c1f2126ac985e3d1257d18e7df92bb3587f42e025cf4ffb360
MD5 62e79f0b55ca3dcf7d5cc72633c723fc
BLAKE2b-256 597bd65303f2cbcc80b1de7c56e81187945aaf8845f6cfde373616a47adb122d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a6a87e05fae9c3e158a94960fd80ecd1b10b194fc0c3e5f6ac0eced2f45c746
MD5 4bd5a610ee5ecc623e942ec68bd6b16e
BLAKE2b-256 b9ed4c54b0cc5e67496bdb01c7bf9e9441d2e23c9e5aa610a24e6bb640421887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 367717c819f19a71d7010333cace841448a1ae2575240e6378bbcf515d3592d1
MD5 ad212fec146a55b6cd4eacd50aadb7a1
BLAKE2b-256 8a4ed4af1086d7c3d795e7f023fa4ea36a546a04dc9e22667b36cc6115b83834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1cdebd41e3acaafc08c80f679306bf87fe39eaa07d21c1f1a6545544a33721e0
MD5 48b5648f7ccf993a4be27b3a3a3c8306
BLAKE2b-256 67fef55a0c0354e56f4caf4a7bccc8ed9bd56313ca27c37a4211bc709d96eee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2612c292640efebe0e1885fd366594c52c054ec612b2b2fcb3941661663b89c
MD5 72dc1133dc3fe66d965baa50dc60b007
BLAKE2b-256 cba867f8741b39ad30e94d384b0d45f4478a442a8186d76ab9c09cff4c49cda0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bb83b49094459773e5ca4cf510144bca84d060bdb6026e6c907104e6f333585
MD5 17b6a3ac1ad16ebf518c32aa56fb74c7
BLAKE2b-256 c7aec6bcc56c078eb7c481a7c00ea7723acae1978ffc28d58467dcb19fa8ac07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 658ae8bbd3fb515ea30ca4a336708fb6b7095dead779c2dae02d0d8f3e15a5a6
MD5 f17e85c5583ae821f0f515f0d11c469b
BLAKE2b-256 0e38726820dc2a2f8ea69715f2a24376fb3f00fcb6d153421742bfd31b0a44da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f798d9523306ec75e22539b00d7bc7a4dd193bf2f2e57202c2ba7bc539b3094a
MD5 4e3958914f51caeea9530e43d098e265
BLAKE2b-256 5e668e1290cf1a63c30f555cae35e8f4d36a2575cead63db005ccbabfcadcf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f30dfbf0c7154aeba309a8ce0d01aad00671c4a69b5297f71f1ad259124fa355
MD5 44d2fedb49024f125c7db20a9a12b8c5
BLAKE2b-256 f80243ef0be67ef363eb35c5b9c261423ee7a8ce4a7e17d0331edf930fbff172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1db01215b4ad1802476f6b42187ab689dd4fcebe05d9cfe10fc8ecdc3b0a6ca6
MD5 1420fd9f3f1171d8c84e906213b08570
BLAKE2b-256 fe53eef9e8162af337af92d85663fcbe3cb804cc890c8d647020194a9a1e2404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d3fcdfc2ac2ed32b4aab8370961d9874ea210f90f711cc54aa7dc3d7f18889da
MD5 2a2b6a0e3f6e795e0b6e6312735d1c36
BLAKE2b-256 abfaa0ea06b5add1d32da2dd1ab500e5abdf0c7c9b4bc7129738e136242419ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7d78b6fb9da79d0bc1422bf70e9586c45ea7dd4c7611759afbb09160e354058
MD5 e0271294c84203a8924a263eb452c4c4
BLAKE2b-256 352ba33ac99e0c06735b71db3e50256f05fe386b7c54f5bccbdea3a42a21a3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36a26a7b0c2795c0ea122a4a02b38d77746729b8b01d5b203cca9ebcbe9a9b1c
MD5 14fc1bf459c662b6ef5190190eb5cb1e
BLAKE2b-256 9f71662834625b8d437738f3f9a134d80fcb7d552c883b96920724cc6a92a3a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb1c5fb5aa18487b8ee92237f9287e462248f578248693ee013c027ae3a9df0e
MD5 5d7ea4933d862aa0b200ed35a1d7576f
BLAKE2b-256 41327494db9216bd9f1210fca38f484c0d30d0cc8bd8dcd5276c35a05de4ef21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79c963352cf51f8daf70738d2195c153075af834dd5db1dc81dc3d70c4c97b10
MD5 17437dca3bdbafc5ebdc29bd495ff926
BLAKE2b-256 86b3d642e02961c6815b54171467af2940e5bdedef01f93ffdaf710d5d35b799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc7d3a8961759be29e55c7d46ea15dcd182a93610b0e8358a9253fcda60a7234
MD5 907dc056a3286965195fc093df486c8b
BLAKE2b-256 d0afc16fdab4519df737e1bb115b03b9e49e28cc38a2788091fda224d88ef032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f1d710d58b9920a69b039fed096a3fdb1546da24eccad70c54391e10011b4f3
MD5 d6558180c8b0f44fe1736aab752f407e
BLAKE2b-256 2737cdf05d8643e9e8cc3eda474e8cb320bf6ceeb7e7cd05bb82e95a01edd0bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad0cb66d2d0915aefa8a49052d15e42e203905e8b778ff1b6758275504d4a6b0
MD5 72b49cf2f4f4ac46c9adfea8d462a6b6
BLAKE2b-256 80e901595577ea9478bd4f321cc864fedecd89462f80d397784cdf38ffa09460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0dd062b8353bbb789cc6e3c48a23bcbe0837446388baf330ddd8c04593a35d0
MD5 30b1cd75d42a5dfde5e3f6bf08cf6a7c
BLAKE2b-256 d4a9876a34f476f12b6926cbf0e77cf66fe3563313e3f778e6acb32ebc0ac02e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ba3454a6bdf597d5740bb40c481fe722544f0883e8381ed72f203d6f507e4c5
MD5 0d056fe7709162de0f46e3e9b0490cea
BLAKE2b-256 0b65027a6e64f070e3c3fc39e89d0804c71b7bd4292436c28b20c2bfa0c28e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe9e3c643f71f35cacd9bd17dacc4ea9d047f97e7472dffb41e41f8e09ae9e41
MD5 04b4d9223409c48b2ccf75ac4f4afd34
BLAKE2b-256 aad175a4abaff78ffa136388dc4dc5aa50f1cbcc6cf125615d0ef0e2a5dcafda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12043b58b3946bea566f565f6edf5a958a399bc4c600cd28d3b8c767bee9062c
MD5 3c136dc59e790eff04321502ffd4ea83
BLAKE2b-256 6acc7c75a44f12f4e0349c6340c4e4f09677c5ea377d515ff31ec76452727894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61f417e367d43625c5ab5a194bbaf1d3f52ff85d6d5e23a03545a26d95dc988e
MD5 9417913fb919b0366eda339c9da52a0f
BLAKE2b-256 35a32a13a0ed991f78eed461627e560bc641805968519b0a904dab41fa730479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f28eae875d96987357c75b59ca9fc18d9bd363aca952ad4f81341fc294f77720
MD5 320e20780d208dd031d791669bbb8604
BLAKE2b-256 7c39db91612cbfb2cbff3824152f7252b08b29cf63d21f9edeef6efd94104906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5031fb516053d6b34e89a1c60af3bfc2ab4c77dd28111ebbda519ef95485eda9
MD5 df0df9472ae19377cb04aaa87f97d7de
BLAKE2b-256 f1bfa318bceba6eb3e611bc92040eea73c9f6d517d1586b189b0f151d5624c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 976ca96628eebd5c3732c4b4afa885ab5c4b2eed1349affd2c9c7df47ef01071
MD5 1cf147f31a4c24a3ecf783f74725e4dd
BLAKE2b-256 fd396de988764b21e7d0bd283dd6795724fe2cfd384b0a713edd2f700db20e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbcf0365376ebf025352bc98cd65dd68a418fd356e903c912f49650a1dd66f4e
MD5 313fba21b892e548869cdbe5f299a638
BLAKE2b-256 f9d65af09a5d9ac10eb489ba3fb5441100e9dc37765ed8144b207263a6f4cac9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d969b75d709583cc1d6e95e2bd607d751b4eb6730430427301aee18a66e28e87
MD5 3aa1c2e64dfe3ff0ba1e3a5597d60473
BLAKE2b-256 c8d0f80d1bfcca362b10e1b1a70e58c8833e1a0cfc9d55efb93542fae2be5464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1b28ce33ec38ef33a4db2a031816010e145eeacddf2886bf32debed529c68ca
MD5 c71e3f5387c2fdc97125fc00a68a4f7c
BLAKE2b-256 4af31a4b97c6e2a567829066093b26611a209724f6e41a2e2efd4d452fa83459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a033453d7eedb10cfb1747526c771329479b1966bb533139b96f39a06e474ff7
MD5 8cf22ba6610a1b82f3833d85e89899b5
BLAKE2b-256 d5aad4ff7f23b678d46a0a8f67edbcf565863e029130cb383c9cf75affc21322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e307213f201287a0df57cf9813f1cc025000170b5a35585748a982ab98cfd060
MD5 c1d8d86d430009db95e35ad9b1fd5195
BLAKE2b-256 7ff993bb6ae39b05d29537f9c2f762dd92642ba851cc11a3b62d6ad174a09070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01de26ccdae0ee5f5948a60725f946dcd94fce5e5746cc594ca6f957cffde699
MD5 12b15fde14db0e01881d60a24e9f198b
BLAKE2b-256 63e6e7ba38495eea197adc1fcf77a9113106a3067d6ff4accf2a5268cf4e6921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 650a357bdb863bd29f7c25fe9fd18b1ae4a72af9ac1da118c4c3d20318a3a060
MD5 9750f6103e1714a41a560f7445f7f389
BLAKE2b-256 674712675754c6df48049fe22b580fff98e4ff1953274b4673dde4e7dc4505ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 053eb8ae44a21be9f1b73886b82445293f26c5746b1e7d00e0b2b9f5c0a322c7
MD5 cd4fba131bd1e7c6bc6a25a0cb1927c3
BLAKE2b-256 6de26a1c6e3b25532e68b6a28bd3131fb313dbe3ce6a157ac33b04ff84bb2806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5a714e06ba4a711414b701759b8c7a3059ff590d9398e54ad0b352581aa8dab
MD5 a0e4dbdce29bf0beba954bb832d3f39a
BLAKE2b-256 143dcca51907b97ec759de3d65d071ef06850dcdfe00f9e20fd8e643afa31b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7cf876565d8dc71091d1c53776ee2794728b1879c8a1edf41e0845027366d0d
MD5 0dc507d14501343fe2b1952768a508fe
BLAKE2b-256 6cb4f921e98ac53f4f2de68814a29335130d4e2130a777895e65d98c135b2218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b598dcacf407d38b03b3c8a8b8c1e9bfbed7d70aee5251285a4880cbe0969d1
MD5 7a139e7d66157dd189f9e4b1f695b6d3
BLAKE2b-256 60bfcf5afc4a03e1f30e9f4647b743d63040f9f6f60cc2298775b8b2f7156aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c1f988b59c466075ffda432234e9a86c152d4bbfd28becdc254498f55a8c27e9
MD5 3be3a827191884a0407320b97f260fba
BLAKE2b-256 ca39f2ba1ba7a1f8e7da39eeadec38a1b283026ddf384d185e096038f643ee7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b7140bc56f889a95dfa7180c8ec744a60b3715deb87d4cdb7d6040be274b1ac
MD5 cebf622d393e7a526db4e4fffed9aabf
BLAKE2b-256 7ef8d6a6e10b69417743beda83ad0a7fde8d03e93bb01786fcbc850176564de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4b904ba8642f6af683398cf6ab7250d799cd80b8bef943c196e05a54c6b020b
MD5 d5ce850c2aede16dff2e470e81ae19c9
BLAKE2b-256 60fded6840816a909c02b64fb0d735093e9acaf10176026367b079a35660567d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d6941ec81e8fef392a0c0c9a1d82ed32a1f5f48dc0ccdf40a85b65ddbda63a6
MD5 aab29844f00330cd12fb412d98199b76
BLAKE2b-256 2f8a3ad08f767504fbf3dd7527310700649434db3cd739f1f01f0a1445bc4eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45f262bc66aaa61faf6361c051301cac6cdb0a8476935e32646660e0b9e61622
MD5 e8b778ea0a6eb6dc6dd69a9e60b668a2
BLAKE2b-256 2793a05d62eab7e4e8c47d37550ff8a08daf6c646ddf2ac830a9348f99b140a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a337254a25ae3c61ec242944817473a3ac9200ecbd8b4d25270f8883a3b47de
MD5 32e9ec627285f553204fb91b1a9329d8
BLAKE2b-256 e46b9924c686aa2a9ecfbad11b3cb86b8aeeacfafbc8a91418976296db1d5d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01c6b4a982ef224ff3eaf3f1bdd29464101d9df13d4a3d8e76ced9e7735e98fd
MD5 9adb264f21a295a132dbaa8350fe7faa
BLAKE2b-256 feecf8f01b81d6d5b3f46f385e757553a73608b4dfbc65f6e948029a214d1209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67ad6c1dd6a2a55f4bb9c5be723aed5c9c31566aef79a9813bc875efcbf14660
MD5 802571884e3926c1ac0fd9c3c57e8ffd
BLAKE2b-256 02476054ba02e9f8b35b7007da6de491f62ac4f355cab289a6151a6523b3ae35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d73637cc98285388d147d497735b977204ae09a6b19ba75237b90877d4480b9e
MD5 9908b83ec7dddd6061f0a2502b990b96
BLAKE2b-256 8f16b7c783c155f406905f922ac2e8737612a8284e6b3a1088aaeeb21969ed32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e230ae5419e4d9b7c8d1b1b8e04abfdbb4f8672599a615de30fd9c01e8e24a1
MD5 bb1822ec42af1ecf06ae64216f8c318b
BLAKE2b-256 9b154b972cd94808b8fd35933979f3549bcef915446256df655a4b41e98a826e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f0ae04360d3ccded7d8a0852912a349ca2e9f4e0cde5caee490dbd2f9fcc674
MD5 85bfcfdc89524d6747f8720a60e7bf63
BLAKE2b-256 e10ad5d93b3cbc035238b864084568b431cf1e766929d8a1b2185a3463f277d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5e39729898b0b94e022790b9bb8fd53e92f598a873ac0d945e498f0599628e5
MD5 6571515b332ed6ac8e94b6421c23c0b5
BLAKE2b-256 189d3b4d9239614c3bf7302f7660756dedd86254afe6002f8fad7929ca4010e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 035b68ec1f823e764bc46e21cbb52616228cb76c3f024f87787ff8fbe950fbbe
MD5 c4433d48cf6a1e36eae85eb5fd7516f0
BLAKE2b-256 da36c08e0d1931cef6360fcb143f7ec4c6a0f004ff0fcee330a9152f7652dbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac24fafa25f9f90c6a95075bb7ac3ec156dd224a4ee83aeea26cd48286fc6cc1
MD5 ac9847e5361cacc74aaaa49a8f174032
BLAKE2b-256 ece0e36e6ec9abe5c95cd329d6f6e38ad37859c5238769784ec8a6497c493a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 930adc872f86d034bfa192ceea2353c3be3bb25145bf62e676593ece80eb6460
MD5 95f70c7f55804e1fe9cc7a478ee02e08
BLAKE2b-256 f78286619272d6c5ceae1d3a60e64fe36a491b3f8afed521aec67619026ff508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8a6f23b31fe88826ba9b6a0adebb51aebe867b11b6ccab8107cd8025fd9d8c0
MD5 2fbecd0841278b4f4c0d4e8e85af3689
BLAKE2b-256 61a4c6e013b95b12024e3052abb8aa22a7eee95155c845944f227e21a41c3a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de35bcbe010eb26f1490f7ca08b586f94485c2456bceac86cb2d299df9b765c1
MD5 8c5f5fd86129cba5139095e8e69f92a6
BLAKE2b-256 ee49e6a3e6cd98baa96846d6bbd54131129125f47784b4825597966ff1c165a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92a58732487b73c16075b7869accb8758a8359dac89f38d5cae6b9851bd91380
MD5 df6de1a2b8662aadc345a1dfe0b69931
BLAKE2b-256 30659d582d5380fbc6860fddcdeec7bd06ea0884ef42104ec433a7bb88c46299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fb544eb36a9a293cccac4c62a4d774e026882e66942b3518a50f77109c8a981f
MD5 928b677562a2b06d4e8c05e3030a6731
BLAKE2b-256 3ddf89ed4e6c8f5abec4638e7d8a3aa931b372919e76c1acc158dd18d761b884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ce9f326b0ef58c61c2e7a17521bc87974f486951ebd1362a84f4b698b7afcdd
MD5 52b8a69281c703edb7fae3eeb53dd33c
BLAKE2b-256 d7908efc72270c492ac92970a022aa11a3669daaf594addb9f566dcdbc5d2779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d552ea6955506fb2af02c111dda8c541caaa2be4a1918b6f64145df066879709
MD5 125218d1bfcce10358f7b48716fc1f5d
BLAKE2b-256 9d19c729cf7a6845ac8fce371e94393e964109165d444f5173a090c6806ce420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cb14f03242f3a58a18d6a6fe46c72e86b4411e00149adfdd1f659e15214f34c0
MD5 e333c16e9455d7c4b05c3b0cb7412141
BLAKE2b-256 561210ef094f50dae428c425bd5fd5dfdf2c8525280116876c4d631da7b44934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da448788382708a247667591b2117c060d5b8577a31a71230fb2aa84c27d9d45
MD5 e1642158fe540765f121f3233cdbdee4
BLAKE2b-256 332113e39b2401fe5b543e77f7ebefc270728efaea1676c30f883b146799f842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69aebb9007f0e166c4828c4dc8252ab642711749c166b208d9bb73e973b078f9
MD5 c121905618824c864528955f8ad87e63
BLAKE2b-256 89daaed83476eeb8ecce89db7d115d8612f1880cdaeb21da75dddde651b5ee26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c182bab32f3ea267dcf4db525e437cc89c0f41699ec769f7b17dcd78fd93d007
MD5 5099ecbe72ed60ac3a2b2251c1110941
BLAKE2b-256 0dcb721f2fae1040daad63ef73e6058454403376d6b3e3c2758ace18f2733044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed03d7f332c1594670c438cbb9d560a58d57b1e311ff11f75890a10e0da276e7
MD5 3a0448a9a42b37412b53a8e8a1986aa5
BLAKE2b-256 54636c9d27a6704523cb9af17e90e02eebf9239c5941e3b2ab08ecd63c62c098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1e1d491c96dde9f4e2538a63dba785eacc9b30dd525d1d6db9cca27d566b129
MD5 fe3592a96e5f1db3db194ab8960a3052
BLAKE2b-256 ce748da5ac0a601f7cdf58fbda4a819ff173a11e793eecb2a8d0f3daf23e261e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d40319722d52f56a1d6dd54c5ef7ee04870ab475ad63f6828f83647f68f25e0c
MD5 e174ee197f2ed4e976baffa65bc8910d
BLAKE2b-256 2792168849809a235e11ffaa9aa8f634e80ee2b9ac4671a8984728ae949d64da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92620d4f54cf14e497667432a598a4f5f0a78f82181e227196f21e26325a864e
MD5 f5e6828c8f674da9fa5bf087d5f195cb
BLAKE2b-256 b75e86b65cfbadc7c727c7c3dcddd0671f50087acbadde09f5f3511a92489e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 117b45b52c550f39424589fc81813fbe57bb93ff472a8be5e84fea60fb5d6605
MD5 c200ac6af0189d86c46e7f82b671933d
BLAKE2b-256 493f524869c4fe0a155b2f38da459b6d75c6bd255cf08ff34b5e5ac20e7b9f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 317329cd56b64e3e82811e14cb4f9ec7fd569578d5cdc540178452cb38765fa0
MD5 2a52936956dd1cb04b9342f19cc23f46
BLAKE2b-256 4d6589562d4c6a531e9318059980a3e6174d171d9e08c693af4d02c8a110096a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 151287acae8c035e443b2eb22ec0decdf392e8ab59b004206a7471ab334d25c3
MD5 721a1396e7d7927bb4d968a8f61fd024
BLAKE2b-256 a55aa3dcfdbcbec1d90011a14e70e7d90f1d273ca5e1b994db0c6db3a00f9a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61342ab339c7cb407e8121d3a507f7d87fe34cff1e49c9f1873e2153c0eb6773
MD5 fd7d607095836a27c86abad48a9ff175
BLAKE2b-256 8fbd1589e8553390858a2681e25a7808559ab129c4a1dbcd5cb6cdfa4fa87cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 730c3585f40a18635ce32cbc6c4822800da6706396cb4572a56cd6592ba84508
MD5 67a65884133b1abf8e6f6f1c93d968c0
BLAKE2b-256 6ff5a1bc2242047aaeb887191a20abd77403d1f2b51a2f34ef1c1880ac92088c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 739c9b430ee924c4feb6c1204db5ab354970967f3b7eeccc779fe1bf7b26f3d4
MD5 dcfcb43f3538683adbb9607d82828cbe
BLAKE2b-256 0b1eb755f5fdd7d062d6cc606a2525f1dc75859273f9aa2d0066f0d05ae852c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7f4a4829b2dbde18a70b5e111437de9838bcf5d41d9a5cebfb110f3f47382d7
MD5 685fc4cd63d877fe1311f39e76177c1d
BLAKE2b-256 f1502735da5bdab511cb929e44718808a5ac42270c7c54c0b41ed1fdd117e50a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f20de859c964fc728b5bacb5d63498c400a973eff6d698fd6a6f140b734e3a1
MD5 af75d8955a86dc0cedda596552d61097
BLAKE2b-256 898597ae4f5218fd7cd84de5864e71a7a19dec8ab19a2111be330fc3ed3ed03e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04ad4e352a954d54248668ed35167ebb3ce67d3a643fcbb761230768edc31e20
MD5 b5855e0eeb3f417c977dad215c46ae22
BLAKE2b-256 42fefc8c255078f71b6a4128775614cc25edce00a70ddeed8daebe87630494e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e62069e21003ce70ea1ea502d10352ef4a3498f163d1ed35d2c6acd1f82368ea
MD5 8a2ae04246f36054b360421b69ba449d
BLAKE2b-256 446b99f286ca043905f08771623b486da963124feb20ded77c08308ad6d28f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d687dd56ac7a9ec79eb7111c5a3b33501a943f7f29467ae025b51a103ac0652
MD5 e0d52e710a55948c69345f04a34e4f7c
BLAKE2b-256 105a6d4ab8e61fde8a3ac3168472dc6ab9388d75622e5d577dd098684f4cfc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4d6dd4c17dd9401506c84f2ad12c5833277cb902154ae636a589285a69732fc
MD5 40f294d492bd993f9ae99ab5d799b2f6
BLAKE2b-256 ffed191bb2ed828f7ea48e83fefbcc7e74d31467bee3f957778e9fc9a4c0d08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3391f4042b04f9e28a00d5141a3188baaf2d7940f506742ffff5cfdbc38038e
MD5 29fc470221125dd27707a6ac5abf5140
BLAKE2b-256 d8d5ac1f0fc1afbafe1ad44072b72891ddc8bc87e1d6cab57fd74eb771b7ed5b

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