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
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
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.1.6.tar.gz.
File metadata
- Download URL: typhoon_rainflow-0.1.6.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06f099fcde0437eb19b61faae80c8b0aacc70be601e7a39a97f88c002f2df7a7
|
|
| MD5 |
480b5e54ebaf7a56ce1ae9b6806da6f7
|
|
| BLAKE2b-256 |
792040ad2dfccd3bcdeec1f80a5201e21e1b5572243260e5700bdb56ccba7eca
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.7 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b8574f71244380ac2ab7d3dd4b49f1f26cceae9dc276fb73ceadcf2956e6a81
|
|
| MD5 |
313658778130b3f4efd2f6fa28a69664
|
|
| BLAKE2b-256 |
ef68a8cc7f12b839f489f8fb4a5df8a48302f98a8f7346e1d8e0812b43d5f15a
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 657.4 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5eca668e940fef8561be4f598760181bb54329e941e294f31e3a05f2eb9c492d
|
|
| MD5 |
5a9883c10e8de1dd9a06a7894ea6cd59
|
|
| BLAKE2b-256 |
5d6909c1004f6b60c011aaa805c153f776e4398d0a50d3cb75e74cb066c0fa02
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a085db1ea8a8641cf3b3982a036d51992aa42d68b15b378d3d7429cd02157bc5
|
|
| MD5 |
3628d72144eb2418ff47fc1cfb286d51
|
|
| BLAKE2b-256 |
15a6900c6723d971c8268643993554ce65bceea5f91eeff61653a50756ce153e
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.8 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5291fd3ea8bcb86a8010c0b22307af3bd1296e162418bde1d60863f254b3e96
|
|
| MD5 |
c7edd7270618b9f584c188d6bfb24fea
|
|
| BLAKE2b-256 |
cf03f6625873b9cd16ef7770d6113020b0039bbb3fd2d30db19789fe98b68fea
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
16cbf5c09723199ed2f935fab14efb7e93827670b6682a291081e588297d4b1f
|
|
| MD5 |
1a9a9c70367cb03cbeafffaaeb462fbb
|
|
| BLAKE2b-256 |
02cea73cc7ff0c0072934767ba7a65a43e07ec9f13f9d0dc057e641eeb46342e
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 495.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f4ba1db479da70835bab0596f3acf758b1a878abfdc8996e0e5140bce113e5d
|
|
| MD5 |
18365e6374c7b40cea4e090f53686e9b
|
|
| BLAKE2b-256 |
1c65df15258e33c58673191842ec08b845bcf5a14148105d2a348a82a55488c5
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25fc849c394c395da5e9577e4d867b2197e10b1df7a54aa7ec4d31e100b55300
|
|
| MD5 |
cd5f26022d3bbd18e9ee3e8aed728416
|
|
| BLAKE2b-256 |
28f2df456c418021b45c46932a24ba4f54b4ccaf36629697a81a70cace31831d
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 489.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
757d1c44b1bd36d0aa8c6fbe97306521d85dc9d773d63822276698f5f8c18b63
|
|
| MD5 |
6640a1c377b08d5a28b19d8a54a52362
|
|
| BLAKE2b-256 |
f872bef1b7526a58c61f5ca65f4f11783657df13a8af42de8eb4a957890e4464
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 463.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daf3a4d53e855bbee3ac9aa8ee0ab26d64446831532eddff78ae61c3fa0f3538
|
|
| MD5 |
f2d2d5deb3b6b34421cf46dfcdfbcc38
|
|
| BLAKE2b-256 |
eb8b9194784f21ea264819bb039dfa264f7e0f492c138a88d9023f4d26260661
|
File details
Details for the file typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 454.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d12eb9058199c0d66de0dbb241da637350ecb8d3b9338506e8c0d750a501022d
|
|
| MD5 |
3ee2ed5d196268afddc19193a76fdabf
|
|
| BLAKE2b-256 |
ef97e87cc546375c5b42dac2cee163ada60b09df9a65cdcb70024442a3261d8b
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 628.1 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88c4e57315ac7b2286c8a702a43608e459a0b565bba7ed6f4bffd833f93fb848
|
|
| MD5 |
15bbdf874b32639581a99b3fa56980d2
|
|
| BLAKE2b-256 |
0c61a1561c2275e22208299c682096f2b6415749d2aafed8545bed647174c72e
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 657.5 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dc84363d0a5f4dad542c6a17fe9291e0ef67fbac0b28de3dcfbae6ec9bab34b
|
|
| MD5 |
143b304c6198612ee2c8387143f259f8
|
|
| BLAKE2b-256 |
c02c06f3d8c80e1b1fbe02a8f6c5c3241d40e19bccce9b06ff29f3479cdc5b6b
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28ccfec1828127bb0972d07ba53424ab74d9c55f7f604335fa2febf219553c69
|
|
| MD5 |
bd8336d1553bb57ea371951da99454a8
|
|
| BLAKE2b-256 |
2c5744a5b5a61fb9882e820acc067435663b342b34c685db3e3c244512cf286f
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 635.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
746d988ddba1c1ee4dc0eea157773304c49435c8d7f0d57639c3481d13c729d2
|
|
| MD5 |
a2f0c077dfe4b8f20795a3d98f44b1ac
|
|
| BLAKE2b-256 |
6d84d0b37886a50f32f482b91d6c609ffda479655618cc172dccee7fdc003a9c
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 496.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dba39ac1f3da897a7f41c612e680dda1920b4bc80b4e4bb032a289c73bb2c1a0
|
|
| MD5 |
3e65ace413c95eb356747ec0d973c65d
|
|
| BLAKE2b-256 |
836eeeb9f1f745a4ef8159b8d20decd62efa13a1d368ff51931102702b24e556
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c41b151db4a4d2a1043cbe0653d3dbc631ee5ef6912192773a63860abe7482f
|
|
| MD5 |
f102963d7c0faece0465f05dede7a913
|
|
| BLAKE2b-256 |
0e70426b57cbaa5e074ea343a7df9b39090a4a78cc8d199fad9eafb0f33e156a
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 463.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0bab84bef11d21233000da0a967e7cfa84b683be4a244d2f404dbb23ac44ea1
|
|
| MD5 |
4321dcb0fad923ef881cb0e9776ac9d1
|
|
| BLAKE2b-256 |
2e00aa6ea73bd6b9649da13c91f45ca579363752f51fcf3294fb13b7dc680c63
|
File details
Details for the file typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 454.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73a03b07b171c252128c9565fea178706fac680f378bcf90907e2f1dc501a01f
|
|
| MD5 |
f36188c1ba0daf26e2b279f542f7ee8d
|
|
| BLAKE2b-256 |
ba7efa3c3fb24daac8a6a8f075606c471636b8baacc497c35e4204db07ddd1a8
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.8 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6dae6e2d54dbffb6cdab084f70552dd81b87bda76f675e8d6dc4466d401531b3
|
|
| MD5 |
059afbd37dba5c36102f8392ee3a0998
|
|
| BLAKE2b-256 |
be8ff0c87f83a217b65ab3ac79a75601a51972b2261bc5a67df3fb35466f84a4
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 658.3 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4521582720d70023e1fd54ed638114887b0e6c264b863e1eea25ccc48d8c0cbc
|
|
| MD5 |
4b41d372ff763e45bfb6f5aa23937152
|
|
| BLAKE2b-256 |
84629ee851859ea962e1a64d10755236d1a131564698d585a4743c7431ffb469
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7909ad346bef421adb3e1a1baa521cb955d4c47b752bc558283b37dfabee2ca
|
|
| MD5 |
d1356c2a21d08034aa5b3609b1895b79
|
|
| BLAKE2b-256 |
ddb24827ae1cb8631aefb5f75435b9df70551645fbdbe544f07a8c7c7f28dd07
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 635.0 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f80253cb2d7f2b407bef7833e6f11619ccc9a79a6d0a2f1d657b7bc1843293d
|
|
| MD5 |
168661c9f84614042144e6ba23f8d285
|
|
| BLAKE2b-256 |
ddb6e735f4082ec2bcbf58385539b66044aab30820654e4ab0c6f4ef4afaf0c6
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 496.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9685d279d2b34c62486b9b82bd66d14a56ebfdaa0ff744727f15fcff26765ca5
|
|
| MD5 |
c9f5096fbf1c3d1cc57a43236647d8f3
|
|
| BLAKE2b-256 |
9b129df9db7d856dcaaf51149e75a5b60e434864aacdadead30a97e64f1f4887
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 604.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
316ce33a8ae85c1322b4cf4e1744fe8a16a0b440bb8420deb20aa4ce9e266c2d
|
|
| MD5 |
4cc76e4e7ea744c4fe18d410cefe2491
|
|
| BLAKE2b-256 |
d8e1f5cfe6cbce6f67efcfc0697cda2c46a83a1e27cce716141f889674573af5
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 463.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9886537f8a00bbcae190e30fbcfe6b6e0bae6d14c8dc3d3835b08511b8a2eb5c
|
|
| MD5 |
6e273ddbc4aa3fa7cea4b225fec42332
|
|
| BLAKE2b-256 |
850505ff447f37c35391fa25a1da0fbcdbf96763a36d08cbb3853f611091a236
|
File details
Details for the file typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 454.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa7fb2b05abd1c339aa89ce8cf351d36adc9e417591bd2e4f5fa9167333179d4
|
|
| MD5 |
6d1c6b0536c02d2ce470d013f0c0ca23
|
|
| BLAKE2b-256 |
a95e5987193b77b8a842158fa3597a373ef9b3658a5b89671261786a58045bf0
|
File details
Details for the file typhoon_rainflow-0.1.6-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 260.4 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2bdc6ec283f742c9c42ab04b614db4aa3997f5c27144f8f07ed81914f408a7af
|
|
| MD5 |
5eba24cd476850ffaac7a1052f5e0b76
|
|
| BLAKE2b-256 |
3062cf3667817c0278a69fa43b6b86c78ebe5769fb1558baa71f75424c4652af
|
File details
Details for the file typhoon_rainflow-0.1.6-cp314-cp314-win32.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp314-cp314-win32.whl
- Upload date:
- Size: 250.8 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3027de6a39283e0e0ae9b26e66bb3812894d6b971339d36881184738d0529a79
|
|
| MD5 |
d2cb9926f6a21f9e6afb22b0424ef1f3
|
|
| BLAKE2b-256 |
ba70d5c1acd8b66d1100e1fbae80efafc73737f4746774c0f607ef5ee754757d
|
File details
Details for the file typhoon_rainflow-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 462.8 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f0befa6fad4048152ee95897e2120f7cc9530a3ee065a3855265cef76ad1f26
|
|
| MD5 |
4aed826513462f4d21061d397f7c08fe
|
|
| BLAKE2b-256 |
2d1b3b9aaebc46151d14bf21f27b18ed23c0752365d2758991336a66adfebd88
|
File details
Details for the file typhoon_rainflow-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 491.3 kB
- Tags: CPython 3.14, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
197371438a9af2a5765f7d7d8a1840378ff68bc6407659951bbca5c8f096cfcc
|
|
| MD5 |
0d3f36c048c77e08b9bdea9e65d5b2f6
|
|
| BLAKE2b-256 |
a08677a18ade2c8dc1579fbb169e33ddc10b68b5a434647936c83603930917c3
|
File details
Details for the file typhoon_rainflow-0.1.6-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 395.6 kB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
780e82c7e325512f6c486926ab2717a727303e23408674d32fb449fdd7ce0296
|
|
| MD5 |
a63939174d7d8044dc0e171aee1ad341
|
|
| BLAKE2b-256 |
1f82e7372a5bd9665e2e0d8c89e4257b28790aabede7b2084b0fec538bc56ac5
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 626.2 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88c5e83fcff6beb9ce12da1e92d1a7cb15989aa2ee5c3fb599da58d1e38ffe7c
|
|
| MD5 |
6baa7de8716a0f5d8f48b227eab1dd74
|
|
| BLAKE2b-256 |
3b5408522f417ed627196041249e5bacbe591c1f1ba3e8590204dbab4d7e59d3
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
- Upload date:
- Size: 655.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9e6d72f9c30d7bcbfdcdcd469ba5d837835dd5973dcc325e057529dfac118e7
|
|
| MD5 |
9124785c0b21b95492b06b1e2486fcae
|
|
| BLAKE2b-256 |
9b497b60c75045a6d88c6596644b78350d31eac5a18a1021d8c8be40ba0972cf
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 722.5 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32e56a87d54365416d3d73dd2a6b9dd647ccddb45ed9fc310e2fef932d9fac90
|
|
| MD5 |
de42fe8498ddbe671b37cecc2b9cc40b
|
|
| BLAKE2b-256 |
000c265b22c8a3f893565430d2cbcf6b913df07f261ebb142fddf5d047be43b1
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 633.7 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7cea82db5e0ad5f4bfeae17f65cf6ef340db5a4a95e6dd606e57e29b627e3b0
|
|
| MD5 |
5b4770e001dfc26514e4127930541fe8
|
|
| BLAKE2b-256 |
b246d2c7c8b826b9a28fbb74ef55ba9fa4916c87ac2419c7f71398f35e9a89af
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 494.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae15a74a97f0813f3ad741982fbf53fd7f3d99d5cbdd5f6ca402accc6e30fd40
|
|
| MD5 |
aca9cd6233d269d501223064dd3cc55e
|
|
| BLAKE2b-256 |
9a700e02e46fc185b465ecb8899ad46e267ae2abf27241cdf43daad3b5429ea4
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 601.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
984ef471725742805e7c4aa962b0ee91828b4a19590902b7927626c5c5739a26
|
|
| MD5 |
e89d5166dd27d7221741116d34156c4c
|
|
| BLAKE2b-256 |
fbc961bb53acf3565e834ffffbc2e93d7f49fcf444cf0d6159c51a3df7a8ead8
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 462.0 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f86f33575d0e0001ebe8d18f0eac8dda739494b2b0e0de3304fe88657bbd911
|
|
| MD5 |
38402699f43e7d8f5f19e2cf6d5764bd
|
|
| BLAKE2b-256 |
7854c5d5fe51af4a0b1153f7cdf0a0fbf261ef2aa56d57455b3ee8892e22cd04
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 452.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5f57ed55788b2355c64a8733a100f4c61e71b540d450a51c823be01477ff14d
|
|
| MD5 |
1ffbff31fa476e2c17a50a453954851d
|
|
| BLAKE2b-256 |
a94b018b0c1361faaf0e9a3eb4c420ee4aa48851807367bc408e7bb6df71ae25
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 260.0 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cea72f83f18e585369e8002f333bd10c77eb5c86e48cbcc4720ab76b1f0da4e3
|
|
| MD5 |
187638eed8e5b8f76e17562eead633cc
|
|
| BLAKE2b-256 |
740985598c0f6d7c79f459d4bc2592dc67af16a303fea09e5e6307157ac35d07
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 626.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37b54777abda4716342522ae79c92be96ce789a0d946541f204d39ded3668eef
|
|
| MD5 |
2e950ad97f5c18ad0cbdd7d343dde6b1
|
|
| BLAKE2b-256 |
7bad5100ec72d4b2b9540f19e0310de91e250709dbe32cb8c7a53355b8a2f486
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
- Upload date:
- Size: 657.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6be9e649d73ede2f8dcbd1ffb5a08c9329b75157e03938419147da86b86f806c
|
|
| MD5 |
bea075fc99549a230614635a399b6e58
|
|
| BLAKE2b-256 |
144e673403f28026fbe52d156429be5683cca0ac06384b10ab647b42c1183e1e
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.4 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7cbd4b8a14b95af9d02651ee18aa214fd08b2c20ca436a0e23fd130e98b9f7c
|
|
| MD5 |
48a3fb4303ed08af901074fec515d415
|
|
| BLAKE2b-256 |
7a4aceb44b204096ab50fcf7f68b98af8a2c1c977b04afdb2cc006b1c478b846
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.6 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91571da3768842d08711b8e7db5dc441b8cd5e82545755b31a837fb0d9ce8b30
|
|
| MD5 |
dacbf1855a09504ffd2607216b578ae4
|
|
| BLAKE2b-256 |
2711771a80de43a266334eb0346ed0ac728399d7f9b427d054acea11e2fe9097
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 462.8 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
963573c961269efa7279b4949f7d63d74f8ab96e908283e2711b7853524041d7
|
|
| MD5 |
dc5b9418d5a13f24e0ed121cbaef9ee9
|
|
| BLAKE2b-256 |
effd23196791590b6277bd3d54b40b31b5f53466a8525992bfa161b10429da30
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 495.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f122537473210d2764cc3cb9db5720e7328b33ccfb8b6a9aef1a9a176787116e
|
|
| MD5 |
e176b5bc75b353a9ffc8c55a09f756d5
|
|
| BLAKE2b-256 |
ab065d1f0777a54fb1eeffc9c1e6f1de40500e335b6ae7b028ce01dc2d67badc
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 601.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b550df28ac7582cff7f8ed0b4a65afee5bd54eabd8ae43d2f5c84ad30dee0fde
|
|
| MD5 |
27335f27d523d8d9bca766d70d870628
|
|
| BLAKE2b-256 |
f9c26252f86bd8e6b9f6680bb2fdbc6925f8b02451c0b363c7a06c8a23aa1466
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 490.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e266cab445c2a0da2cd7bd7792d105ca572f85db8d50833d71f4f0cedab93c6
|
|
| MD5 |
78ed0b9733345c1c035ce5f42eed0cca
|
|
| BLAKE2b-256 |
97abf4362bb3877b4538b63ad096125a4b4de44e75997ded12ad8d2aef8f506d
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 462.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4aec7cc71a732c318aad130102837bf10d2661aae799fbde06bc0fb69e9f177b
|
|
| MD5 |
6e39def9309c81927a15fc24ea58bc8e
|
|
| BLAKE2b-256 |
6386e0e65a17209452ea2cce7b4d4302ff7f58b2bec55cbe0a09f48832193761
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.5 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0dca858684b4ba212a35a991b2e3c1de607bfafc91258f19d734afb5c442389
|
|
| MD5 |
04638486479603af5a2eceeeee521621
|
|
| BLAKE2b-256 |
9b524b565c60833b3c7e989a88338db6f1611087075afd3c306ddbef23f5fd62
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 394.8 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62645837a19b57a19c1327f89077bf3fbb5b15538d4176089efd77b73d606216
|
|
| MD5 |
29bfad3327b203444e76d4d2c8854fa8
|
|
| BLAKE2b-256 |
9f30f2cc11bdc5322d9b70b7ad13a9201766524ddf22e3995d7a5158130592ec
|
File details
Details for the file typhoon_rainflow-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 408.6 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f352f03da36028b73a51c7b5e7d859593272f6e0593d178544601af86239cfae
|
|
| MD5 |
eadab2856a735514bc253f9dc3a1776a
|
|
| BLAKE2b-256 |
1cc1a6277ed803fcea32b84688a33d03d71b8fa405a030cf191925c70a58be61
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 260.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad4471bb9c30d02c1f6c960164ca7756a659d8ea6430b160acc66e08241540c7
|
|
| MD5 |
673fb6fbd587633add43777c17efc4fb
|
|
| BLAKE2b-256 |
b7199aeba2af40a70794341d1f63b8a156e17964e045213656fc8b67e09a1869
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.1 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d6918495442b76407d80a446663e8f4c165fd3ebea3f399b950e212e9c1a2b1
|
|
| MD5 |
030ef4bc8da81d20c7c147dec2aac533
|
|
| BLAKE2b-256 |
9f5944c509ace7e1ed9b8d11deadc30c3475eaa1bbf1569c2f15f94c0eb66804
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 657.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9097e3ecc1e41799e354cf3643a9bffdc40346899b457d8f2d5efeff5e805c8
|
|
| MD5 |
280815a8d16d59308532741c56e5cfec
|
|
| BLAKE2b-256 |
ee7a5b00e747a67098b202ad13cbeb0f56d04926789eb8ee8b9d97aada4d6019
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.4 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
05a9e87d8c58727187039fb4222b7f296ff2d0cec502a81a1b07c957446da2b9
|
|
| MD5 |
c796df6e1374e9f02284d55a64a0452a
|
|
| BLAKE2b-256 |
6390a8db618df9f2e451852d8a6bf221293887c20a17e7cfaf1bfdd7e437f308
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
712f34027d2c34c88ae2948921c7f7928f9b47ae9cab72c6f23802014ce4841f
|
|
| MD5 |
58f314a327132d27767097a0209bfac3
|
|
| BLAKE2b-256 |
ae1e592567978baaea6f13b0fa5ddb88ba8a4a790976158dbab4a548eb6e9ac3
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1628c73ca72ce1d44f37bf3fa95d94ac6968ffb993d48da6a99a699ee57cf9c4
|
|
| MD5 |
4a32660c14134b9195210cefc0fd4e01
|
|
| BLAKE2b-256 |
aa126b5876fb8c0b277a56535e79df65ea8492053ef6206c74c131b99303e305
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 495.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c5ab906689b53385413b55f6720240eb6be89cf7a649069b8ac8e21b525b1025
|
|
| MD5 |
8607e2ad8743b6e42c8eba6d8b1d2a66
|
|
| BLAKE2b-256 |
24e10cd26d472b07c3fd3e0d802342260354b14137b0c4b0d5346116e46e95d6
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 601.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e6d30cba7253471a87b055d107ab1d2fe054d2a5c7d300c517989aae3747fbd
|
|
| MD5 |
29837038b583fef45bcd39c26a7fe949
|
|
| BLAKE2b-256 |
9b89a0eb6956ae9c69cb5c6da5198ae1eb931fe40e60032e7c0b0012bd71b78b
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 490.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ebbfdfa5dc0aa8acc93822e523c61f74dde0da5cb0fd722d3601969e576e8259
|
|
| MD5 |
f99e8ae14e99ee41c060339fe2624d24
|
|
| BLAKE2b-256 |
4d1a8d12a33588676641ea956c56d59018e139e82e9d46eb85535e0822a87bd1
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 462.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51d31857adb22d033c526a216d637523b57fac6f1a8f0c33bf2285cf6bc83442
|
|
| MD5 |
a76a29292ff18c965e63ebb11a026a6d
|
|
| BLAKE2b-256 |
00685d9a43910646aa89fcf7768466f4923a56042a6cbd52e4f0e16cc20e720e
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d932c84ef62fac4e0b424b25617929a53252880c3c8337e6cf91faea64b3185d
|
|
| MD5 |
3277860e10f54c076867cb8d70c60508
|
|
| BLAKE2b-256 |
20f02d04207245e3e758df13a0f120d95e62f78a6f64c6ec4c60dfdaa0ee75a0
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 394.8 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f9f2429ead57395e86ad7d8cbaae60f84d52053176ca5d9b6fce0f5cd410217
|
|
| MD5 |
7b95f8b6156569f61eb5d992a5687a93
|
|
| BLAKE2b-256 |
23b412e55f2f8fd268a7c0f48ee2c9143ccc5916a63fc8f4a144a9fa588ed14e
|
File details
Details for the file typhoon_rainflow-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 408.4 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b0ea37955b94152a93da454ae1fe317907f237f73ccc26ec72e72706f6e62bee
|
|
| MD5 |
968a1a9339aade045f4156c1d62d8ab3
|
|
| BLAKE2b-256 |
4a3936169e23c53a4400e108302407eb014474f05f5249942f914ef6c9aa3e4c
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 260.7 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dde20af92aed4b82fbef1fcedb2d22ec03899477724954f8359d63b9888df75
|
|
| MD5 |
4dbcbfe351718b621f2298c9a94ddabb
|
|
| BLAKE2b-256 |
4123e4750b1c70cdff5bbd0754643bd6e168c91f02ac480d93650a1c6fd85abd
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8e4509042479c4bee6fee9632c3c9571c4d9bcebc15e1a8d3257e15f630137e
|
|
| MD5 |
add664094b348c13c744bf84cc1ac616
|
|
| BLAKE2b-256 |
602517f02c7b22c8c313beb1c3875425ed5fb503b29aea8d9e8509be294a8535
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 658.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d94d6f3c603c175cbec346bc571b677203ec995ba4a6e404d0051b5e20a20d2
|
|
| MD5 |
58f0a758811606d39c98b48cc56e4056
|
|
| BLAKE2b-256 |
b661fb54f59a7e4f05cba48bcb39a79db8c6cdbe009d4571cd08f4dba1659b72
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 725.2 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
06f259f29f1d273193bad669d39f3ac67ef25e3eaa0a3f9bd796a11ef2283949
|
|
| MD5 |
920037eda0b28a6bf96f50c1746a9ebe
|
|
| BLAKE2b-256 |
dc96895c85f0c59f97c8bd3d6102e9b5476660c7e96a5b060631a8176d3b90c4
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.7 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b56812a80ca04844faacb126d900b0d6c2d7b70eb60bf8af28557e64cc2e9d18
|
|
| MD5 |
40431ed70688f605620559af5665f4be
|
|
| BLAKE2b-256 |
141b6307cb67882d01225bdf863b039f85336b12762913082e49a57c194240c7
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84db1980b2481fe0790dda3df86b824e60baec1e4d2d4865d5892f1724706e46
|
|
| MD5 |
dcd8d1c28d36569861085d4b894d3662
|
|
| BLAKE2b-256 |
b0ea36c405fa93cd3f03fdfae795bce7e839d0e743b4265400fad51fc4c2bb09
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 494.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef876b5a16988bdc737aa1be02a3295c59f4b5886b2ace3ef5ecfbea4b839944
|
|
| MD5 |
4c4f987136190e53b82a6435c0751a03
|
|
| BLAKE2b-256 |
430a51f9c66a19d73d14237730fdd6b21fef6b031f75b03c784d5230662f0f48
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 609.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46863c956bcc3eb8fa71ac22c661c90d5d1d47d9ec6c2dbe903662fb91276beb
|
|
| MD5 |
64c47656ad9dee98657e3d25a1fe80fd
|
|
| BLAKE2b-256 |
ddb2d76aad9ab6492e12a069c06f0ee32d04107bfc62558bb3fd1c599ceabcd4
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 489.9 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e94267b5b1a097f742d4a110e1e8ee717892cacee7b529335940c5170ea5db7
|
|
| MD5 |
bf4a1f79b7bcd776bdd9bf745f3e8cdd
|
|
| BLAKE2b-256 |
54064e726f1c9699edb8137cbef4cdbdfe08db649cce4721719f0ed97285e1eb
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 463.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97256fc8672858ce2b479a7f76e61741bd92750154da201fce88a97935d6dbba
|
|
| MD5 |
51d678b06001501056bfc3629df69429
|
|
| BLAKE2b-256 |
27ce6d5a96e0eef7d2120951f413e91ddfbaf6b995129ca05e2f68b360ff5c81
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31ea3b59b7cc491c597dd97773f69fc9c635c8a82626b7701fd203580233008f
|
|
| MD5 |
5e39f69cfeeb7b81cdb20e54f77c2b06
|
|
| BLAKE2b-256 |
4511aea50dc585df7360c433f185f8caa468e2df0d26b079a3a240ea64537d4c
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 396.6 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30e1236a510ebc25a712f84a71c9eaaa5744dd4bd99ca2394a7d2cb2d6f89e74
|
|
| MD5 |
a820867f77cabf60b1a1ed69df80f270
|
|
| BLAKE2b-256 |
f4ec8d110047ad357d7f7589a5c48b2505c459ea0f3df2223405cdab8f1d2d6d
|
File details
Details for the file typhoon_rainflow-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 410.4 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd8df48d0b84acdf97d2eeb52fa88e0232f91e10f3599db725904d2623902b6
|
|
| MD5 |
b1a00d76ca8957b21b580a0e0f39d121
|
|
| BLAKE2b-256 |
b26145ee0be82b06bcba4079816cabbce2a8a4a03636c44939b7668e3c3dcaf9
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb4c2fe6f603c5ff2ae31a423a1a3a30144d9c9181660501b859d05d18a3d33f
|
|
| MD5 |
c712c42ba47fe9b173fbc87c3db2e12a
|
|
| BLAKE2b-256 |
38127301f48e7b95f7f7a9866a2f9a516d5535414c13bd4699dc3850ba4c1e6d
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61c2373b0bb4e92727780f072479e0c049571ecd51e7adc18342d2d430cbefb2
|
|
| MD5 |
2c289b8bba20fd83ce7a105f79c450c5
|
|
| BLAKE2b-256 |
f148e14a2383c122546213feedbe6c3c4bbe70788cceb0300646032d7ac0a73f
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 658.5 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2336697e12a390c45ee78348d63bf006cd004d9ecd166fbae96d87128b1ef0a
|
|
| MD5 |
83eca58ab6b87bc970dcba326515fa48
|
|
| BLAKE2b-256 |
2177649ac053df2a0ff8a181f3b9efed3e6e1e0e165e2f0854ae7f468031ae31
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 724.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5968e2682625728656dd5d48ce1a619abe6a25b3a216c9f9f72d8e1848b576b
|
|
| MD5 |
aa9746493ea4869c3e5a1058a2c8796a
|
|
| BLAKE2b-256 |
684f3040c95391f753b1cdbe32d25dedd444dcf9aaeaf37493c5f7a64a5ebb29
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11b7a3543fbd51d3313d248fb737ffafe4ae61eff1beca6139546294074c1b00
|
|
| MD5 |
371e85a5f487d607d437ad438e5a5a2c
|
|
| BLAKE2b-256 |
cccb67c86b85dcdcb83972ac7fc6c78324a72dbb690e6616facd13e6d9cd74bc
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5a08c6f8da24f2da9ed297856dfea80978cb1eef0e31ba269e1bbf203fd2f27b
|
|
| MD5 |
40e6ad634efad1b2660191dcccbe899c
|
|
| BLAKE2b-256 |
ad12af4a1d45ed94d287445b72604ad73016e6c289bb5089ec2af60e66943b2b
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 494.2 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dca2587252818f19bc6ac38d11b28c12c86153fa9b4dba558cbe55dd1ab332c
|
|
| MD5 |
c31aba9d1cbded7393c499eb5986daf5
|
|
| BLAKE2b-256 |
de0e9ab7401a37947d8916311e132b2f759be1b3fbb5125a8ebbff8736a5b519
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
086efa097d9398c1ac4fc0a8f2ae5dec8a960c634db4a816dd1fcf9e1baf7574
|
|
| MD5 |
ae3913e08cf5bbe145c4871cfd5600a0
|
|
| BLAKE2b-256 |
9de7e406ad22d9b447bb11b7ef940bd226d304b8653e3899d8ecba456cc7784c
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 489.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b906c0b158b6375469f274acca61915e5b1fa3e759f69b1d02090457f7fb7eae
|
|
| MD5 |
2ee2b40980c15b4ac1043e7841948b00
|
|
| BLAKE2b-256 |
b8ae5e6983587e6fcb0a995edc77adb277b0499e138cd720b23bedbe11ae1bbf
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 463.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6873dc54df66c25a967b72f78b1fa0ee1e9dce5a5d92b8c4f5872b4c23a82212
|
|
| MD5 |
5cd86f63d8f2bb7f0d7fc584b8f9cc95
|
|
| BLAKE2b-256 |
41ebe28902a66052482d34b664b35d080034a69b2982729e684c356d919b3425
|
File details
Details for the file typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b55900abe4e9e546f5f9666b6755fd215a606916395f27a8e91a0cf242618251
|
|
| MD5 |
680ba8067df39eb756ff807876234cbb
|
|
| BLAKE2b-256 |
eae0164776c569535eb049d2bcd6292fa8bb13ba13967de617925e74b96e0d0f
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
530661d1703c9a8837614a082e75f584da3cee5dd646f31e72f4ef43140f136c
|
|
| MD5 |
188788bcec99b94694ebbd19c46b6206
|
|
| BLAKE2b-256 |
e6919740b7041ac813057a324e59f9d8f9b30d390f157f61532aa5c3dd1912ba
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4186f6093edf3556df1934cfca3ad545ff3f44386b3da2743c5f42efdfc5b399
|
|
| MD5 |
d4130b8b82ea69535c2f6d95891fe337
|
|
| BLAKE2b-256 |
96f7ad027d4043cf1d83bf9941a0d4a64c704b642c1daf46d9acbdc473402f27
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 659.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5ebdc9b193d4ab30d6d2fc260c3a875c846ea0d0afbb79ac32d0de36e34b13c6
|
|
| MD5 |
6587fe67245ef886964a2b0fd4603e0a
|
|
| BLAKE2b-256 |
012d08eec97ca03165e4ad9b82a464fd9d0e347c4a025fc08ab609c2eaaaef41
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 726.3 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b62984dc1b111926b90b3b72edfc8a555a99140dab704ebc606354746ad2e11
|
|
| MD5 |
d68219f01d6e4d0dd043cd6737a0f48f
|
|
| BLAKE2b-256 |
495c32830574a364171437c83082d507a6342abcf5ed34af2eafefd62c68ad25
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.8 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c33414e6ce6633f12f5f5453249c4c00d13854f34441c01c0733c7183f7a485
|
|
| MD5 |
d7701f59eca27239364720c1552ac79b
|
|
| BLAKE2b-256 |
d6e3a99112969a9c360f388edd8a565ad7e27ef557dd836035e747dbe8509799
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea0be5ccb4b9a61f87cc2931cf1d2905d814614657f5d3049b17221341531e88
|
|
| MD5 |
b6158fa0d9d73e874d6606c9a7cf5519
|
|
| BLAKE2b-256 |
a2566463a9359be294e3f1bb4ebd76c1a1019a10526bf376a5ba5f7e6b715e51
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 494.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6e17616fc56d5c852e4a8c26cf5ffc1f57c5ae200cfa20fd62d730112dccfe9
|
|
| MD5 |
6d9aa0b2d5b7ed40ed92ad4edf05c26e
|
|
| BLAKE2b-256 |
e59b3c69fc174b1d249c274030885654af2b64227d1973cd955880e60f78e202
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 605.4 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1f3d9f30c8b682088a615e79e9d70c16418e98a0e38948b58f2de38b22b9cae8
|
|
| MD5 |
b534a4dbffae2b8f4da6132142a861f8
|
|
| BLAKE2b-256 |
9c632ce562b5e8cfa17f19c7e035313d367d7991972bb60886742f8c95b79001
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 490.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0c1d545d558218aa66f2f12ff692e02107c7ca74eacefd590f7051a3db921ae4
|
|
| MD5 |
dd9e31cca5be34180199a0e0176db4d4
|
|
| BLAKE2b-256 |
095726388d700b6a1a317ef829fb8842e6d3644d40cceceaf705d803513237fa
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 464.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8500354d7732e14b3579df5fb44bb0739d7819bcab2f966757c9288c68dc86a9
|
|
| MD5 |
5d863a918c3276b53b340447ee0dad53
|
|
| BLAKE2b-256 |
cfb8cec7629cecec0c552f3351c3d343c477679fa6f32209f4074a479c3bd247
|
File details
Details for the file typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 454.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b50d547d12fb69ec532147080f0f6076d40a281ea8370c5e32d458e68f5d717
|
|
| MD5 |
293ce1eb3a8b0e8e4fbb8e56a0d4598f
|
|
| BLAKE2b-256 |
7204ca32abfcf225bea3ac45149915169b8104f0ff0c8a9e40dbdfc34821be14
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 627.8 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ce712225d69a2b410f54fbc9d9228792857ed7b694e251e11d013f379d6121d9
|
|
| MD5 |
101ba8eb768cd8188fd0348f7b4da141
|
|
| BLAKE2b-256 |
28edbd6a81ffed1d9b01c6e94d9c503eb2840f27ab2700d62efaab553047f263
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 658.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
130fa793a65dfd016c22f1fcc7527aee3bbe89a42acd3d1a9fcd8625fd92bd67
|
|
| MD5 |
59e122e634423186098d15b874981f93
|
|
| BLAKE2b-256 |
8a0c8e248caf73a79a06f099c8c4de2ee6755f88ddaaa5f25383a9a64f4c6fdd
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 726.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
80ebb69cedcf2be56d0b630481cf049e7affc9d33a250559d4d3d2e24b739e8a
|
|
| MD5 |
44d83c66363e3dd26f0d12dceff5176c
|
|
| BLAKE2b-256 |
9b49f2b92dcb971c7ad5a9a74407598525284458a145442f3a0c8ae723e3f0d5
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 634.9 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cc19f64d1133f549465d2cadd7c8fafec4cd5ef50a132803acd0bc0754457b67
|
|
| MD5 |
a373a8cf18d3449b7ad7f9e3c9c1daa9
|
|
| BLAKE2b-256 |
df1b2bf2907ab7300ffc07a73a8c099d0deeaf346964a53c224a4c640ebe8d7d
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 463.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41cf79e02182f44d943129f12f458e79a655da672577aa1c0dbbbe2d582cf73b
|
|
| MD5 |
ff8f5e8389002e3787bec290f7a846cd
|
|
| BLAKE2b-256 |
38376aa20f9a68df138c5881ed659bdcfc88f7ee514c26a8e6ce4ba04d5f74b4
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 494.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2190271c4896dad2a6225ba669c3809510d27d99b98bdfe81f9ab3f19948f266
|
|
| MD5 |
e19f56b45f039e22bdece4ac18df89e2
|
|
| BLAKE2b-256 |
3fad9b363092bf550d39a2aed034e62cff81fc1f917245cf7b9373f9cfd6f9f2
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 609.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af210dd2b968f55d4101a60290069df378643f75856a2084e2d6170315c49705
|
|
| MD5 |
08e913bf82e5091910b7d313a7cd802e
|
|
| BLAKE2b-256 |
ed2544abf5a403131d9af36f578d98fcd4f586522ae1a7fa7000246a660200e2
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 490.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd88ae809fc1c5cc3eed1a624351a911024a261e5fb75b6eb343c9278d1a15f9
|
|
| MD5 |
e9c1a7270de54d2c2e686d9fcadec084
|
|
| BLAKE2b-256 |
b737d78ca4d2b4971cf62fb0d549a24bfc2a7f73117713097c8090b607dfadc4
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 464.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e45680d4d9d61e865b88d988bb9578db57b52004d60e445ce6c104b8dd503e25
|
|
| MD5 |
2a0e3cee73d6555c36d290501fc991ec
|
|
| BLAKE2b-256 |
f663c374fb4085f5a203883acf811ad0f6f2e955151367e0e4a35caa9d6dfeda
|
File details
Details for the file typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: typhoon_rainflow-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 453.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: maturin/1.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b57e46efef873ea04f721747807dce5692e24f3404e39e718084983f97fc9229
|
|
| MD5 |
d79951944fb1d7cff8fb0a9d3b9200f6
|
|
| BLAKE2b-256 |
4be7ba024f780726d679c83b04d8ff78ad7351dba20c4a7901a8661b391338d2
|