Fast rainflow counting for streaming input written in Rust
Project description
typhoon
Typhoon is a rainflow counting Python module written in Rust by Markus Wegmann (mw@technokrat.ch).
It uses a new windowed four-point counting method which can be run in parallel on multiple cores and allows for chunk-based sample stream processing, preserving half cycles for future chunks.
It is therefore intended for real-time processing of load captures and serves as as crucial part of i-Spring's in-edge data processing chain.
Installation
Add the package typhoon-rainflow to your Python project, e.g.
poetry add typhoon-rainflow
Python API
The Python package exposes two main namespaces:
typhoon.typhoon: low-level, performance‑critical functions implemented in Rust.typhoon.helper: convenience utilities for working with the rainflow output.
The top-level package re-exports everything from typhoon.typhoon, so you can either
import typhoon # recommended for normal use
from typhoon import rainflow, goodman_transform
or
from typhoon.typhoon import rainflow
from typhoon import helper # for helper utilities
Core functions (typhoon.typhoon)
All arguments are keyword-compatible with the examples below.
-
init_tracing() -> None- Initialize verbose tracing/logging from the Rust implementation.
- Intended mainly for debugging and performance analysis; it writes to stdout.
-
rainflow(waveform, last_peaks=None, bin_size=0.0, threshold=None, min_chunk_size=64*1024)- Perform windowed four-point rainflow counting on a 1D NumPy waveform.
waveform: 1Dnumpy.ndarrayoffloat32orfloat64.last_peaks: optional 1D array of peaks from the previous chunk (for streaming).bin_size: bin width for quantizing ranges;0.0disables quantization.threshold: minimum cycle amplitude to count; default0.0.min_chunk_size: minimum chunk size for internal parallelization.- Returns
(cycles, residual_peaks)wherecyclesis a dict{(s_lower, s_upper): count}andresidual_peaksis a 1D NumPy array of remaining peaks to pass to the next call.
-
goodman_transform(cycles, m, m2=None)- Apply a (piecewise) Goodman-like mean stress correction to rainflow cycles.
cycles: mapping{(s_lower, s_upper): count}(e.g. first return value ofrainflow).m: main slope/parameter.m2: optional secondary slope; defaults tom / 3if omitted.- Returns a dict
{s_a_ers: count}wheres_a_ersis the equivalent range.
-
summed_histogram(hist)- Build a descending cumulative histogram from the Goodman-transformed result.
hist: mapping{s_a_ers: count}such as returned fromgoodman_transform.- Returns a list of
(s_a_ers, cumulative_count)pairs sorted from high to low range.
-
fkm_miner_damage(goodman_result, n_d, sigma_d, k, q=None, mode=MinerDamageMode.Modified) -> float- Compute a Miner damage coefficient $D$ from a Goodman-transformed collective.
goodman_result: mapping{sigma_a: count}as returned fromgoodman_transform.n_d: $N_D$ (cycles allowed at endurance limit).sigma_d: $\sigma_D$ (endurance limit level).k: Woehler exponent $k$.q: exponent modifier for amplitudes below $\sigma_D$; defaults tok - 1.mode:MinerDamageMode.Modified(default): returns $D_{MM}$ (FKM modified Miner).MinerDamageMode.Original: returns $D_{OM}$ (original Miner, ignoring amplitudes below $\sigma_D$).
Stateful streaming (RainflowContext)
If you process signals chunk-by-chunk, repeatedly calling rainflow() and merging dicts/Counters can become a bottleneck.
RainflowContext keeps the accumulated cycle map and the residual last_peaks inside the Rust extension, so each new chunk only updates the existing state.
Key methods:
process(waveform): update the internal state from one waveform chunk.to_counter(): export the accumulated cycles as a Pythoncollections.Counter.to_heatmap(include_half_cycles=False): export a dense 2D NumPy array for plotting (and the corresponding bin centers).- When
include_half_cycles=True, the current residuallast_peaksare treated as half-cycles (each adjacent peak-pair contributes0.5).
- When
goodman_transform(m, m2=None, include_half_cycles=False): Goodman transform directly on the internal state.- When
include_half_cycles=True, the current residuallast_peaksare treated as half-cycles (each adjacent peak-pair contributes0.5).
- When
summed_histogram(m, m2=None, include_half_cycles=False): convenience wrapper that returns the descending cumulative histogram (same format astyphoon.summed_histogram).fkm_miner_damage(m, n_d, sigma_d, k, m2=None, include_half_cycles=False, q=None, mode=MinerDamageMode.Modified): compute Miner damage directly from the internal accumulated cycles.
Example:
import numpy as np
import typhoon
ctx = typhoon.RainflowContext(bin_size=1.0, threshold=0.0)
for chunk in chunks: # iterable of 1D numpy arrays
ctx.process(chunk)
# Export accumulated cycles
cycles = ctx.to_counter()
# Goodman transform (optionally including the current residual half-cycles)
hist = ctx.goodman_transform(m=0.3, include_half_cycles=True)
# Summed histogram directly from the context
summed = ctx.summed_histogram(m=0.3, include_half_cycles=True)
# Heatmap export for matplotlib (optionally include residual half-cycles)
heatmap, bins = ctx.to_heatmap(include_half_cycles=True)
# Example plotting
# import matplotlib.pyplot as plt
# plt.imshow(heatmap, origin="lower")
# plt.xticks(range(len(bins)), bins, rotation=90)
# plt.yticks(range(len(bins)), bins)
# plt.xlabel("to")
# plt.ylabel("from")
# plt.colorbar(label="count")
# plt.tight_layout()
# plt.show()
Helper utilities (typhoon.helper)
The helper module provides convenience tools for post-processing and analysis.
-
merge_cycle_counters(counters)- Merge multiple
dict/Counterobjects of the form{(from, to): count}. - Useful when combining rainflow results from multiple chunks or channels.
- Merge multiple
-
add_residual_half_cycles(counter, residual_peaks)- Convert the trailing
residual_peaksfromrainflowinto half-cycles and add them to an existing counter. - Each adjacent pair of peaks
(p_i, p_{i+1})contributes0.5to the corresponding cycle key.
- Convert the trailing
-
counter_to_full_interval_df(counter, bin_size=0.1, closed="right", round_decimals=12)- Convert a sparse
(from, to): countmapping into a dense 2Dpandas.DataFrameover all intervals. - Returns a DataFrame with a
(from, to)MultiIndexofpd.Intervaland a single"value"column.
- Convert a sparse
Woehler curves (typhoon.woehler)
The typhoon.woehler module provides helpers for evaluating S–N (Woehler) curves.
Key entry points are:
WoehlerCurveParams(sd, nd, k1, k2=None, ts=None, tn=None)- Container for the curve parameters: -sd: fatigue strength atndcycles for the reference failure probability. -nd: reference number of cycles (e.g. 1e6). -k1: slope in the finite-life region. -k2: optional slope in the endurance region; derived from the Miner rule if omitted. -ts/tn: optional scattering parameters controlling probability transforms ofsdandnd.WoehlerCurveParams.with_predamage(d_predamage, q=None)- Returns a new set of curve parameters modified by a pre-damage value $D_{predamage}$. - Uses the FKM-style transformation: - $\sigma_{D,dam} = \sigma_D,(1-D_{predamage})^{1/q}$ - $N_{D,dam} = N_D,(\sigma_{D,dam}/\sigma_D)^{-(k-q)}$ with $k=k_1$ - Ifqis omitted, defaults tok1 - 1.MinerTypeenum - Miner damage rule variant that determines the second slopek2:NONE,ORIGINAL,ELEMENTARY,HAIBACH.woehler_log_space(minimum=1.0, maximum=1e8, n=101)- Convenience helper to generate a logarithmically spaced cycle axis for plotting Woehler curves.woehler_loads_basic(cycles, params, miner=MinerType.NONE)- Compute a "native" Woehler curve without probability/scattering transformation, but honouring the selected Miner type.woehler_loads(cycles, params, miner=MinerType.NONE, failure_probability=0.5)- Compute a probability-dependent Woehler curve using an internal approximation of the normal inverse CDF.
Example Usage
Basic rainflow counting
import numpy as np
import typhoon
waveform = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0], dtype=np.float32)
cycles, residual_peaks = typhoon.rainflow(
waveform=waveform,
last_peaks=None,
bin_size=1.0,
)
print("Cycles:", cycles)
print("Residual peaks:", residual_peaks)
Streaming / chunked processing with helpers
from collections import Counter
import numpy as np
import typhoon
from typhoon import helper
waveform1 = np.array([0.0, 1.0, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0], dtype=np.float32)
waveform2 = np.array([3.0, 5.0, 4.0, 2.0], dtype=np.float32)
# First chunk
cycles1, residual1 = typhoon.rainflow(waveform1, last_peaks=None, bin_size=1.0)
# Second chunk, passing residual peaks from the first
cycles2, residual2 = typhoon.rainflow(waveform2, last_peaks=residual1, bin_size=1.0)
# Merge cycle counts from both chunks
merged = helper.merge_cycle_counters([cycles1, cycles2])
# Optionally add remaining half-cycles from the final residual peaks
merged_with_residuals = helper.add_residual_half_cycles(merged, residual2)
print("Merged cycles:", merged_with_residuals)
Goodman transform and summed histogram
import typhoon
from typhoon import helper
cycles, residual_peaks = typhoon.rainflow(waveform, last_peaks=None, bin_size=1.0)
# Apply Goodman transform
hist = typhoon.goodman_transform(cycles, m=0.3)
# Summed histogram from the Goodman result
summed = typhoon.summed_histogram(hist)
print("Goodman result:", hist)
print("Summed histogram:", summed)
FKM Modified Miner damage (from Goodman result)
import typhoon
# hist is the Goodman-transformed collective: {sigma_a: count}
hist = typhoon.goodman_transform(cycles, m=0.3)
# FKM modified Miner damage (D_MM)
d_mm = typhoon.fkm_miner_damage(hist, n_d=1e6, sigma_d=100.0, k=5.0)
# Original Miner damage (D_OM) only (ignore amplitudes below sigma_d)
d_om = typhoon.fkm_miner_damage(
hist,
n_d=1e6,
sigma_d=100.0,
k=5.0,
mode=typhoon.MinerDamageMode.Original,
)
print("D_MM:", d_mm)
print("D_OM:", d_om)
Testing
pipx install nox
nox -s build
nox -s test
nox -s develop
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file typhoon_rainflow-0.2.3.tar.gz.
File metadata
- Download URL: typhoon_rainflow-0.2.3.tar.gz
- Upload date:
- Size: 29.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89c7414bc9d9b20aa047dca3b32d1e715823c553a4c7c70f78f0c12e6460747
|
|
| MD5 |
67e4d191d70bff3d01b850c7020f0a19
|
|
| BLAKE2b-256 |
e9c428b68d4d3daa4aea96eef2bca3f6de02d20e019926db7a39c8de921f8fd8
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 726.1 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8c36dddc47fdd1f8795a5be4860e629833baa08148d802872029fcea144dbf3
|
|
| MD5 |
a99cd5646a703045e626e9a1662ad762
|
|
| BLAKE2b-256 |
95bf763566483b8472a0cd5a9a344213248abefab9eb2e4b8920a62cd6387940
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 765.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c18dd7ccdffa9fb196eb498b276b2049b3828ef6025f55d39a5e5f5211e35875
|
|
| MD5 |
a976f14e4f344f8b8b8d32edf9df48ad
|
|
| BLAKE2b-256 |
a9597905221967f6b9eb67c68c09f0484d44c556dc4707d4f55b387b8248ad06
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 794.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2a4197830ffd1e406ecb0910321fc9cbc75d2a82bfc2d121a9087b5e59d1130e
|
|
| MD5 |
6715ce69a69393153656b1ffba4167b3
|
|
| BLAKE2b-256 |
f10ce946be184a0cad09e3fae7b017f425d383555658f154abe482d83c92ec21
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a23fea4225259fca4df99abe27cf09ec14fa1b978b4955a28dcf86890e6a1a5c
|
|
| MD5 |
698c62907e798da51c179f8d856b53bd
|
|
| BLAKE2b-256 |
aabdae0f35e50912a6bfcf1a68b266f44a46112b76bc7df5989bb23c17859c47
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
72d8e2782497061a38e8f14ec9946587ee2b1b021595d78fd70036a21a11713e
|
|
| MD5 |
106b6767d6d227806d3ff6a6b503e8de
|
|
| BLAKE2b-256 |
7fbaa759c82903343594d638c727286bd7501510659b46f47abcf886936dc221
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 543.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64385e97ef5c29f5bf5eda5b248c73191d8f3954da76520dc80742956aaea46b
|
|
| MD5 |
9661a430516a939d836e6b76be98910d
|
|
| BLAKE2b-256 |
56476d00d7ebf7e2d896a1f24926d2427464d0c778eef08ea1d18ebbeeb1b401
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 666.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfaf16695544568eac3370d1d793a67ac21c06b2dc1ba401f56dfdc2ce6a4c07
|
|
| MD5 |
0c49848ea4a7a3994e773bfdce98b4f6
|
|
| BLAKE2b-256 |
92fcb366be624011787765b20202261b2d8300074e53b618c0cda17f652e3cf1
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 558.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a374107b857f11c26a21d97ee30b6cb42a2f2ace6d0d49db838441e8865c69c6
|
|
| MD5 |
1c2ad33f59995e83094c74ef57441773
|
|
| BLAKE2b-256 |
581274cc9aa3a34d82216b643736fbefc9fec6a3029b25cd59d583511558ecbc
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
597e82c1ed542456d3a976df0f208992a3b56125124d75f8bf741176e827da4f
|
|
| MD5 |
a9a0fb7155fa507d3b49a1ce3d01c1b4
|
|
| BLAKE2b-256 |
0b1987df22fdca71054ad3735640051d0734c418ade76bfd602417e3f7ca7714
|
File details
Details for the file typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
921eea95992039a91c8d18798a92c25bc7c1fcaeb3adc0361f0fed5b8a36a57d
|
|
| MD5 |
fa3af699359c07f2ad7a4727b4476be5
|
|
| BLAKE2b-256 |
c84a693f5046b7b0d817e099c7a037eddeb6abd64a8ca02137780f37a206209b
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 726.2 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a81787261399fa6d9b63f2eabfe8841b538333e70b7acc4da180f5a04a006ce
|
|
| MD5 |
7e80c59615307d70eee4485e98bd0d5e
|
|
| BLAKE2b-256 |
16e646b8feb25aea334035837a0e761b2465c1087305e53763674ed8bddb80ab
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 764.9 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b1ce903c98cc7f3a783ac03c5b1877d91394df9028fe91e5b4c3a7edd02bb12
|
|
| MD5 |
05f25df1596f8219b44ae15485352021
|
|
| BLAKE2b-256 |
ef49f1fde8b4de3a6ee7ebe2b476c7849b67fd92007c6d64a0623211f9ca39dc
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 794.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d75030338b7903e848a4cc8f84223e8dc663b5acfad777a4551ab0ddb40c659a
|
|
| MD5 |
f01d4b91c957c2228b7fb1e7907fe0e3
|
|
| BLAKE2b-256 |
3587f463a51801ff045cdc573a5f66be321a5021e59c0af8ba8fee4e61e95bad
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.1 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cdb4bc03fe25f0e69b3b0a6780a47cdeb3771638cca6e4cab95eeaf64fba453
|
|
| MD5 |
80eb876414291e73c2ba3f6431dc2a7d
|
|
| BLAKE2b-256 |
5773bee7b2531570c051e60f6e4b67a8c8840ebec75b854753abf106858d28b2
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 543.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c934b7e72991342fa93af072b1dd8b8f91b3ad81c8b547dd83a8a3e720f714d2
|
|
| MD5 |
1380774a6d392b640df8f3984c846418
|
|
| BLAKE2b-256 |
f153502c0b61c3ac377e29502f7ce9548987de85a14054c5aa5602732e35a98a
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 665.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
87497733f95b93536bc037977cd9472f9157e2b0e48c97c6e504a9b284f96120
|
|
| MD5 |
b9de1696ff1e2b3043702d9d62b53f3e
|
|
| BLAKE2b-256 |
be1f549aa47a3dd3cee599b15772f415e53e3ebdc1b5d0df99ef06c7a8e54bcc
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
302aa82b3f4f676242e88b9437b8ff952d194dd587f666adbd2259f5885e9ee2
|
|
| MD5 |
088e663b29cce021beab61727facf58b
|
|
| BLAKE2b-256 |
4febe6e7240a484107a8effc40acab7fdb10aa65a2a8398e652c0687bb29562b
|
File details
Details for the file typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f520ebbd971045ff0ca49aebf8c809ca436d576e08c46e8b144707c3b410c5e2
|
|
| MD5 |
f8ea7e4ef9d81b6e1bca793b4fd27b27
|
|
| BLAKE2b-256 |
fb5f8144dfdb11eae8bd253068cfe168ec12d66fd073a6906c47a4b3d934d892
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 727.0 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50db59bf799a9d739cdd2e0ec4101ce07061c04bd534dd235c1a10750f9922ab
|
|
| MD5 |
d1523241c8a15bec71974f8e2326b5ee
|
|
| BLAKE2b-256 |
5ff9dbd008be3ce4950014f8aa55ffc8cb9fede0f047b4aa498a4424de38e8d2
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 765.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b5c4b95cb5f53817805b55754835318957bc827b582489b8c4170b8f3b6aa6b
|
|
| MD5 |
4b19aa823b14f30d2ada64a10c8f4bad
|
|
| BLAKE2b-256 |
4ff2aea9cd2f743bf60ff960af37bff4d4b76bb5d87fb6f857149280fe0ca27b
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 794.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
206f420be442327fb8722e890015d00b83e20118b706895df7bdb59a4eb92a65
|
|
| MD5 |
75c1df4dc35896424c91848aeea64bdd
|
|
| BLAKE2b-256 |
57c60dcdf4f680e4a80427dd8a038d14db43223e6567726b1cd4746ca8cbeb31
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62bb3ef29ee5990fe0f95bd1c07307559b18dc991548cb37649d2dbc778591a7
|
|
| MD5 |
5fe2fa8f62a981c18cd815491b022dd7
|
|
| BLAKE2b-256 |
4e6c6d2bcf21181ca7d2f93eb0b0993e37026aa6d6c641b3632c53db2a453d33
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 543.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7acf703c476ccdd481934d632acc9378da72d508f14c85ea37af23d4bb3899b
|
|
| MD5 |
1c155d8ef5af1a3fd1a2fe28bfa63137
|
|
| BLAKE2b-256 |
3319f16ccce16f936b24d20edbf443ac13361537785e24861881e918b4791f9a
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 666.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f51efa057fbe9006f14fefd2d9c1d22575ea34d6d419958b88bbad0f940692f9
|
|
| MD5 |
7bd8132b13d5c01dcf367c87b917f6a0
|
|
| BLAKE2b-256 |
beb866e6fbd35e486c503e7eb45bf0cd3f2dfd0127122bc48eeb02958eaca5bd
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 524.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3e66408915b31ca046ba7b71c05cc6d5744b25ccda9cfab09851e8ddb0ba2a7
|
|
| MD5 |
b71919aed516ae5ddf761807e57a0ff7
|
|
| BLAKE2b-256 |
cda1708d181a8e29af64142dd6c65e344d364101266a7a525e609c9915f568d2
|
File details
Details for the file typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 510.8 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
418227442999e1bdd9705b9ddb0a85a081ba5cda71a1ee2b5ce16334a770e3fa
|
|
| MD5 |
ec723fdc13d322c1d17cb29ae46449d7
|
|
| BLAKE2b-256 |
bc5918218533cdeea2ad3fd0e580722600b59560ba8070f4d4600a0b61dbf196
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 724.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce9930edc0e086048ee138a519b0b2213fd151a62a3a47c26fc20813968b1ae7
|
|
| MD5 |
346057be88b2c284eae739beeb329ebc
|
|
| BLAKE2b-256 |
5ef4504ed81c98b98b90bb3b35a8fc9ab1e373284278ce3ae7ca97cf8e78d04b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_i686.whl
- Upload date:
- Size: 762.5 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfc900935d880659fec4f0304ff753cdcd6e4e5fc57aefabff6361e195ca971f
|
|
| MD5 |
f889c551d44cd92f37742aafb6cf1be1
|
|
| BLAKE2b-256 |
05d263b7ecb5d8dcf7b25981449e47a38648b6a37bcb0ffe3ba8f99561f4e47d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 792.2 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62c31070d2b250705fbbf1268a92a6778a00c05231a9969aec9e6d25e0578c07
|
|
| MD5 |
3dc1fd4e973908062256f628a381bb4f
|
|
| BLAKE2b-256 |
450911a3883144ef1413f889f3b32d96706681c6ca0e9d8d55bb41911d2ce1fc
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 682.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51003c2218510a8a39fc1fc2686605911d1709ece1002f38fe75222d1f799d72
|
|
| MD5 |
0290f7cfb19d285c7e2c2b43123d2308
|
|
| BLAKE2b-256 |
2a84ab533c6d7513f97bb38dfd85effbf875dce880f985bd3bb962ad1c7f9941
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 542.8 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c05fe916416f5318794a3c740678154af43327dd714f854fd4a450aed132d81
|
|
| MD5 |
c3f4217e9b8b8b27bdc5241910a421ca
|
|
| BLAKE2b-256 |
87011f144616c7cf1ea9597778370045222e0f11206b67122b3caad344fcf2ee
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 663.7 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12b3947209a22606509c824f05f8ff7a5ae97b1ce887dd258ef5c148fa6c3c17
|
|
| MD5 |
d16a57ced1bc8762ea0ace08a65da109
|
|
| BLAKE2b-256 |
6017679c95a9bdaf6951df1a2a0e994247e0fe8a896433f2f580babcd5a4225b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 522.2 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
83a292ae6032782ea4593e8c506f214ed56832eee7e2724c2371dc1fbb646d90
|
|
| MD5 |
99916321e1b58a8c6573a4e6bded5eea
|
|
| BLAKE2b-256 |
df11561ad94b01ad7cbd2204e38d8d13914fb1f817a270e71dce732e2e4a8880
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 507.6 kB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad5d0d9a0fbf17d71c756f3db8d038d3436a10967d3ed88a49878921108c00bf
|
|
| MD5 |
278c14050714524a9b08dd47b043636b
|
|
| BLAKE2b-256 |
9f0b4a47f636897b3f0b43aa5eff8c164043e806e9c27be271979bb99bee5241
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 322.3 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a1f9764276592e745ede4fee32d833dc278390f5dbd181ab8f8ca16abf1c62f
|
|
| MD5 |
0fc98c54db7f8389699023ce1f612732
|
|
| BLAKE2b-256 |
16685eb6df6abb476dfb381318c9cc8d658c8858c4f3f4a16e5bff51e2920a3e
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-win32.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-win32.whl
- Upload date:
- Size: 307.2 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc28afc30faf8cbb190972412cad58f88901cf586ec6fd2bf2d282165356e3bb
|
|
| MD5 |
d8764753ea6183908fb677490c2b3d66
|
|
| BLAKE2b-256 |
474fd716cfcb8a9bb8a115aeee994484047c7c874dca56c9c3b7f3484fe9d439
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 726.0 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
55ff3c98e4d152a9be94d86ebd5cc8020f3eb6e8cb6730430132da3a5fc336a9
|
|
| MD5 |
4c5ac78b85ead2af46970cf4e22aa147
|
|
| BLAKE2b-256 |
1f179b8bc6a4b55b767b2a23d17090f9fbc09670f348e8e7a587e181e3c4563d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_i686.whl
- Upload date:
- Size: 764.1 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49dcb42f3edb5f614d7a872a6c15657de75812ae1aa41f072e727ed6b9c5136f
|
|
| MD5 |
67c8d488ca91961e7119a47c74239250
|
|
| BLAKE2b-256 |
2f40191199cfb0e886674e50c83c3f60ac7971dc2597957c2ead34f6cf01290d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 794.4 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8339cb704edf71ad3feea0dabff2412eaf0b34b0181a42be76f7c6927bf1f3d3
|
|
| MD5 |
93460fdfd6902d7d6819836bf90547ff
|
|
| BLAKE2b-256 |
0493116b7c8671f6524a99aaebde76d41fc91c5514a4e38104549f6894fccea0
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 684.9 kB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a186ed0a31840c881cfc8e6dabdb0dfda71cfa6191ab8a82f29fb032b3f0a994
|
|
| MD5 |
953839ab406b139a0a7d2145c0958eff
|
|
| BLAKE2b-256 |
7c99ff7d80b0e0ed1d72a4d5313423f479a4b769524dcb5a84710ed0a2f8cf78
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0322b0da948ca818d07c49137cea6214231814a141b29c10a823cf9dd903efb
|
|
| MD5 |
96cff627d7874017174270fcd3294a51
|
|
| BLAKE2b-256 |
e6ee270031fb927433fcaa29db15d9ffeecfe0ad683fe639bc7791cda2f12a6d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 542.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
230b592edf1c0c783ad5949ac8607a76af4fb9adb39f7af273ea894cbf027f2a
|
|
| MD5 |
e1b7bacab69ed3260a96bd247f17de03
|
|
| BLAKE2b-256 |
e7cc53a95deaffeee2aaa498d4485b0b6fdbc2e0b45d410aed309a31ea828438
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 665.5 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f407d05ae90837824efbd333902bd12eb1cedc02049e0bc8070426a41eb1b4eb
|
|
| MD5 |
806e77ff09c0447c82d511ec2cc1ae8d
|
|
| BLAKE2b-256 |
a3979ba0167d5060793f57a891dbcf3374ea95ad36e96915c2b06db2ff0157cc
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 558.9 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4294f21f569b9da6309744e30c6c6ce2d924d22b3f022aa0b860f1fc6661fccf
|
|
| MD5 |
83d3ad57e7a0eed45d1014ac9b2c0e95
|
|
| BLAKE2b-256 |
ccac00c5567eed46524a35536b29b3174312009e28035329cb71a0515aac9795
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.7 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1719a0306195a8f1f36abd31f2f8d4f1a0bde93245106c147804b430984d66
|
|
| MD5 |
b95f87a7662c1ac149c08d02eb75b1c1
|
|
| BLAKE2b-256 |
8624bdbfdb801ff499d5e05287f3e4d9e9dc617c7449441553831b6c5a1d8094
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.0 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
232ca51edd50b0b994bebaac57318f60e5c928671ee6db7e7f46a32e4dad7210
|
|
| MD5 |
e1b78b25cdc49bdbbbe542cf8b83ad7b
|
|
| BLAKE2b-256 |
09ce06232e2bc1d018c3f8938dfe9bc228e8a51c8c82243c2e729dd252c7c97c
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 451.1 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbbb7f9d6ffc456d72f6014b7f37613808e0f5ce05866a91f75df0062bbca453
|
|
| MD5 |
1197b6be2808a87edb1eb026267622ab
|
|
| BLAKE2b-256 |
d1787f33db0796e4af4e7e94a360d359051c8ee831b6971be88af1a4676176d3
|
File details
Details for the file typhoon_rainflow-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 464.0 kB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d425aa7f71041f729ee0c24ce61c64aea10ac076332baf3342b671b3cefdd61
|
|
| MD5 |
4f564ac9a657288410d3781b438f2732
|
|
| BLAKE2b-256 |
1bd294629cc1dc94f97deffc2b4b379933fcd4f77ac3c99a0de9691fc55296c5
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 724.6 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9d63d5f16a9aa24e2d5cd80cebba1d4f42484f73c717aa0171ee5a461282f4
|
|
| MD5 |
923a11c8858b5ff56597f95725beecc8
|
|
| BLAKE2b-256 |
03d37883955c9d186d00bce771e226b584a79cb58d454b415b35f975347d0a37
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 762.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4381f6c0b9ef7235acd06e6684ed17e9fd449f0a5d1b79f325438a5703b120da
|
|
| MD5 |
78d127c46dc8488b0160d534c0fe246a
|
|
| BLAKE2b-256 |
57fcf56c5d9e8d8f8019a9e39829bc05a2ac3f5581831457cf5e9f2989075e38
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 791.8 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4973629aa99fa2353e373d7e99ebae60bc277cddb4f394dc807b43debc20e812
|
|
| MD5 |
464316fa463644d40dcd96b6b7551d27
|
|
| BLAKE2b-256 |
62adecdac57b5dadb646d7bab28f5f9d850ce0f66622d1d4eea2f424c3d39025
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 683.1 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4397387327cff8a6705ff77a9ac62b31f14dddaed7379b5f0f496136b2fd19d3
|
|
| MD5 |
ffeefcbd368e95e5e6e1f22f22cda13d
|
|
| BLAKE2b-256 |
c2627ec890900fc46fe807fa0afa9aca561a3433b09eef3eaeddc270488b0637
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 542.7 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82390748463f0ea812f2c9944c556254f75072edd9c6d5b6ddc6072a80bf56d4
|
|
| MD5 |
451e637c38d7932fcc4b314f7b83387a
|
|
| BLAKE2b-256 |
c186cda4980afb560ed043bc01e908f04a30829bc647205bacd277d50e676ddb
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 662.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
60fb13d002d7bbe321c6ed0e6720e18d67e4d50d244f4a06241f8531bf6e1303
|
|
| MD5 |
c58ca873631a238e85d2611f620ad26e
|
|
| BLAKE2b-256 |
a2e88a52a9300985c5f7ced6b5c2c6cfc0ad26a2ae16deffe7308f140edd2c1f
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 521.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64fe1d6cf012010a23ffc098ec8009b0de143a18391b83a750d1b75c05bd138b
|
|
| MD5 |
2497328f30feda58a9bde0ff951764f4
|
|
| BLAKE2b-256 |
939eb078e1dab457501ad766c0e15f96bc9c8545410b714a2dd4b933230a8d4a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 507.6 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d46d8f4d6b4a6c5357e4b20fc3bff8b60f9f47ec9e895fc995dd7852630a61b
|
|
| MD5 |
6853e3916cdccc40479659732e3d28d0
|
|
| BLAKE2b-256 |
384ad3f3e85c6dffc9aac2352b90cd85205c81075ec57f80aa67cbd01459e5f6
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 321.6 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
792089c5eb6bf05fc9b691a19eb21c85faa854c2789ff2554ef5834a0e40e4ad
|
|
| MD5 |
9c92dcdc1bfb2d55f1ab7d51caf6159c
|
|
| BLAKE2b-256 |
94eae91a5f92e70eaf85ea972839a0f9031fec4b7aed21949fefdf9d94cc8b06
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 724.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97783cf616e20b382dd87597a828f31613fddf0b2ccac29f45c6e9ae54c5082a
|
|
| MD5 |
f7cd4d30a4a6e5b95ca9827a74fef687
|
|
| BLAKE2b-256 |
6da26d60f6b144a850d73cf881f7bcf2f0af8add5d0b702fc6d3759be27b978a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 763.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf6fef3eb6c789bbc4845c8f41c861aff9c073908b33ada24679fa0b7d9ae807
|
|
| MD5 |
559ea24bef707873a46d4e2369738429
|
|
| BLAKE2b-256 |
180defd39feea4526b03e52416f293a8e7c24eb605c327a0651644ce037ffe39
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 793.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4d0ccaec23db56f588da33312fbe879506486157fe8eab3663a5ec239571250
|
|
| MD5 |
867dff9f3bb03c0ed5f1c05441e34d70
|
|
| BLAKE2b-256 |
07e4ebfbd9a54510a577b27965005c5ca2195d901e3d09b206b05cf478b004b0
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 685.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9613949050513181f729a80654cb72a994434bd7d57de8d3eeddd7647be3226b
|
|
| MD5 |
d894b5a5876c2155fc542e66ef1ef552
|
|
| BLAKE2b-256 |
b190e194c50444541365e7fbbc4ab32859e05373df0280865f90166c95ca5fd7
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 520.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
147c3347a9e4b7b6e28a530210c4bdc7f7f689623243d57e93621b790ffadbd8
|
|
| MD5 |
e2310e6a8c05a312cb5efae859e06519
|
|
| BLAKE2b-256 |
4bca69f394704b9459382c6c4087622a7b451513599ae8bcd754ce7591e0a441
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 543.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a2a5f372fa2cbb20d69923c1dc0acca8293144fff10980cc0fd98fccfa75886
|
|
| MD5 |
565723b3f406b33d0accbd8507a0bec2
|
|
| BLAKE2b-256 |
5c1031a7839ba4783ba4827c0bdbccd3747e1b5aa1fb0137242758e0192b5e68
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 662.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cafda2a127f9be579a513f2ef9042c551f333c83280435004474876ff1755271
|
|
| MD5 |
c475fd6be60c8145cf633f38ea113df2
|
|
| BLAKE2b-256 |
5504a78fe495a95fc1fd481e9cfde0cae6e8ae076f6f3283a7604d4ef3fedd5b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 557.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8b898dd4a54dd869ad7af599162da16266ad19e43db1179a1acc97797716de9
|
|
| MD5 |
1f415f85735910b278e1bb4514362d66
|
|
| BLAKE2b-256 |
1e0d0bf8026472f7374d48b01cc210872d5dcfad09123c6af27b25b87247a8e0
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1e9c0eada974e72b5927edc920fe60a8782dcd990eb8e189b8a09410c79bb35
|
|
| MD5 |
f890a83c5f55d2baeff68ef652f52870
|
|
| BLAKE2b-256 |
3c42c75b774c17381953758b42bd639411f41132099771a9aa33ea4295feaa6d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c596fb8f7986a1e62297e73d51e7b6987ddc6dd69a547b108f5006cd9d3fe9a0
|
|
| MD5 |
8102ca72ba2f1fb571a3f27de310b7c3
|
|
| BLAKE2b-256 |
96edbdf9c872f43ccdcda12469cf144d81efb5b5c5fae58a747376964d61a73d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 451.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7656534fe0cbdd302bd21596096ba50a6ef65718e1165335a13a3638de63090e
|
|
| MD5 |
dd0fb0d626887181ebe3975366729ab1
|
|
| BLAKE2b-256 |
a2d02c40df5eb33c2cfbe2e3b95092f6e3cf42b88797c27f5eea0eeeaa2b116f
|
File details
Details for the file typhoon_rainflow-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 464.3 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c2317a7ce5292ca9c59dce332ae6bff9dac3bc1ac51eb27b5c2325e0514c66a
|
|
| MD5 |
4f7229f68a7a4e16cce05b587de75972
|
|
| BLAKE2b-256 |
9f0584b968b2aea39cc676cd15cd67ce4ff2bbd040d72717aef73c8c4815010f
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 322.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bdc27b4106a1f3d99817ef5c0fb37f7feccf79fa3b099b251286ab9a2cc05bc
|
|
| MD5 |
6864e955b41ce0ad8ec6c6ce8787fbc4
|
|
| BLAKE2b-256 |
32f634c66a92c114d76c1fa2e05be618370069f1c201b0b81332546a42f7c794
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 725.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f14443381a744e01c6b210e2f0b1fc432733a2d37f4e27c5a6f92a1d9013322
|
|
| MD5 |
c88409ade54d4c414a381244e675d7c1
|
|
| BLAKE2b-256 |
624a4740b78c8c8e5413366888dd0a05df972da361f80cee0cc2dda2b9bdc878
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 763.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cdd6366f6b67df9981916976660e4507352dd6738a231c3ca1ab8c75821c7280
|
|
| MD5 |
75e32727b54da58c8307c405c3fa1802
|
|
| BLAKE2b-256 |
91c3b2cd5ae5017f703af075276b44275ab150c4d21f246c2626a1ea13d28d23
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 793.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1465641829b8277cd0e6f8d21fee4197726b9888909c8f65c10b06f02153a91
|
|
| MD5 |
ff5261ee760168fcd49a00d44f0d8922
|
|
| BLAKE2b-256 |
ce296d14e8b9708af877ccbabfad5617b5cabf32112f5b526a1fee71964b64a4
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3372afb10e746fe8906917b6c29d154144174d43084fa68cd0727be52dd03f1d
|
|
| MD5 |
31c9a87fc5a964d69fcb2132f4d19062
|
|
| BLAKE2b-256 |
0cce4f2b81f3fa6c7e958a86806236a55bc858a455b967e530044f94d52262f2
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
226fd9eda28a33ae7c6467820583d9a2eaadf221df9d405781f81fa272c225c9
|
|
| MD5 |
83482295d8644729f91316432a57d067
|
|
| BLAKE2b-256 |
5d77e0bebd7a3588a51f2d4cd987539cc3d00ab735061735a5a780ce5d7b09ee
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 543.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d2937a88a3eb1c581170a216023a0f0c038be901ad755506c0521ec7bb252260
|
|
| MD5 |
beb4b85eae76b0c0bc26ee72a86839e5
|
|
| BLAKE2b-256 |
2eda4c52fa3ce84adc8fc886c72812f807581329bbdac268bc3cd86820bdb412
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 663.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
637990b6fa578d9dcb1232bc571927cfc07805adfc41e96e2b67953e2d0f677a
|
|
| MD5 |
51418f962fa0cbfff157c8c9c7ff6c8b
|
|
| BLAKE2b-256 |
a92e4451144caaaf9a4ed7f3089b9ac1e510da13534fb71907fc9e97b397a270
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 558.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d7b7e98bf42fe72a885fd838e21901c49ec6b55f4559287daae91c75b9e8668
|
|
| MD5 |
7c398c53bad679e1942df8eeca9e4282
|
|
| BLAKE2b-256 |
c15bc7b47730b78d27e4188641fd486e04e11eb49bcf1ac8ea4d401f9f4d8c9d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ccbd01f00c10fc778ceaa584f50f629104c819e491848c6c8f409bb66db3797
|
|
| MD5 |
c4095cc52071c2d9bf5957627efafbb1
|
|
| BLAKE2b-256 |
3b7d5624dc622afc1e3f8c7cc9565a43fc21310fa714a7c1b5ac640f758db543
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7adf5463bb13516b1d7028d2d37e78edae067c70e0afff95293f1e79774a4835
|
|
| MD5 |
e19c72a8bce0c5591813c7698eda33c6
|
|
| BLAKE2b-256 |
4ef93f66c5e87ae77b00564038ba0417207e6e5b7215d396c78400c623f050d7
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 451.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f1cf9481339d29b4930ab2247b40ba98e5fdce8f03d337ed5b4723b8df748a7
|
|
| MD5 |
42175fc7cac2db633a72ec445d38c161
|
|
| BLAKE2b-256 |
87015939ee8020ae3156098d9230751e1d628715724d91e0c04ea81efc3fde4d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 464.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e8abb8d9317951e6755a6290a85c2e203a1b1f47f3b6da441f891af514f6301
|
|
| MD5 |
3bd9429442e28f7370a874aa263665fd
|
|
| BLAKE2b-256 |
9670bb6a13e1a36f9943794bd7f8ec8fcb76f5d2f866d4dc08f57ab33fdd8e7e
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 322.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33979f6fb1a51cefcac630552f42c3827c317c46c669ebf6974dcf06e0ac4d7
|
|
| MD5 |
384c5d9ed985f0765cd19e5593511c71
|
|
| BLAKE2b-256 |
6369da727dcd51ad2bd549fe83eae0e395e3c7d6217a626b62d92d3e93dc4055
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 724.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
060abcec0e3f51eaecedd3d44eb058ce30d9b984b2bc100b40618ce2881bbe72
|
|
| MD5 |
a888cbf19608818547ed94967922901f
|
|
| BLAKE2b-256 |
e4a36aa3ec3629b0a4e9e73e91022acdc81c5e92c9c98b958a0455ea170a6fdd
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 762.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b7afaa74963249ea38fbdc8c9c784eb242b03fc38a71ecc6a3795f6bceafb4f
|
|
| MD5 |
acf8cc8c9f2bacde80c6b6329f904555
|
|
| BLAKE2b-256 |
1b57b6e4dbba210e9d4bc3d95181f4ae8930c562fe1f973ca7125c9fd78c2db8
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 792.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
607aa2bb6a36a177fc0490723425bf7ccb10918f332ccc63c39f1f74db4ab4fc
|
|
| MD5 |
7c32ba366f6dcb8a792116b89cb8fea1
|
|
| BLAKE2b-256 |
7168662a0560fad42d368e5846145c013345539e54b508f295a345ff765e9813
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 684.8 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fb9afe81049b65c854f16cd7b31ab2e396222a888c5a8966a0d689132574287
|
|
| MD5 |
e5e541b989fdb7060ef52ddd7cdfa414
|
|
| BLAKE2b-256 |
f42c196cf085c1527d1f8e50f3cb8a9d00f77f756e774436eef8743883c5a0bb
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 519.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e02ef76170d71577262e66b04f38cec95d2f3eab64988e88b80250bdea4d4365
|
|
| MD5 |
b2d7a0b6c4e435166b06a645898a95fb
|
|
| BLAKE2b-256 |
6bb9adec8ad77097e9c69b20de92d6f96dfdf73c4c59076646502e311dd96e9a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 541.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df496f981fb6758eb5ff7be57703aa1c903e20e94d4bcc0147283dc562c6657f
|
|
| MD5 |
ece72306a5cd9549e7c0299b6ed78062
|
|
| BLAKE2b-256 |
5d29d695274fafc247837143f762dc03ac8bc43399995cb59ab80d19df0a458a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 666.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee86cb4789cafa7d3373be2ed5dc5eedf812832f7eca398fb77a11caaa82bfa0
|
|
| MD5 |
8cb49af11c13218efdc7b7f3823b5a49
|
|
| BLAKE2b-256 |
e4cf412f3fba1275dea5ca3ad1101e0349d1b8c990c0becb0d0c331f369dab1c
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 556.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a3d77e5407fd079cb80f4c9a409e000c9c4f67606e6dae08bb59b72503996b5
|
|
| MD5 |
b83b9bb55b8dc62d8b06636a8c24d4d9
|
|
| BLAKE2b-256 |
1b4573ce926b630feecb2054c268c8f86c3d783c0acca310635209e035b90d0d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 522.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e83a634bf73765c5679f69f7a74b622a158a304654fad3e443b10f2185d507b
|
|
| MD5 |
aef1716d5a47fe3f78517133b3d47f3e
|
|
| BLAKE2b-256 |
b2367ca0de53e961c03b229eb9b0d2a493ff432810da4b4ebc8cd09ebf006718
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 508.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c23befa624ad63285add1d8fa85f1514006e3996fe44c1df1c0b8a471fba9f8e
|
|
| MD5 |
0a84f4d5a7c9ac848714376448246e67
|
|
| BLAKE2b-256 |
6a371104daa053693e6d421e16355eb6ee593d12dbfe2c1212b1fba0abd33e15
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 454.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d81adb86341e6a9444e303fb90af6773144f7da55f05762112eba4508665aba
|
|
| MD5 |
5b44c653b5cc48c694157081d0fad68d
|
|
| BLAKE2b-256 |
78aec38a335875fdd1f4bea5d43d2ca239102041433249c13e2e1eceb3684ada
|
File details
Details for the file typhoon_rainflow-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 468.1 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d52e1943453ef214d2a9b31b73260c2634fb77c266cb0c031bc39ff84556c4dd
|
|
| MD5 |
e3b724c44f08405ed8e6ff17e9faea6d
|
|
| BLAKE2b-256 |
8ce55a0aa9dd6f28754a8d97cc5cd77fafc2a698dcd6f1599ead0343ceb8c5dc
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 322.7 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6fb5bf3761473356edad160d6d2653c48dfa6023d16c08aa50c2a00dab732f79
|
|
| MD5 |
5f223046992ad14cd081c7e21db78526
|
|
| BLAKE2b-256 |
9a0c7aa6abf894413ec15e5016ef3dc1917d4d860d82dc454557cbf88c107410
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 724.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c70f6e37c941035b4b121319a8cffee183342e78aefd8e216d72980ac5dd21a
|
|
| MD5 |
08f4b9d71d7c2317ea1724dbcf01ee2c
|
|
| BLAKE2b-256 |
965f8544a9c284a35a299a8ab1115c9752d628cb79a959e79062b3fa14936082
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 763.4 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
52155eaae5faeb249ed1bfbb855aec439956d8b6f5ad55407009b8157ce4ab9c
|
|
| MD5 |
6c2794cb06dc4db4f813b7f3e532bcdd
|
|
| BLAKE2b-256 |
3fa460bf0a249d9512b8eed9bf1f1e2142cbb7aa5f1f96f3151afafeeaba34e9
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 791.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94da8f192abc097b8801fe9a45635e2df29d51a24c34945533c08417759b97d1
|
|
| MD5 |
71bc21048510cea6926f1c8df7dffa52
|
|
| BLAKE2b-256 |
3ee0aa4b3b70821f519846e9fe77b2437c5cea04dcf3ff4a73a21790037880ba
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 685.0 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a94208d9f76087d5e7e54ef7afd8fa2378c659a61d6524cd49c8482ce8c285f
|
|
| MD5 |
73a251a0172cbb6550d481cf0b212370
|
|
| BLAKE2b-256 |
80057e106939339a6f8ced0b93539508a0ad907b2bd26b6f8e58cdca271b6428
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 520.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20b19edaa05cff9794bd5bf892de2a055a677e0bcf5df4515e03c61d95c3af82
|
|
| MD5 |
db900fce57675a15063af91f4dffea8a
|
|
| BLAKE2b-256 |
42dcc54cb4a705292be668238ef698c7e72e9859562be9fd81f75beabd074e0d
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 541.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c55032274ca2c4bde3450ddca685fdcbdb9ff015cba9fbeaf36316aef8bc8fe4
|
|
| MD5 |
b3720ad9e62acdcf47ba027bceb6e143
|
|
| BLAKE2b-256 |
b77dbbe7ea55e8811c8add1fd4f2adc08493212ceff6b22e5e09ca3dc6287bbe
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 667.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
235fb4fbbbc9d6fbb48908c7575f0a38e096adcb408ea81a372467093bbe0a37
|
|
| MD5 |
95b83959c6ffe7f381a50dc54abac79a
|
|
| BLAKE2b-256 |
2f187a887c937837466a57504a74f483bff56f1738046d6b4536838de1b75b96
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 557.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
416c3eedab088011081bb46d1d40d98d2a55d684ea7fc420c736ab20de719067
|
|
| MD5 |
479d96e964beb3b9088758775fe2c015
|
|
| BLAKE2b-256 |
85add8bdf9440f3294fa9e2e884839791e6141214dbeca89092cd7f7b8af44bd
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 521.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fac7753fc9f925c80b20712cbfc9adcdb89bb2ca650e4ad922fe153d926b6d40
|
|
| MD5 |
13ee25728dd6bbd4b12b9343e2783a3e
|
|
| BLAKE2b-256 |
e8a05ae197d160efdc6b4fd15ef105562a413d1a013697641abca265c993dda3
|
File details
Details for the file typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 508.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f6f7b41aff9f0855f72a0193e5565e04efdaee4f7cb0ce10e9add0e7f77ebb52
|
|
| MD5 |
7b9c0176172c3ea9c62c34cfdc663fe3
|
|
| BLAKE2b-256 |
2cfe6ebc422fe12530cc87c1e7315e7b8facfc3da4b6f7885e8f75b8a351acd6
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 725.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ba6950a6cf2a1dc7aa27f1c55905a7b363f96c38fb23142a327f9a406024241
|
|
| MD5 |
c541165b65f49605cf39e8a6528d33e0
|
|
| BLAKE2b-256 |
6ba482f32d94bdbfbaa9dc18dc1c13759f3f89a227560cdd88c9a18fa8cd4ef5
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 764.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ec9e433c59994f84daf25704d00f9e576d1882c6c693944ef0b7e86d342f8056
|
|
| MD5 |
a4fffb742719a83ae85a1db0940d11c8
|
|
| BLAKE2b-256 |
5adce4e4c3d4c3c2eb24e3fedd75c7b0b3ab77853d38fe64ddf8161d83c9085a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 792.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b34bad15f7c6486f69b941b338bc83f89ecb9fe03f147bd15d964c76e3fbc16e
|
|
| MD5 |
024d6e887cd4ed43ee60e45312d05a17
|
|
| BLAKE2b-256 |
38617752d3199c80c5833b3fad3b620e7861261a637d8d113988db7244329d9c
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.0 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37d912d3bf4bac3b4ed3513285d51ba4fe81947c81669a4824bde4c8da6ca02c
|
|
| MD5 |
5bfb992a69acd0be3f0d226b0b5c6934
|
|
| BLAKE2b-256 |
8fda0e90f9b6d6b7cb79d9967b44f14bdd9a50759bba25cb4e56c0a2b6e816e8
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
33a567a73548d8c9b1242d5f39602cc8049531eab58a64ca01d2c6feb6e562cc
|
|
| MD5 |
bc03f4a5100f107bc8cdac9bbfbad7e1
|
|
| BLAKE2b-256 |
2834f7b1e6e3ac56832ea561cd4eac8dd87d619342c834de52693302a6106a73
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 542.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04d7550a5bc245e05b605c3606580b088a327485caf44d4c745884e4a9810c65
|
|
| MD5 |
72a064a754d461fb60dd75abf3fee41b
|
|
| BLAKE2b-256 |
5fc50e208043e72b66c1359468993c7abf625f84a72cbb08decdf54a5227262a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 667.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f9c1754817b09b8712f79735d822ba381f883c2dee7e5b87be88c7a1279ffe2
|
|
| MD5 |
be3dcfd5499f9b7d689dd141b3e13668
|
|
| BLAKE2b-256 |
9164feda03861498d1fe64e000d5df51510c18746e79c6271d0fa799492e21d2
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 558.5 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d840c9c060805feda11d6bcf8f4778ffc9dd9feb721665d0640f285ef974805b
|
|
| MD5 |
8194aee6f29da973124844c3547197f0
|
|
| BLAKE2b-256 |
0950ea2f75116e613fe177fb3ba399d721de1358fa85a7b49232f697dc1db46b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 522.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e960ea94e67c9aa91ce7f6b143deb462ef165ae8c2445a58d321335d0e9b15cb
|
|
| MD5 |
07aeaec3f41ec4bbc6e6207fcbf4ce58
|
|
| BLAKE2b-256 |
9b4a3bd114377889f3a6065a7e3a599ad7ef4abb0cab12d60e29bdd9a55aa17e
|
File details
Details for the file typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5734ed725de818d08b653c2e15de5e61a85db0d672c73b8b813673d408ad64bc
|
|
| MD5 |
805e66a2480636024001e6b658cb3f06
|
|
| BLAKE2b-256 |
1fa0d3b5113b469550ee0d385f5d2b98b501e3dac4d54f5ff75f637a993e6515
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 725.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78eea99f678bd14be579aafa67b437ef74107e9d4734f40392fcf2eb3d70d0ff
|
|
| MD5 |
289df15cc9bf908b60cc2bec18778479
|
|
| BLAKE2b-256 |
2f53b9daa12273b82bf96cbe339b14fda98c65684287c419fe672dea8104214a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 762.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ccc510f922c8bd1e8cd93f8638e56e3ff16f5dfb588a515653fd637c82b4896
|
|
| MD5 |
6e7742afdfb6dcc5bb52b47e2480de54
|
|
| BLAKE2b-256 |
28edb08d874721e6ea54e4356bada23878f1d2312782d8e245aa590e29700d10
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 793.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c20b1334a108eadb99e8e5d3db34fe1a968d17e3fcf11e5a50f5b1846c12cd6
|
|
| MD5 |
a910d90677d88797bd0d69d37266a097
|
|
| BLAKE2b-256 |
8a9109c5bdf41f53290e93cafbae54684bfd3671613b993d61c4394626b2606b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 686.1 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c35c3f9398dc75f371babb6dc21582904fd854218f0b9e02bbc924c44c159acf
|
|
| MD5 |
74a8c2acf7f544bea789edb03263be63
|
|
| BLAKE2b-256 |
ebf2916d1fc2b9d9ee0edfa62840b43b76add2d87bdae6e35c17832e3bdd546b
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 521.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1201b6285c79ff2876e3eee5c51ada079ab4749ec8cd7d3ef7116b0e58968e96
|
|
| MD5 |
3ed52e6cc13a4245ef47407771c39180
|
|
| BLAKE2b-256 |
3d54aea508da209e233f2f07f01849b12eca0064216152cfe0cb918cd25354d5
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 542.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36191754b2a0207f587a10ef7f35a846a50ee6e01dc774cac9f41d8787b9e7ae
|
|
| MD5 |
0df10d25643c8daaf2c51ae44a8b0032
|
|
| BLAKE2b-256 |
38e032bdcb6d3f3effd079d1b276ad72530e9eb1deee58547f25383b0886631c
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 665.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4019efde21ca9b4831e0d4759969be5cc0748d379816c5170bb50a49de96401
|
|
| MD5 |
d9b363bdbb253fe2afe7aa0b0c1882e9
|
|
| BLAKE2b-256 |
7014b814de58330f5ae8b923f788a85850744fe5049571c027a7b68dfdb5876f
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 556.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f7071330573d262cb7c4d4c5d6ce0901a649848166c637014edc103b2ac4cc
|
|
| MD5 |
a370b7c2988db4cb02d47eb7958033d2
|
|
| BLAKE2b-256 |
313764c37753b47e717bdc1b0532c5a362733a1fb90a29b0d5b7ba3d3cdb56ff
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 523.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f9f39e21ec1932182c2b2c03e256897ccd47b718963a2dcb5015e80cb83e7d1
|
|
| MD5 |
7d1f61217b40b9f25227de77e928f927
|
|
| BLAKE2b-256 |
740f1c1fdddd622a2ad0147d55cbfc46c67cdebd401777c313491b2ff527524a
|
File details
Details for the file typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 509.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7380421a9e3b2aa248808dc8799df0f3d8aab2bfc4c61702f536f1a9823d86a8
|
|
| MD5 |
1d446ced028d4c5683ef886320f7eaab
|
|
| BLAKE2b-256 |
3a6a7b557397e37f44bd1d69c7512f428fb3df00951473473ae38af234a12f82
|