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.3.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.3-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.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (657.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (635.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-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.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (635.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (628.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (635.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (603.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

typhoon_rainflow-0.1.3-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.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (491.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (395.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

typhoon_rainflow-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl (626.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-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.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-cp313-cp313-win_amd64.whl (259.7 kB view details)

Uploaded CPython 3.13Windows x86-64

typhoon_rainflow-0.1.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (657.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (490.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (394.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

typhoon_rainflow-0.1.3-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.3-cp312-cp312-win_amd64.whl (259.6 kB view details)

Uploaded CPython 3.12Windows x86-64

typhoon_rainflow-0.1.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (657.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl (724.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

typhoon_rainflow-0.1.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (601.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (490.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (394.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

typhoon_rainflow-0.1.3-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.3-cp311-cp311-win_amd64.whl (260.8 kB view details)

Uploaded CPython 3.11Windows x86-64

typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (627.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_i686.whl (658.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl (725.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (608.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (396.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (658.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-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.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (489.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

typhoon_rainflow-0.1.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-cp39-cp39-win_amd64.whl (261.0 kB view details)

Uploaded CPython 3.9Windows x86-64

typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_i686.whl (659.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl (635.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-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.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (605.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

typhoon_rainflow-0.1.3-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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (658.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl (726.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

typhoon_rainflow-0.1.3-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.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (494.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

typhoon_rainflow-0.1.3-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.3-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.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (464.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

File metadata

  • Download URL: typhoon_rainflow-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 b909bf750e8f1979d5671717b8044f96f668023daaff4f38d74d4d9debf6f909
MD5 fcf2a4d64dd1a9ab627118bf0e12733f
BLAKE2b-256 ffa74c91e127e2276387ddaf10d1d848ff3444f02b6784ae06e4522e978ce9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1f81f1a95a5f2ffde1798a37640d01855bde806e11fdf90e1305ddb713bc527e
MD5 84eba444a52025ff8c868ca8fa8609b5
BLAKE2b-256 28f04075abe2982c466e4029250bbc0cd88b9d9bd2a9cd3c7daec7db27e226fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8b7a66a4792d80b7a44103e3cfb999c1354df48655456ed057d24ba50a78a0a
MD5 7b7144794040c1b2db5e9c329cc43a1f
BLAKE2b-256 e7f2fbf0493eccced5218140bc6d65a0d005c2123a155b8013fd5e61b229675e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d57d2c0ae0fce010c90c509b47edfd5664aa2391e3a41bd1ec602f1735ba8eb0
MD5 ad34b15a49e3e7a579e6d7e3701e8bb4
BLAKE2b-256 76eeeed811cdca284010c9e14ad06d504e3bdaf5d0369f8c3f20bcc3c57e026c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f605f6e0b2a946289bea5e3a0b20ec5fabdc19796980451e9baea2020239310a
MD5 b76f5140ee168f2ea2c9ba0c452b514e
BLAKE2b-256 5f0697c8b34fc2688635c8ada2e02bf2abaddc06b6571411fa09e0f3a3a4fd02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e817643267f23cd03f29c096afcba5cd44ef82338c5069c135c463348ae2d713
MD5 01d17367374196e44ca0b1d250293621
BLAKE2b-256 66d8982ae48b470c7dca90dbc8f5c709ec0b1e48f06d2b41230c62c12cdc148e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62829d753fef274286de2dbff12398c67e62a35d44ddfd3294068e655fb0f5a0
MD5 2a2d6d32f0ad2a3906f7e59a7409684c
BLAKE2b-256 4c11c1b6eaf196d3e922d497e2f9139267dcd82f30ea047f6e29138cbaac6548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71fabbb0e3cd030562b2486e7857a50429165c510c7087bc19ea3fe069983058
MD5 788d8c2e38aa956bbb275287a428783e
BLAKE2b-256 cc2301d44be4b0552887da2b8975f5934675229fb055a06b7673440ecc5e2065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 177dae43bea25007385429148fc3e81fbe190dd7d337483388abd5668e719f0e
MD5 a5b1a13ae2cd46bf0c964f9fa01e4bd2
BLAKE2b-256 17800f4c39bb43a0ec5e47fe287faedb7fcf0d0cea765ad220143aa83b8dba1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0755c06d68887f061facc2770fedc7455bb258bab6d59d1a09bf2b05f9929483
MD5 41b1ee3089e2f7c6fef0d59341c43ce5
BLAKE2b-256 901037e78b6f3fde1880d0bf76b91447ef3da45915028f9b6ef8ace2301d0510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79ee5d1d388a1943de0738ec6f54caf7dc14eb2b340c99da9acd801753ba0818
MD5 904b1d6dc608f98874138e6b4a175189
BLAKE2b-256 8b8427e3463feb4c3d923358e3714246c6122c83bcecbb30a7a06b30e35c862d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 285c27bc658feebf5e9128657293ad8b48ff39e1a373147d19750ac9648fbc5b
MD5 d18cee9a7acfff37319ed7e1f8c0ac16
BLAKE2b-256 fef55f438b9e9cef854235d81fb6cdd033e54c7a72552ed85565a392840b7cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7e70472c521ad3c382b62024d2a8707e78e0875bd12d6f19392aed3c7a3560f
MD5 e2b287b2aca3268f698c26bfee1ca9bf
BLAKE2b-256 9e58ee721c370c06ce8bcf85163e015a87573463abd5af34daa847b2f5dd7103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9da43804f1e3757360f77489e81e4708e1aa14a290fb931c0a8b885b0236a29
MD5 516095c0df3b6c9ca46bbc95b081b076
BLAKE2b-256 c70272e1bbf01a5205f978af4569bfce8e0f33cd5ff4f4e8543cfe9dceb92953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18ed3a1f38e11ef18fefd275c675450691400d24992a382940c3997ead9920e2
MD5 d5432332927d7a7b27e9831e955d5888
BLAKE2b-256 3ac306e2e1043969456fa2c309b30d77b07d513ef0edd5c66a308c38226bd8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0162f92b189ddeeaa069350fce7b02c09b0f8ef66d8d642e719418343b44570b
MD5 b2db70bc4cdd2a3e7f4bbb2a6c2e44d6
BLAKE2b-256 3708e551dc80c27bf073ace5f4cf0a38fb0610ad3302f88d9172d41224dd40f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 40072610b1a30e5946cf98af9304711dfc8bf4b9a4a5d9cb5e8650eb66dd85b6
MD5 0d6df41bc15456d5cb317c97c1a7819b
BLAKE2b-256 cc433b8cef92c3d82520e56765381b24b111579f14e4b168219afd71e185dd69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f133008d004dee4494026b28629c38b5ea11d0f3a4bb7b31a0df29d0e52a1d95
MD5 f7f27aa7ac361e2a6d873595a4694356
BLAKE2b-256 b046fc6927c0cfcdcfc18dac56c2914a3707b14f1c90306365c8da21530ab56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d1be4718fe4683e1d9219886925024b045ebce0244c8ac82ea78a90e2d7758a
MD5 6dafc4d96148ff43657474cd22fb545a
BLAKE2b-256 c28b755f529eb827d6e30da708075318bd04eb99a5fb6538f2a2e239242313cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c83e6109fd745d6dac749a6cb6b5c42b763fdc25b1861abeecd6eeaed243468a
MD5 ccdef547da7fd20bfc92e5020d0837a1
BLAKE2b-256 5ff85c346d491e7f3069836bdd60c1fafb4a7a670b381874a7957ae35d31207a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcdbbf761a07a2f817f17b869fca36ccd0df72f8157c37f08d8dd311cdf66317
MD5 2edb00ecde6b25a1da0392a66c00bc5f
BLAKE2b-256 26604449313ef1ccd50bdce5b5bf5a575046c3719e05abcacf6e81ae45cba38d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20502abe8197b2d574a30eecbc28eb9849d85d3e8b74f16b08c66f177949bab5
MD5 39371051500e7f1515ae38b6ef53d786
BLAKE2b-256 609c01e8cb76f88b26d0c87033aca5ef84b5d15664d93d9ebf0a297d9b48100d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03db637f2de6e1d520c5c54a9a1c1745dce790f67d715950dc61cf76a6780387
MD5 0cfec3b2f0f4ef8a2fcf820f6263ce83
BLAKE2b-256 9e13676f9dfa3d28c2bc813ec6d2e4a8c52bd235d9345511e0e643c731f85678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e65c6f12b782863d320aeaf704c485d5fba3fff058090eb871b1ab403ad8197
MD5 dbeaf2eeccc62fe933e5f613fb22e41b
BLAKE2b-256 1f582d43608ecb88a5e001b6b7b8340986059968cf709fabdf490fd193fe28b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f976cdb2380efaed4db3099c517a16cadc84d7110b954868da1b38ef06c43619
MD5 9d5e88f939fb1f456adffb69bdc24691
BLAKE2b-256 0e29515b9efa869f8f2e4bec514ab724aeab50e583989b06c0ae7f880b9c9d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d741d765c9f0efe8b146baaf027c1e6e6250474232e869e26f1b8e07a9006267
MD5 18e27721829fa38196b3d1c3333ca3d4
BLAKE2b-256 5d419b0ad9ce32c52cbba90cff03fe1821c15be4cef3481b18174b2261eaa3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a25e73d01b4aa84412fcec109247a548dc10dfce1b8c067ff53943bd78271d2
MD5 eba70e7287047716c6c0c76d932dd42b
BLAKE2b-256 99151a13e84b9e6f216f69bfa52a85dac5d0ffe8dc2987a1457fbf0be06d88ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 136397f89d90f9f716ef60813b5a2e6ef89f7c08b6c62f9b225c776d23a6fe3a
MD5 7dfcb0416f5c964572e6f1f078081833
BLAKE2b-256 a37ef7ba859991721de8d9ef0c346531b9541f9026181b7273881e6f90b99c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c0cc3992acae9792682ba2b8f0d44bd6782b200c84f557a47d7e521f7da98c2e
MD5 a0d668b58cee4faa884e618466b5c5d7
BLAKE2b-256 78f64d83eaf24b01232b51794eed64521141e8c4f9825500be5c90602d045ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f615b61d794438429d38fc93660e2979045c0e3db844db02fdd4675f3f52d6ad
MD5 e7935f78969fc8ac28f6f350c37fe321
BLAKE2b-256 2cf4bf8a68146f370c3c1ea7781d5cc0b3cc2c6a6035fca37c18b19379973a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b458e90198f3d42b5af1bd51fcb660daabc5a9d07892514aea3490e9f075efc
MD5 26bf756c2d9c0953d5e34e00a4eac7e7
BLAKE2b-256 78756f5eb6e0597d1e0f8e2c679d8447cd5891b3c89145e7211068cc468c3eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 619b110fc8631c92b4aa138be249b941e1d693060b5dc599cedd19850955c9cc
MD5 baa316988c0ae10d5730e5edf753f39e
BLAKE2b-256 6c6b83b84a24c3dbdffc7ca7040a179558213c747c2dbe33d19b1fbe187c6559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3b3ce16b665b281dad5e0ebb26e22b9cb08718cae3ea1b3df4a58b70b17ac7
MD5 5fd53131b7f3e943f70047585826a188
BLAKE2b-256 513ea8ba2763426d6e88216547b28d57cf5bfef35505a073d6d8f5addd196ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bb159dff2c1ce8f12e8b3e55350b9549454a37c3c82bb813faf897047f99a4a
MD5 38e6f988ffc7675da114f00c867b6456
BLAKE2b-256 2c36485b178c4a1490ef1f2cbf9fa46989de036c198cd975b7a3820a5452568a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b821639ea0a54806b35fbba40e14241b10d17c6c06ea78257e37c79b363e9525
MD5 1580c7a9c901604c58cff59989e6fc6c
BLAKE2b-256 12b22f9221db3406b08c1948a9b7e3636df948fdb49d2c3452d5ff18ff015652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c0876469478fc8d7880d1fe1481ed06c11843852622e8569939d7a62a191f0a
MD5 c9d60cfe407a5c9e1e5cfaf35dd70fd4
BLAKE2b-256 e794b50eb9cf9fae01a6ee85a6b12e1fcdc07317d2b11a19e9da433017bdbbcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1aa7f3137d34607f1c43c5487700ab6a71c85126c134329fd14f2ca872e2c072
MD5 9747fce53ffdf4238dad48ca26e39289
BLAKE2b-256 d2feaa37c6d8d5f4acb1530ddb760b18df35c2c8de51f08ab5875bf8715bf615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 010bd1e9fdde5f1c4a8e94af6aed605a193459a8eeb78cf9cf96bf574f5abf29
MD5 cc75c2f65a63a32ba4aaca03929f0368
BLAKE2b-256 756d0258f08f70e18f35704cc85fb4ba86d0f75ed7cd52fdeb0bdf856c6b45bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b7627bcfb4b37008b45bec927627ca5ee3e1c64da630b5633960238f6fa7351
MD5 4fa0ce31ed2acd176577e7a8343e0d08
BLAKE2b-256 dca9d1ce17b7d6b9e5a4da196df9a12088fec1c8f98e1a832de0dba61f18e3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95e4cfc6155f6e7dd21a0447d2b19a7eaa077a6f2eed95d924045ce871d0c6e5
MD5 08c498bcba151c6d0921c8c194e60069
BLAKE2b-256 883f41860a1ee346024bab9d4aa389beaa2c41d269418f8335f432742f93c7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 236f0387b2c54ec28fa73eb6ee1bf3194cf1b4b1b655acfa0e548c8ea618d68f
MD5 c7341538c8d3f2cb3d468199a044c3c9
BLAKE2b-256 c86cdff73af9ff67340b1f15b72271e1a5d3c4913fcd0fc9a922d9d6beb1fac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f81fa700aaae0427026058b922671ca5103caa71fdaca06ad19f68eb3e57c011
MD5 8527548aac8a3d42588e858661fcc9e0
BLAKE2b-256 5cfda67d2754ed9b14e508c8b8a09f084827615e37b8fe72cc6445f3b68cc71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac5177e4c2ffea39e90f38a427036775069d381b63c4679fd81f58c3a3cb1bdf
MD5 74d43287987f4fd51cd1efd5240b66e9
BLAKE2b-256 5b120711aa61aed23a738cccd8c5e6e03d49a7da9dc2660d889951016bbfcb65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 83cb9fa74f39c334250bec87368ecf339e460572c467169c0202f92957175375
MD5 385f24cb43a2c499133e614212acfe94
BLAKE2b-256 286435bc91edbca262e032e1c6624fec898e6166e7dbad199c36ebcab2b6d364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b50286c2d4e5b59bd18a6d3ed19c24b9c9c183b48d3d196be85fd05d980b56da
MD5 36111915893171ba4a8fe464c5a0b86a
BLAKE2b-256 8554eae82d68fbb394f9904f151b081e97c75d558e16f1cf1d2b5c013cd3b337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 321646103619a27e06d56891d1e7aad9621cfb3dde5bbc7176acb3880a145d01
MD5 9d7a822c96c3cc91f7efe334d875f775
BLAKE2b-256 a202a6f00fbea014cea378875f7ededf7f25f339dfb9c320f7ebc4a8eb1c513e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 299f661d70bd6da4527bbe1281439a0ad12acf620166a3890c125b3df15a8483
MD5 f48b89294530d61bae727ff0347290bd
BLAKE2b-256 a9a398410e711ccff4fd7729145846a0310ac7a61e8bdd12142bfe4304aa8e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23ad4a13792a2a63f271e016d858c7ac7bda241dcff8688acd57d3a267b779d5
MD5 ec99115fcf3398d213f4487d9fb3edc2
BLAKE2b-256 1f50d1b4e32fffa4fddb25a26bf1aac3346f7fb8567018d95f69a3f013931587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79257ff552d376ad03aa9c1760f941cc2f18793d1e8fd2e48cfc7db1f07eb33f
MD5 2509ad8db2cba137b304e4b838116fc7
BLAKE2b-256 bd5a416f6850b042976b272211e7323457e6befda784cb324613085312fb3397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32d8704de3a2b7cfc3cb7a649551ea4ba89b34921532f2ea547b6b4075fdf8fe
MD5 824da1347c4682914b922eafe4044f57
BLAKE2b-256 dfc30cc4e17f8a7b159612bca71ff2efaff6f2d4ccb425c027295815f84e2e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 262127d6f859e3f35b8055314496c1e8129e388e9d8d866125b647e5842a7ac8
MD5 63a4317cb1a657b3622c3490bd64d6ad
BLAKE2b-256 a2964bfd03de8fb67fcbd67ca5ff995ca4b082b53a6a488bfd5d0d03cfcf7c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1d29733d2f64115d714f9ef70c77fca27fe90ca02954b07141b37a88be8bc47
MD5 4f809a8a1d41d6801339db37721f811e
BLAKE2b-256 696b3a682b55ff144303c19abe2d82098c073a71acc07925acf647af39108f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b27df4896b8ea83eea8947b1ab5ac8f26b823da0c6dd250441a89caf73a9de8b
MD5 47a1a1897f9f6275ad687d24869e9caa
BLAKE2b-256 959c2f1a431c5efc4f398e7c01d1403383054b7d46a8a3c86fbd4cdbbd540b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50f7a7825b1febbb347d26af0d1052b96f72c2ef7fb0fd2b10e2682b198cbe65
MD5 9886d7fd853ef163fe364cc6fe6696d0
BLAKE2b-256 999589c0d68007542f7516ae211033dbdb20efbce28b76253c017db54704552c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bbb1467764638bb6e9b9420d80be820c95564da1821ef031e9740f83b7d42b1
MD5 dfdcb06a8f6d2be3017676164a6c9f0b
BLAKE2b-256 f90419b7bfa1e33dce9fbf4a0f7c3fb062202d95560a5194db65bdda4dee7053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 723f9ba24f5efce8932f4f507b073fb1877c483ab985dde61ac6ac6257726ec5
MD5 fd49758b412fc734d46bf15d5d8d337d
BLAKE2b-256 3f6ea03aa6541160ce12af5ae64eb616fe267ed49aacc47ffcee43bc9c8fa86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 81474f7688b8527225ce83d5e1db6b9c1452efc9d95498b2dffdf7f46a9c9c92
MD5 203fa758f696846340e987d8b7786c72
BLAKE2b-256 ee11f938603b3a62f4938de28466946ee8fe245c2c3f67cac694083582e70e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0596c2f4d261567f752f1bacaf8c61ba8d1329196f9d0edcb8ab47c178dc4de
MD5 883d9eb5869202d88b5cda5aa9d5b957
BLAKE2b-256 d6c205f6c2170a5ba0decc0826159ea8fdefc4f8c898dfef13b370bd48cb3270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b6f84a485b9efba744903d7dcebc049a4a9d279b76d0347720b3093718305a32
MD5 b7b5a87c7b5ee46a8448532fd64ecb45
BLAKE2b-256 e6a4c572623f66fe8a2d8ef7509754f76296629eb9a7c05d16cd5c5b4c04deb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc08fe02e650b3559909c9567ca2e4aab70915956d921816d6ed0d018c7f7d41
MD5 51820f6ca2ebe0e848d6a69c5427c6db
BLAKE2b-256 4efbe83fd13ec7871a7c52ab26f4b9b32250891500cce31e4c8a48c0d81ee952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 398ceeabcbcde7c523a2df72495856784780d279eb41378bbd74afa02c968672
MD5 134a3ed169e2bea7d4ddcf48d56cd67e
BLAKE2b-256 b08af1fe762630ab15a128e717a14f9960bb58942a0d61597e90a01bce38db66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d252da2534d159762faa89027051431f91af09b18cec8d0ee3e9ac555277b1d
MD5 a6eede534342d5a0c239463bc74a3eb9
BLAKE2b-256 84b872e7f83c7dceb6b62eda51edd7cb1e9a6990d5c4d2574730b3315388706c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eec72f5d949e01a25ef176bd387a87b285a8d7b76f235a5efe4232f8eb7e6bb5
MD5 5d6259f0aa96e78b7be893cef832bbdc
BLAKE2b-256 0bbd2fbb4bab9108988fd740407bab2cdcea6840fc421792662b80fc880c99e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d825cda2809f74da0d2528e1de1b24d043f1451dc7635b201772aa90ba90014
MD5 be7a4866c510ed36cfd562af875f3275
BLAKE2b-256 2212f992913ce0cace93b939282e4fbff6961518041900d97d69e6c386f60c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de79d02416e2f5806fda2a71d61d6eedd0f13bbbf4f0803098642f606302840e
MD5 d37ab3cd04b4eb5a341a47d50254d58f
BLAKE2b-256 da4a1ab8a6751fcfdf2c3b310676ba70842e2fce7ab7dce0a2dcc382c6783b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 171712bf97551f853adaa316ec284319183f16a989a32a7c18fd4acbec27a988
MD5 b79817d93bfd6672468c6ef5cbbf37c1
BLAKE2b-256 faaa2e350b08f41a085c7f8ee82dcf464c49a0f814f0a50e0611585b571a863c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 387f16bfcbf83cf03adfe6765a272ff6ea72d191312e446940190e9db79d7b69
MD5 520e38194ff8a9c197ee7000f15816b1
BLAKE2b-256 cd3619ca99da156321ce9a95bd98eb3e40723cb551ab4b78e9f8a02823ce782e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb71cccbf7bdb677cfb34f88080e90f307da4ed8c388f51bbc0669e12aff6ac0
MD5 e94da69de25b43d9e563d5862ca65d76
BLAKE2b-256 df25ed04252b4c42e6ba22949356aaa6ae4ff707700cc8a8e6053b28c436534b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3590ffa6d8a3c9a16229b18e7f475baf7211e09f4540edccb7f5974802dd3855
MD5 2b385b3ca9d0523b82491b6da17de0c0
BLAKE2b-256 9f1ad5f12592d81d2acf51712bd92be9f30b00e09cafc390f3819299dede0838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb1ac17bce76a7388290d329e0d192ef7f8256209784914dcebab8e7d15d4ae2
MD5 1aea6d7f1991f93a86036fc7a0616151
BLAKE2b-256 c7d0622b3b20f8c4143bf3f6b780627387bc66e626c0091df0dae33cb4711ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0d137f525990500148924dd7942a590a7d576768190947c93514b1f2837f0df
MD5 2000f3d2f3ede4c5ba33df4596277fbd
BLAKE2b-256 1e3137da56425365c246cfefa8f6f0b4f76d9e0003aee83d8bc272c05e4d6c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e77e64cb191bb742c98a6347c667102c5641ee4ff5a7d8d772225ea85b7a689
MD5 8abcc1c0d2538f8dd3284ebd78620a7c
BLAKE2b-256 5d6c961b8bbba5555c430ca34f961a382b0146084d0b8bbd364b7954be7d4192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1bf6c84e4ab283b3cb57800351fc3fd907c7b7203eaaad8c36ea3879e96cb01
MD5 2ce590ab335baadb692a80f084b54088
BLAKE2b-256 30a2825dcc7c7b1507f218e03a1b7ef31896f1b7883dab96871b545d8d6f5845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a5df6e9884939965e2e7b3fe77ba498d169961a2e7872c1fa84f3d7a5eaeef8
MD5 f02de04f35fac0c685e03ac5843d1bae
BLAKE2b-256 99162ffa8df3db6e90f5016dc52141bf640a1eef3f9870ac68dc1e4fb01e2e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f8ac47badb7df584483f55ed1393d7cdf544e841e003e8f63c17abfb73b7958
MD5 25c3585d6858e1b65257e2a2eefab7cf
BLAKE2b-256 3c45a64b7aa6d8e180ce99d5d23383bede1e07c74e57e6de9edf429ca7175ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07e34214a95126d382556338147ef52be3c063c4de6d6a9851d2691efa2f1c7b
MD5 6aa13c08f5f13738e1b0f1e6fccfec3f
BLAKE2b-256 66c5c70c035bdc90a1af96448b71e2ffcee2960de0e0fded39e3f1307d63fe08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88ee23cd9e0f989add376c276d57fcf5aa3179cda669622a193b1a8883ec1f77
MD5 25de705bbb6b524bfde1756aae615c47
BLAKE2b-256 1c74017c53bf7256139c66f5ddd80541e4e94c44b740ffadcae0512a57626970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30d41a166a16ca8b8b792e26103712149abfc6bcaca7a8343a8f5e63f3eeccbc
MD5 bb4a5cf26ca20f130a6fd7c78f9d5382
BLAKE2b-256 5f471db512afad4f1b68de71e486c749c96b33ad502692809c7aeae5ec5ce503

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59e9642fb9efd142205d8739ef8737e7a11de14d70706a6eb71afbc8cf3267f4
MD5 4007c3b92ab5d0be9beab5f31fb43263
BLAKE2b-256 f7fe587d036c4e18ad2117b1f09e67dd0d1eb7180520a2ab089d2e409f1ce586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7bf2e1e84cfec241892e01b63f861657b0a9f3749e56ada0d124603d25d40f0d
MD5 66e216aba23a58c38e980157cef2f085
BLAKE2b-256 fd5d32c85fe40b0175dbfa4922daa50ed376adda0562abcd7fac8fd171ab64dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77f932afa6843d0f34f64a4d7e16883f7e9642648526abf97a45116bbf7ac0ae
MD5 b8e963fc44686c8b278beef986a3524a
BLAKE2b-256 075137257c0e0fe9578031b7650c350b36d36d89aa94ce1bea0e8ebf540c0555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbc5a1cc2cb0be38e221af0ae9bec854d4268ca930315e56bd7ef77662afb550
MD5 96c47967d7fe108bfbf704de1f9cfce4
BLAKE2b-256 9d18062e66aa0577b8d720c0a71da27851f58a8aef095923013ff4445011bbff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98048c7c2d05826dbfaee307b3773ae6669db1f0a898cfd3d54935020d57620a
MD5 397255da18f1fa37e19c938411f58674
BLAKE2b-256 9a81b4a181e86d85ccf9bf9df532fea71b8becbdb8f0bd4a4a804ff8913c9170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd63f603093d5cddd1c9a1bf6ed0bd9b412b42e264c7f894102abf2df1103a27
MD5 2bb76d23d5cdaf52439ad4ccd31a0933
BLAKE2b-256 29f3268839d8b8f2fb937c4885442404214269255833ab7d64f5d6fbc0629519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35ca17f599fd7fed9a758ced8271430de43275a14311522be8b91cbcde7a558e
MD5 7901c8ddea7c7b8c2b5acaa144fe3ebb
BLAKE2b-256 69669db057726c027e79f4cb224c097f0700099215649b8e60bb228d601c5da0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f81850567bbe981025083d4493508b355f8ed304ea421de566a6d79bfab79544
MD5 eb395a3b00da7084ee174b794b268cb2
BLAKE2b-256 f8b59429ebe289031bbc96d10dd69418a3d5872170badb6a3850fecf61b2d15a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6861a0f986a5e32afc8e68268c6447a4f39bc626a3bc521b732fc75808d3ac74
MD5 e2fd7a56ebc78884281fb18fae0f35af
BLAKE2b-256 6db0d4d584c2300a241ea677a9ad78b9e95e7d18b39763df024194138519d63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2de0c83d305e3662614d2018803253df6892b63e0e035cc646cf982d7583e592
MD5 d7527037d5d82c1da64ba76f3c3cc897
BLAKE2b-256 9954ee8d506ebddc688fa3642bab4fee0584424acac288dfc97406d4c28797fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 084293061e251a9248dcb5fdcd9a2b5891a380676453b8604f0c85caaf3fd497
MD5 ede81143e95e61eebc5b611ae69023b8
BLAKE2b-256 05a5307d9d477375a23554ff5bfa77c99235c6bb572356208ed13ed8d9c81c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 025c9d45e523990743565959b24d91a28d2388006e1028659cdbca53f8e57159
MD5 bb80334a351b862040ac2e6dfd5ee541
BLAKE2b-256 5f58ebca769ca418fb940c99feb1c491832690e4d3da45d01f2949ad323fe4d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6e7384c6335857d871647ccf4e56ab4683c0dfb7401c8dba60f9f96894ba545a
MD5 504322a81a34932a26eba1d83f5b0e43
BLAKE2b-256 2d3a2c6535744049ea7399d005481e03153c8eb04a0dbede42884ccc53c4b115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec3605807f25861d528d94953e4ff973f730ac2da33b2a66a6e7ec4fc5ad02a
MD5 fd60b4793df2e8bcc822851b6b85a885
BLAKE2b-256 b4f8125903f45bbb1717711758adde44a056077e8c0592cc25bc26cd4b1d4dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7505fd17995711f4c0780564cd69eb573c876bddb611181b84ec9ba801bd0e6
MD5 07638573403465e952d90e77d3ddd775
BLAKE2b-256 9a7f2502b3b821c5c713c657848dd452c5de131f1dd028da40944fa3f06ec62a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6afe01932dc932020a09d890f718f07c7539b0a3ed785773b82b95c65244dea1
MD5 ece967a31dafef1fb3f01534592aa469
BLAKE2b-256 e68d78bced82300a33ab3d6066699025ca670517be0a20c5376297b8042de485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40e8b6bf09fd190b9e94c039d640b248ac3cccc550533c27abced4d99c350e68
MD5 0b6c5698a4da39417336ac64062d018c
BLAKE2b-256 bf7f7bdcb52e946f8fdf572a1e568e2095e0bde14fa98e5a4c1737f730c5f4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c6a57ae7225142647e9e0b94ae6a72e943cd06e4251a841f0be894e507f0842
MD5 87a0df78d6edd5f4fa43738fca0bd6ac
BLAKE2b-256 71ea8107c0531ae2c2748dbaac2bc4470140002465e82f0d61160fa12a07d65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86ea39d01b9f9171606c38f81742176a1ad0ad4a7efe3f68e7a66349f972b426
MD5 eb77f32ffb6ea9315296d16c14194b2a
BLAKE2b-256 48d27c4ccc139bf00e6d4abf1c9e12abf7af58d66961d382448c9a4a0001ed95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0800ce219587430a3324a190636c8f7bb96cf1114574f0ebb5e818253f745e6
MD5 1dc12f848945da8c296cc290b8a06c0c
BLAKE2b-256 bd3807975e3572342e21c1f2a8a990bd694f219f1ec7429531f2bd8fd465ada7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 927490aea079dac63aa7d70341dd23330669e614859f00c0fa96e1fad15db28a
MD5 b67dd72314246a27f3faa13656793b79
BLAKE2b-256 8c2a073acc47fda6c1209972f9007ed305d1f2e4afc5a66f89d158af89b31fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08e96f1ff59968bb1fee727f8e0c36f2be7efe2928347f555e3ae380c39adf30
MD5 f7bc14f2b3647e11f2b74270e6a7de22
BLAKE2b-256 c24b70d4a59b1f40ba8a16061b06d95a57f0d9057b609d34600c7c940bbd4d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e57711bfad30b09101378e999ecec0ef46e07d7540926eafcd29f998e637553b
MD5 5d9d09451004320ee8833f84e5871b9b
BLAKE2b-256 f8e1f532a66a1a380633ef62459a67223acb4d1643b2e532fed2afc8ba7a53ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccbba4d103bae11bdf3925f8fc4967d06957e591e60e2eb1f90b284b11f5a8a9
MD5 80d9770e81350c80a5bcf84cded7ace8
BLAKE2b-256 4239f3aef5a032aacb6ec1dccb049e52cc776e8e0b8c150f5ff64225c6db15d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9023f73854f7793119b6099d7ed17f5839d6ee5fadb6cb7e13c554110b3b1ffa
MD5 8211a598ecb5075939da581da2ecc2ff
BLAKE2b-256 2a7da9369ad612719fd29a1b86553f148654138332ad5b1ca1e78e9cbbecf850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6f08ae5745c33f5236d3b8ea590c79bfd73bc6f4e5bbf26e9be2b5277db06ad5
MD5 dd0e1f75ea3c57b4f2d9e018ccd78d31
BLAKE2b-256 d1d8b6dff912ba349de1a2079c31661ac462ed82bd895c16a48c777813e6d6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e79ca0522d3aa7dd5020a3b263eb45da9fc044bb63e343c0099878db6ba27ad
MD5 46a17e3dca4b1d057f2ee56285bb8b8f
BLAKE2b-256 8d08f0df2772c0a43987b76fd44f2cad29d03d4aff1d38cbaeae16dac1312c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b93ebc0defd25d6eee9a9d5d0b33781b7484dac0ccc4fbd0a2e1a5543af0d1a9
MD5 45c1018bc3ddce0678603cf308d0d017
BLAKE2b-256 34e013558160a3f2bf77b294c08f3628ee20fb28071ee0d85d0aca34c276f485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 411af83c5e9fc34d15d7212466a519aac4ba75f1fce1a2764126703c443b073b
MD5 76a5bd4e093eee10e3b5caf0ef03c49b
BLAKE2b-256 8b2c89ed079badde9dc6cb0c7842a103f9270b988144ce0a12f51264f19659d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3411599f2da8870483eaa5a8e56ce3571282ac36e9467cf53bc928e2456ea319
MD5 47e54ffa875c9f649007951df48a9227
BLAKE2b-256 8be39a74ab77b5299a509b79b4fddeba5c47af8eeae7bc4c946ccfa5b81d99a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36d4eec31effd95a722ffec6a9d30e53a48e58ecaf69d2b616f3d58838f7eae3
MD5 23a1db3bf0e1660609d2cade075c491a
BLAKE2b-256 0bcb49c98ec0c1ff325aa5de885b8c9a46c5c93a086c30d92eeaed575d150d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95653174cdfb1bf34ea83193f89e1f8911f5d78bfcf4554345d5aaa161923510
MD5 8da56eabe2e16b212d45dd589b5f223c
BLAKE2b-256 e302ab73c9125680c9f7e7e0e3712abeaf802d8272fa00b50a11f978269fff48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for typhoon_rainflow-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a87ca6f7cdd63d5deb6d1a730a503ce3f63913f16000d1424e4dbf334c5ef4f7
MD5 9e0e57b8a1ee0eb27f0558a86abff793
BLAKE2b-256 3e81c79c97101c2d2257df84902ae45cac2dd0966571fb6b9be439ea7053eac8

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