No project description provided
Project description
Check bimodality of a histogram using van_der_eijk
function.
Limiations
- The first half of the histogram should not not be too heavy (>2x) or way too light (<0.5x) of the second half of the histogram i.e. if you sum first half of the histogram and second half of the histogram, either of them should not be more than twice the value than the other.
- The peaks of the bimodal histogram must be at the start and end.
Usage
This library provides two functions for both Rust and Python.
van_der_eijk
returns A-score as described in [1]. If it is less than 0.0, the distribution is very likely bimodal.is_histogram_bimodal
is a wrapper onvan_der_eijk
function and it returnsTrue
if histogram is bimodal.
Python
Here are some run on small histogram. This library typically performs much better on larger histogram.
>>> is_bimodal.van_der_eijk([3, 1, 3]) # A-score (negative means bimodal)
-0.14285714285714285
>>> is_bimodal.is_histogram_bimodal([3, 1, 3])
True
>>>>> is_bimodal.is_histogram_bimodal([3, 2, 3]) # the peaks are not very high
False
>>> is_bimodal.is_histogram_bimodal([3, 2, 4])
False
>>> is_bimodal.is_histogram_bimodal([4, 2, 2, 4])
False
>>> is_bimodal.is_histogram_bimodal([4, 1, 2, 4])
True
This method doesn't work if peaks are in the middle of the histogram rather than at the beginning and at the end. Or perhaps I got something wrong in the implementation.
Note that negative value in van_der_eijk
means bimodal.
All of the following should have been classified as bimodal distributions.
>>> is_bimodal.is_histogram_bimodal([4, 1, 2, 4, 1])
False
>>> is_bimodal.is_histogram_bimodal([4, 1, 1, 4, 1])
False
>>> is_bimodal.is_histogram_bimodal([4, 1, 1, 4, 1])
False
>>> is_bimodal.is_histogram_bimodal([4, 1, 1, 4, 4, 1])
False
>>> is_bimodal.is_histogram_bimodal([1, 4, 1, 1, 4, 4, 1])
False
>>> is_bimodal.is_histogram_bimodal([1, 4, 2, 1, 1, 4, 1])
False
>>> is_bimodal.van_der_eijk([1, 4, 2, 1, 1, 4, 1])
0.46190476190476176
>>> is_bimodal.van_der_eijk([1, 4, 2, 1, 1, 4, 4])
0.3908496732026144
>>> is_bimodal.van_der_eijk([1, 4, 2, 1, 1, 4,])
0.2923076923076923
>>> is_bimodal.van_der_eijk([1, 4, 2, 1, 1, 4])
0.2923076923076923
>>> is_bimodal.van_der_eijk([1, 4, 1, 1, 1, 4])
0.22499999999999992
>>> is_bimodal.van_der_eijk([4, 4, 1, 1, 4])
0.17857142857142852
>>> is_bimodal.van_der_eijk([4, 4, 1, 1, 4, 4])
0.20000000000000004
>>> is_bimodal.van_der_eijk([4, 4, 1, 1, 4, 4])
0.20000000000000004
Rust
Here are some examples from unit tests.
assert!(van_der_eijk(vec![30, 40, 210, 130, 530, 50, 10]) > 0.0);
assert!(van_der_eijk(vec![30, 40, 210, 10, 530, 50, 10]) > 0.0);
assert!(van_der_eijk(vec![30, 40, 10, 10, 30, 50, 100]) > 0.0);
assert!(van_der_eijk(vec![3, 4, 1, 1, 3, 5, 10]) > 0.0);
assert!(van_der_eijk(vec![3, 4, 1, 1, 3, 5, 1]) > 0.0);
assert!(van_der_eijk(vec![1, 1, 1, 1, 1, 1, 1]) > 0.0);
assert!(van_der_eijk(vec![1, 1, 1, 1, 1, 1, 1000]) > 0.0);
// bimodal and detected as bimodal.
assert!(van_der_eijk(vec![10000, 1, 1, 1, 1, 1, 10]) < 0.0);
assert!(van_der_eijk(vec![10, 10, 0, 0, 0, 10, 10]) < 0.0);
assert!(van_der_eijk(vec![10, 10, 0, 0, 0, 0, 10]) < 0.0);
assert!(van_der_eijk(vec![1, 1, 1, 0, 0, 1, 1]) < 0.0);
assert!(van_der_eijk(vec![1, 1, 1, 0, 1, 1, 1]) < 0.0);
// Test cases that bring the limitations of the algorithm.
// This should be bi-modal. Algo fails because weights are not balanced here.
// One side of the see-saw is 2x heavier.
assert!(van_der_eijk(vec![10, 11, 0, 0, 0, 0, 3, 3]) > 0.0);
assert!(van_der_eijk(vec![10, 11, 0, 0, 0, 0, 30, 31]) > 0.0);
assert!(van_der_eijk(vec![10, 11, 0, 0, 0, 0, 20, 11]) < 0.0);
References
[1] Eijk, Cees. (2001). Measuring Agreement in Ordered Rating Scales. Quality and Quantity. 35. 325-341. 10.1023/A:1010374114305.
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
File details
Details for the file is_bimodal-0.2.1.tar.gz
.
File metadata
- Download URL: is_bimodal-0.2.1.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b203723c965918e0a6e77ea66bd5be8c2e904afc6d780fd01beacf679fad5894 |
|
MD5 | ded8a85ff586a26f68cf7337dad7bed4 |
|
BLAKE2b-256 | f84e9de7ec3c532cee27b0c29f616dd38008963717247690e020d16415680512 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.4 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac2aeab97b477d8bda114ff90357e0230599c60fecc71dd19efdeeaa2a044733 |
|
MD5 | 6cf18d58bb674712ad795b2c0de0f1d5 |
|
BLAKE2b-256 | bafec5a44f3a313acf1397e62de8942306a64748223c02aa92ef09f333b094e6 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 435.7 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d92a810e3dfe634c0d33988b2048f72f80f4b1f858dcc02e4566d009c3f56de2 |
|
MD5 | 7638b20d7199f31644c7c337225e0271 |
|
BLAKE2b-256 | 20a27304e125743ae5a3acd39a1e42d2bb6d9d18e576d2c8000d59729703f212 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 515.2 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc67cb20720de71bde5ce91574e75448fd5f46a713783477675e7a4836650a7d |
|
MD5 | 4226c5435344c4e03d1af6f7fe080261 |
|
BLAKE2b-256 | 5a2f3e5d01af3925c2c58290ceff0b7e1d189b0ec499c7a0be0c5890208e95ee |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.6 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f932509486de8a66db02951fe293292849703e837948f4261332bf88c0055dbe |
|
MD5 | 18b7cceb6d0f8fc1a46a24fc9eb37fe5 |
|
BLAKE2b-256 | 6a678eff38e6573162751925b200b4a2865e37beb87637184b62c64976b12432 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3060e9ee300c87cb6c62dd02b389697534e559d30e16bea016556e01d9ec4af6 |
|
MD5 | 28f1304a0dfa7bcde0944701aab7e352 |
|
BLAKE2b-256 | 81b1dca711626133d1311fd1b6a4afe3ac95c73f9f238c9b21fb235ccce04337 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 292.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21aa2a98301d697d6b79b7e69c1549db54afcaa0f1078ef785eec92a60ca17aa |
|
MD5 | a83a98ddf9eeb2bf4f6dcb70a4b31334 |
|
BLAKE2b-256 | 827bad9cb8751b87e135be6470e060e65892baf2a901ce5e4daeec2a5298f239 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 288.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bcbb5f1812c5d3f8b00e360b5380056034022b35d41dc0c571ef26afc89ffa05 |
|
MD5 | c7c2e8a2cdc4eeb26a65c711b7371940 |
|
BLAKE2b-256 | 4a43b20be22fc6b539b259bd935b9cac8e5ab5c6f2624ccaea1e2449e82fe9ca |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c703daa371ddd5d3c743742d3ccad0a46d21292d79d4dc6fe3b6f8ef93a35a2 |
|
MD5 | 95ce78feb7551877e21ee7a88f930ce7 |
|
BLAKE2b-256 | eed17aa64d3eb67d361cc541cff2ea6105fd7ee6224dd35d72c726d068049ce7 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b719d71f868daa08e4c1d9c66e4fd92160dfa0568cb9dae79d161765542a881 |
|
MD5 | 85a0d228f134033042cd55d80d9f6736 |
|
BLAKE2b-256 | 29513f7f9256f720c582d6778a8d8599dc4b574800dba43e2431c8f24a58a634 |
File details
Details for the file is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 260.6 kB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 694e909e30b7ddb2fa01e22dbf0ba4de989a03e1415958b81df80fe8f881ff9f |
|
MD5 | 240cedd47985e2e34738c025bdabb8fb |
|
BLAKE2b-256 | 5bfccbee631949a40d475e2be2f6fd924a4988367465232719fcf693e64ad355 |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.3 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bb3ef2981180bf92946277c38fff02fce3e18c74e838b7a98f4f2a95d829b2f |
|
MD5 | a33e0632c2320c1e6dabea05d3e175b5 |
|
BLAKE2b-256 | e18437ff1d6c8eb72cc15b4d8a4105e48b37c63ddc20f8f09eb91188dd22107c |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 436.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35c0f0ede0e33bee289fb4a082f2ca1b606b2b5a6acde369924d9ab684c530d1 |
|
MD5 | b5c89c31979adcaf6680d50de81b32c0 |
|
BLAKE2b-256 | 514377f3d493548c344b29d94643e0a99e982d49fd1092f520d2d482159ab3e7 |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 515.4 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7abccedf474c87dc447c737f6faf31b81b440c588277327165a052a7722c7a04 |
|
MD5 | 30c5de1a78ca5daa57458120dd45dee4 |
|
BLAKE2b-256 | a49c2a0a77d8ba0a5b87a52f81bf507edb1d3c152775fddea454fea2bd0c6053 |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a63a749ba3110d085017ff12d5d7b5e39057903c8095da385e9eec6e59b25388 |
|
MD5 | 13caae32421077128e29335f8f5b82e3 |
|
BLAKE2b-256 | 3e3661a5d585e3937bb674dee57f5338a5b3df660a69a4c2b6ca11f9155abda4 |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 293.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfebfc4ba50276f4a3c90b9537c858e88c4ee48c015ba884ba85806a73b4bb23 |
|
MD5 | 9ca1ed2baa9d6d325da00d58ca0c2608 |
|
BLAKE2b-256 | 0d3d753ecc163bd783eee43a3c18906826cfd482c9cbe54b42d29e72165eb16f |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 288.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 602714661de6ebf1d41a8a409a9b75da6e3d8b37054070293f96c30178bca08b |
|
MD5 | b98ba5cb88fc41a7440585375f3531bd |
|
BLAKE2b-256 | 37ca6bd45815ce9f1fd6601209335c3c957bee1e226de4c1200415903e980192 |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9660383658c7ac5535ea84b92df7c8ccd29d46aefc671c9b2204b5acd9c916c2 |
|
MD5 | d26fe75fa9f241194e30902b0a8cf38b |
|
BLAKE2b-256 | 16bc0606b1a41396fb322245c1f212e5a13acd6580214ee80683ede6a3eef8ef |
File details
Details for the file is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 248.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4f2351c3ac5fb43e2c8e212a50267973b700cf3b5544573866b7d7c3a385ad8 |
|
MD5 | 70925e3cc0a553e69c7edca471f70984 |
|
BLAKE2b-256 | cc70fc184d3005ca1c0a24b38d1ef59baa8ecfc39c93283115f1e83fd569839e |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.5 kB
- Tags: PyPy, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e8695d5a78524d73f062e213cd7627850bdf4086e7dc89c26857f35f2117e7c |
|
MD5 | 3621a95f1c6f03f54561443a9cdf0c3d |
|
BLAKE2b-256 | d1c1a4fe95539cd40d11549a908c947c2d14d2cbcd3a382615887c12ae893e47 |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 436.2 kB
- Tags: PyPy, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22d8ab8655363ccdcd4a6ee058f56d511050b67064279206baaaf7d4a2d773cd |
|
MD5 | 1ed4a458fb2d31d78380e1df00589ce9 |
|
BLAKE2b-256 | fe68e6b32c6f266bd19af5647e9cbbd14e042931d4a01111b4f3c3752eff4ca0 |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 515.5 kB
- Tags: PyPy, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc7806cecf9aacc1e1fb595bb71a91c0f3ec6b9104db8b31ee0a82cc952aa18c |
|
MD5 | f33986456332cd0bc8eb0ee9d47da4d2 |
|
BLAKE2b-256 | 1b3c659756084ecf98aa0ee8b6a968e92ee15898e682f731ba1a695ee566c160 |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.7 kB
- Tags: PyPy, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9d2081249454755afe525327bc27f36ee1cf91fe49d7c140fec7c32e5909fda |
|
MD5 | e67359819e2de6d30eaa44db8a0a04c1 |
|
BLAKE2b-256 | 3b950fbfa6a4d43007b28d73b2f6322518fced54b706c99e942e06c21392e1b6 |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 293.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36fcb153d83bade45f27427ad9952b24e24e42cee3ce19f5f32532a3c47b99d9 |
|
MD5 | dfeff4a0ee3a98f1763e6c7f3a77919c |
|
BLAKE2b-256 | 2545e1b5816c4822ee1b7600df858f98fcb3d54345ab3c5513265802f8582d6a |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 288.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7bce072e6cfe5291c3b7f127f2d84832c98a651f71fc4484ff66e2368de9bbe |
|
MD5 | e72bf6f4eb1e711b1a9bc589b4f4397a |
|
BLAKE2b-256 | e1d2002d3a708ba8219e4b438732e2086d01f2df618bfd406c5047d2f01f6e43 |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 254.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47c9f9645889f663244e535ce22ea7a4c759915f87196f02afb1d6b9137e85b3 |
|
MD5 | 6ec4e10fc2083dc8be3f0ad858a3f709 |
|
BLAKE2b-256 | 72ef5591377822ffba8dc3aec5e89ee2b543f92c5479520c4c43f23ef81e67fb |
File details
Details for the file is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 248.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b35793253ef203418ca87f6f83abf5316611a83e3099b85c47cda1f1f954595 |
|
MD5 | b034d8af47b040c5f723cd4549a3f927 |
|
BLAKE2b-256 | 5feb658692b9a235a9e2f6d8c9c1c6da507b0ef8baa6cd17e3cd9a7d7bee95f9 |
File details
Details for the file is_bimodal-0.2.1-cp312-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-none-win_amd64.whl
- Upload date:
- Size: 116.6 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22a586b4745b9650e6f14cb501c9809fbf0b8e64d76746928eb36dc93b62d435 |
|
MD5 | 0374af026f9ca5a24102dc5e9f2c598c |
|
BLAKE2b-256 | 5c71ae25dd727047562556b86367c455097b9abab8d26c25343d307e04511dbf |
File details
Details for the file is_bimodal-0.2.1-cp312-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-none-win32.whl
- Upload date:
- Size: 110.8 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e47710bd1a4a7f033716a5f10aa412925f9ad88126338aea285a9965a36e26df |
|
MD5 | 6b3c05b7d0f9e587900b6347e20b0e02 |
|
BLAKE2b-256 | 7cce116e78037a8e454b84b0b63a972811d5b56aeff16a1c9f463a0d23eb9df6 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 413.5 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5ec14e2f55b96500948c59dd6e21087be1a0db64bdfce5152b0ecceabee06e4 |
|
MD5 | 5d365a6bce7004869455881367a42c2f |
|
BLAKE2b-256 | 942f75ab28b9e6693d6c0c398c30cf3d22b7716a265d788e73f5ece4949aa78e |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.3 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99d40edcae79c40a8a2492e26d2b933fb5a8a2af575ab1726500c3284981e188 |
|
MD5 | 28c78451d792d7cd809b5d70a0d70277 |
|
BLAKE2b-256 | cea376f29c365d0d10e64aa61c4615cc260b0045fced0bd0718ec733d3d121fa |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.9 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c835c6391428139c3c2bbcb87794eb3879c7cb130710e776dabb5d1d880057fa |
|
MD5 | 2d3ffbbd9d3fac69698689e5fecfe088 |
|
BLAKE2b-256 | ee207960e8185365d2da131dc690ecba7809376e033649262f24ee90a986b8da |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.0 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41b4a44117dba04be1d6519d9227ccdb0fb171f3435ef2b8ef92814beeda0d43 |
|
MD5 | 8edc5cbd4dbc06c821646ce453790855 |
|
BLAKE2b-256 | d9232dfff12697fb307d133975677b08eb8b5d1ae031b7d41639257094429514 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 752dc4ed7f0dac3d6d65e7e3bbfaaaa2ca86bfe5b528f80c1330f305e006abd0 |
|
MD5 | c98747abd1e86d34422323599d58bc75 |
|
BLAKE2b-256 | 5c5ed8a608c696a747256fb3e604c9c843cab1d91ff4ecf17cefeab2498e27ad |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.9 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1e1090176bf73c70f0ec0831c9391e18ce329b1c6168814e258aeff9d95133c1 |
|
MD5 | ea55c562857027cc2bb44101cf68c100 |
|
BLAKE2b-256 | d429eb39514927d1de8923f179688cb742f482c647d84225d26fc6114ed1ff29 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc345f69ef210f3f7bc6bdb4ace5142ea69e849d7322d3536686668af3e9192f |
|
MD5 | f39ab7d11ace4bb5a9b1b11f09959ee6 |
|
BLAKE2b-256 | 5d5a8f530737ee4ca53e10fc2e833b9dd6679c2d62c289e4bea90638c986e075 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c51484bbbf6785dbe483e66ccc80054ea2af8e3b4b652adb00fe426e6db1ae2b |
|
MD5 | 43fd2f59670be8295a44bf91bcfd1e31 |
|
BLAKE2b-256 | 00327eea22be61b3f602a75de6f0e5d6322a2f60451210d394e6bc9c68af132f |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52df76651529679e30fd38af0e1b4104344e6119a3b260f385bdb06081e33814 |
|
MD5 | 3b7ef67cb1a3dd1632c8b6c6828d3799 |
|
BLAKE2b-256 | 01060311dfef4f66792738238fb0175a7e0d31e65235a29936eb13cb4ecf58d1 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 258.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afbe26fc33698cb3f129a7db61492c52ff4d8bac35d9ddd01cad2a4e14dcc716 |
|
MD5 | 7d4c5fcd004b663188968c8be2cff17a |
|
BLAKE2b-256 | bc10c8f64b60c10d0855ccf75d5e431628687890ab758909216517d8cc3a9219 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 216.3 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbf19f79c75095e2585f187cd98629e9162ea78091aad71376cc23645c42ad86 |
|
MD5 | c235cdfcee46e066013e95560e78bed4 |
|
BLAKE2b-256 | 808ff679bf6517d9036d86ea890a04738d1a07e198f50c499f469dd3d9dfb980 |
File details
Details for the file is_bimodal-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 219.0 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b14034f084ec6e07fe2e6f18ebe623d13d95d0c41ebdde63d950bd3daa7016c2 |
|
MD5 | 8a98c72174e17faa3c4573110887c9ed |
|
BLAKE2b-256 | 031045a3eb3f6ef09f35f983cdafa2db2bc8851d8dc4ac40b4fc355301b31684 |
File details
Details for the file is_bimodal-0.2.1-cp311-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-none-win_amd64.whl
- Upload date:
- Size: 116.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9808b8d84d3f102ed69ffddb1d75a4a2e052ef42f01f26dd709a4755f6ae7dc9 |
|
MD5 | 2cd332e03ed82167b3524a9b5795af6f |
|
BLAKE2b-256 | 7bc71f007774c902206134f1cb48a32898706f9223633fcebfedf2558c30a360 |
File details
Details for the file is_bimodal-0.2.1-cp311-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-none-win32.whl
- Upload date:
- Size: 111.1 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65624797d35931108bf88bd7a1f9d524370daf9f83c625c1e2faa1aaba114ea8 |
|
MD5 | 3ea7008fe10a093675cf3ca7f67201d8 |
|
BLAKE2b-256 | 053c2372ce3d660001f6dd4ca3a06f3b05459d34d0c1a25df668454e9df4dd29 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.3 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4609fc6ea1ad0eaf16d1227961af2fddae6f21706419ea82080586a174a5db1 |
|
MD5 | 4d1ed603b43337c0c2aa61b5458a254b |
|
BLAKE2b-256 | dd76b305cbd906f827aee20aee2ac099623654c768ddf4ceb173832ef046df5f |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.6 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45760b34d14f1d0dddc738bcde8280d4fdb6899ce0d0f40341106ca477adbfa9 |
|
MD5 | ecee1768875ef0bd399574a92060d3e2 |
|
BLAKE2b-256 | 334e046436d6158d0cd81680d31587b70436b41889a5488c47ea32abe5f5262e |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.1 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b727c48334fdeeadb365aa5a0cf9084ea562fb6129115627fa26cf96208a1cf |
|
MD5 | b29583987275567c8a68efe3ffa8d1c0 |
|
BLAKE2b-256 | 1d9e299ed2c68b9c90f8223c466c11191bd13e7792b9ee3e4e2cd89bb2002ade |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.9 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf617c5f5a06947122c657740f019ac2d9dca74c24d3269a342aabf4358c5b8f |
|
MD5 | 66f44b24c728c9f8a64ab8987156b54e |
|
BLAKE2b-256 | 07780de0d3768f6a98df6455ca712a3cf3834c105eea4f35adc71a51591db062 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c5d1c50be085dfd18fb0df3415d2ff0d063bbc01c2fad82148e499ca5cd209e5 |
|
MD5 | fcf81181ac38df8c1bc391b8b2c392f2 |
|
BLAKE2b-256 | 8e947293ac72071431aae9cdf0510bacc25a14f671769171f0d1920c4a4db27d |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5adbd5b2685f86dcf8e01783e7192b8ec09f0b761ac5e6a9084b7a9e0c075732 |
|
MD5 | afa1577dd5ade09423bbf3272ae6e292 |
|
BLAKE2b-256 | cc8b69653bfb5cc6c414baa8a269ae46e34adc029effea0c3c7dfdcdf3cc92d2 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.2 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 122109a345abb4a116e59577d199ac6d5809a25c9c98eb160f5c6777e56771ba |
|
MD5 | 096f81c6d3322a5212668d24b0da51ef |
|
BLAKE2b-256 | 15954ac531b8757af0e8590bb5c7a6d0390ccc6b30f70b3fcf28b818ce2779de |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e831511ffa46a0d206657d3afcaed9d4906d7891ac310c1c54fbddb4b095eaa |
|
MD5 | 6385e6a9b80b622db7cf3ea31de4bf6b |
|
BLAKE2b-256 | b10fb88b54255f45e0ca967c6abf4f53acf2b5f2d66cc6e3510d3e28cfd50f18 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 238991977731ed7b4f989df9746fa4b112a09cb9849133a45c011d89ffad6d37 |
|
MD5 | 5e4db9b7cbcbbc82afada039b19032fd |
|
BLAKE2b-256 | 64077619cc12f7a7ccc93b05fc1b2bfbe9e9132f74170bf6db6cb72663789d06 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 457294122b87f0d9215fb83d182d7f3eab9e1665e87a3875065c6c71f51ed0b5 |
|
MD5 | 4faa0ea622ced798b95f4ca6006a0267 |
|
BLAKE2b-256 | bb8df3d463c826a96ef6bdd1a94bbcc25ad3113c9d49169bcb55fe8158ffee3e |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 216.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b70028847758c8ca664f87c7bfa9afe6db7bdfcb04ee665dad2c7bc03561eab3 |
|
MD5 | fbf8fe38c23fe13c548130c8116be3e6 |
|
BLAKE2b-256 | 2ee97ba11712ec5b7e945d8774ccc58a572ad7fe8694dffb3fd6aaf64abcf266 |
File details
Details for the file is_bimodal-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 219.6 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56ddb4c5666da9ed2adf293a83f5255b98865a2ad0a90339ef750c5dafbfffd7 |
|
MD5 | d275d699c366853ed3c65b7abc207d99 |
|
BLAKE2b-256 | d84ccff29f55ec4af55491a34efece0a5bc12d38f6dd956732d636a095ca9cbb |
File details
Details for the file is_bimodal-0.2.1-cp310-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-none-win_amd64.whl
- Upload date:
- Size: 116.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | af296a7def80641682dee2c222ef24a0731b51634bd2f6f366b7c27ffb8e8944 |
|
MD5 | 7c73320bee4b3260b22d22068a6926a2 |
|
BLAKE2b-256 | d43abadd460179ab745781035dbc27e6a03e75040b56b441367d8f14a8f8ad02 |
File details
Details for the file is_bimodal-0.2.1-cp310-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-none-win32.whl
- Upload date:
- Size: 111.2 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9644e13bb97648fc6624383894d6baf3c1e40ecc3243d10c5aa207d1f969880 |
|
MD5 | da6b7c557dcd3dc05938fa476ae3dc1c |
|
BLAKE2b-256 | 74d13d4f4e71f2411f74fc8630b35526aabdf5bbedad0d0ca1bb96b4a8f8eff0 |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.6 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d24a6888b910cd2aab2f48b410cd7406404b33e161359af5a5c4dc50b146f56f |
|
MD5 | 530a761e191f02da1cc0f1ae56062058 |
|
BLAKE2b-256 | 175411661debe089c97c2a85025295182889175af41183a5e831c3896a2b847d |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.7 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 006be78b1258928a0dd49b0d505bb3b975d6c779ab27681919383c2c954c9488 |
|
MD5 | 85932f6c399b98f6e5de0ec7a3ecf426 |
|
BLAKE2b-256 | fc95ef6b59c5089421adf99864eb992c85371ee3c9b2f819a7837c20caa50089 |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 089894045fe884fea170bcb136f58d80c891bb5a0774afdefe11f0991c0be07e |
|
MD5 | 2bc62294ff765ca190df96a9928294ad |
|
BLAKE2b-256 | a0e003f0d37f20e5438b4b2c489e3c88ba577c257deaf97b581492cdcd7d4b33 |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.2 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dccd10461190c7daa7c2997b3c0b66632cdeb025a11d7c1dcac2c4e30fa21e3a |
|
MD5 | 2ad441d9d9436b3ce08a4f798e6926c5 |
|
BLAKE2b-256 | 8c15078b50272ed6e3f812f7675dad9b0a9333523458b9076f012488dc17dedc |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92e7408048b191842b28e06d938e6ed55e11a162d86a7bba7f677756bb8a047f |
|
MD5 | 9c809c04ca7e31cf035c3b1d1d05d5ec |
|
BLAKE2b-256 | b91b8e9a8bc2635624747a8b3d1655283747b11aa7cecddbdcd3cb6cc480b91f |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7219cd17adcca3a7b53c8837e151babd618d49bb09ea58a57204e7e5a0949b6d |
|
MD5 | 4acd7e1720d4f2084194b612020bf630 |
|
BLAKE2b-256 | 30da011ef8cc1a7601067a693364c9d9f341637d139f2fee61ab1b1da63147bc |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c86b4c71f43d351a1aa63cdde102e59fc73bd5ecc9bd48bd32b369966522c21 |
|
MD5 | 1d59b02ec697bb5f548439396437edf5 |
|
BLAKE2b-256 | f135aff502c9f94a0f8a2e0c7f55715e6bf3ff6d12bb02815910cfc564338987 |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 55f91665980048a7e4419988e3d8aca6fe8863c15c157d8686942a3afd527008 |
|
MD5 | f20a0e5b76cc039393ef09f4d0902a7b |
|
BLAKE2b-256 | d813f27616078889ac1a77c1be683328f39398a6630a2d2b9bd4c2359cc3f0db |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26cd5f6403b45862e245d65a068795102a175a263f2990c29accd6a5408cb93c |
|
MD5 | 81748758949848f61c0307a343543b2d |
|
BLAKE2b-256 | 2a3633420bc6a60f957cf1d8dc7a8f69c03956b5b9c46a62790b4c65c0e6856f |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 606905850167d4c215de0690599bbf92893513602ebe6f14182aa27efe2a12be |
|
MD5 | 24244e018df67c96e845bae0bfad76d2 |
|
BLAKE2b-256 | e23ee49d886c75b3862076eb4d4841518446607cb62403571d31bf48c6c39d2c |
File details
Details for the file is_bimodal-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 217.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36b3289d3609c0ef526ee2dc079af7bc4a251d02c0ebf366cbaa052de58ce0c9 |
|
MD5 | c52f4b56fa9253d5490609497583ec62 |
|
BLAKE2b-256 | 9e634b33da594c6fcff33ccab3ab0c98524e5bb4c429129a1c8ccdcd14795fbc |
File details
Details for the file is_bimodal-0.2.1-cp39-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-none-win_amd64.whl
- Upload date:
- Size: 117.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6f9e002eabe864eac0745b786bf8e63eb4b8c20f01dfe3e56b2b695d65c41fd |
|
MD5 | d8f6e777f3cc1c50ce306fb34559f40d |
|
BLAKE2b-256 | 27b796854eb8aabe2b94df46ac455a154014dbcc2b43056108bfeffbf95c83a3 |
File details
Details for the file is_bimodal-0.2.1-cp39-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-none-win32.whl
- Upload date:
- Size: 111.2 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c9f5ee1800513c90eda02892d03eb245513d313e1009384fa636901cc35ccd9 |
|
MD5 | f582dc10ab605fb0bcfcb5c337482139 |
|
BLAKE2b-256 | 6d504dcd1346a6118837aaa1d88f723dd254b836ed46d9cab888fb7e85a8dc46 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | daa1d78d2332a132e62d62f12ab1ef48ae994286d1c9036e1c51a4d945b76628 |
|
MD5 | 3f044c027e9af389872d74f242bf4d84 |
|
BLAKE2b-256 | 2349f6ee501cf2e8bc7b94a497615d7c7a2de8ae8aba5c1345ac78dc3c3d5b4f |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1081a133b5fceefbbf30e3e7619cb0601396d28c0b5fe72db01e6a0aa501ac60 |
|
MD5 | 41637b1752b19c6fcfae62ce62e76bea |
|
BLAKE2b-256 | a37b498a9183f0ed9378e9e4969a8e48b41efaa4acce5485fa28027980dae5fa |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.4 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5634601299535c117f800434aff41225824e92445143373cdec00ed6e0fa5568 |
|
MD5 | 275bad90600aa5ed9ee5d49bb409c63a |
|
BLAKE2b-256 | b3e78f3169431f8f99f2b12f62bf92a783d56a322c454f95d7d9b9cdeba8d603 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.2 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a1824522eeef24b22e4afbd04f02f1a2766faa33690ae57e09d0a5c5d03a19e |
|
MD5 | a515657aef5b9614da67d3f05d878727 |
|
BLAKE2b-256 | 5b9b898e45285244915fe4789df3c1943471d8ef03b6493670f73ddec7019299 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c79e5d1bce9417e40268d9fb78fe7882cf59d632d80dd39cdf9b78a2d8c0e55 |
|
MD5 | 6cc062f8640271a06a3efa1dfb407358 |
|
BLAKE2b-256 | 66a7a7152a654e1057bce1ea4dde0e44b49804d0230b0044bf23aa5b0f16b480 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 136462199d3a8031e42efcd8fa5774ab74196cf397dca9071820998aad2c7249 |
|
MD5 | dfd95f20a69e7be8f75a10a289a2cd1a |
|
BLAKE2b-256 | 4732e84ea9e9258aeef7caf5c6e3eb74ec35b40fd5444b746f7370d1345457e2 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43d48a3278c109cf3629ec640c7d6eeeb6f44998c6951e3732c13314b684151d |
|
MD5 | bfb4e230c2797356fa55a3feb3cf094f |
|
BLAKE2b-256 | 8946e3789316c700b1c4d5fcb94c4efccf4786815e92dc731ef03c6923d706fb |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0f802aff9946329488e3cc74674ce67678708b6638a21e0cf67ec40b056fb47 |
|
MD5 | 43751f447caeac7cbf38f6f2cefddaf1 |
|
BLAKE2b-256 | f307226ac4aa1d6098af2ba9d0052ce3df3d4924589c91342a8658696a187db8 |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d0d321f4f2888b10bb08193f958f08be9af4fdc4e66b1ad5ba3616f27959dc27 |
|
MD5 | ad0f796a692914bfe456b142277301b7 |
|
BLAKE2b-256 | c86a6c7fa5eb67542d0f25180e8825a586db984cd739d10dbe351099f8ace9da |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.9 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 788c18a945b9936dba8e4c666caa2312adc7dabf4afed734d986b787e478cab9 |
|
MD5 | 9704aa287a43ecd9b1dd62ac36cf15ea |
|
BLAKE2b-256 | ca737ed7e049565653825fdc1157233de9abc3b7f032a6107d91227bf09b2a1a |
File details
Details for the file is_bimodal-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 217.1 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a44736744a6d18669e839bb300e85fc270271063e4821ef2f5f48bc63dfabfb |
|
MD5 | f2bdea0843d73b9c877d3617be576c18 |
|
BLAKE2b-256 | 46c28494550c8d7ae0c5d4f899807cca2500aef8b5d65eb45a05b2f106cf15f5 |
File details
Details for the file is_bimodal-0.2.1-cp38-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-none-win_amd64.whl
- Upload date:
- Size: 116.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c0d035d3b99ba5c4b8d0fe40328e7522af5c71471ffc7009d99f50184dc9ed5 |
|
MD5 | c36f83c8b3f8f55318b6e77c7b114f29 |
|
BLAKE2b-256 | 2d8af8efc815cfb18a644b792991b881a25281907b1d98d88ff2d74168df019b |
File details
Details for the file is_bimodal-0.2.1-cp38-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-none-win32.whl
- Upload date:
- Size: 111.2 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4b5c4b6c01d6ebe780aa4fb97ec93357347dd6951ce2efae061cc33f22ad030 |
|
MD5 | 5bebb47f8f0ce1b2e63f9750f0e06874 |
|
BLAKE2b-256 | b0e803dbeea0d32c278171ea8f60281b3ea36ddeffce40c23eedb85915217844 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c325af66150010f00d9455232f344f61f5e81267c58c337fa44ee39e7d5f413 |
|
MD5 | 434baae52e3e5aa10020fc6de7f36a03 |
|
BLAKE2b-256 | 95d91044da937783370d776867683d5a5b5f863e0df1f2797a8d6468941e7b82 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.2 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5590b73be793c7376b9938660620d5017a072c6a75d58037760cff8b8c3947df |
|
MD5 | 9e2552b63bc6075c5825b02804796c91 |
|
BLAKE2b-256 | d8d40df0add29722dc8da2cd421ac6f278910c6426f3dfba840d8a6381ccff82 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33515bed4341857cf462c412f944513d67c9585171463f2c3703c2c88f221c13 |
|
MD5 | 4cc02be4d4aafbe3f367b12368fb11e0 |
|
BLAKE2b-256 | 39f71e9f5be077db62be8fa72777ca6ac8698da3fc86d36261447f9617419319 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.6 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c558d601b33bb42de0979091a716f08f2657e21c02511c8f406432cf066c102 |
|
MD5 | f56b8ff8d2e562e9238c0ac8983538e0 |
|
BLAKE2b-256 | b7f098f44f5754cc0e031f3cdb2cc545f472a984ec36d1c1d3aadc08bf3df081 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9949ca4e0b3dc022a25c2c84914cbe8fc672970b957a3752626605098d8301e |
|
MD5 | b91d64f770e35304fbc13a73efc0f5eb |
|
BLAKE2b-256 | e866fd57c4dc7b14c3a4df871c5d61d1a4b9c0278dc99ec0d96f9f222281ef6c |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 292.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f81b271bb0fb95034a462dfa39c918bec42c5c07d4c5b5832cc5bf5e0d89901 |
|
MD5 | 2e2278aca749e16937d824d68c294fef |
|
BLAKE2b-256 | 61f53a987615c17b3b717ceb2b0883a722e2ae8352ba321e1b3f74e741fc8895 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a62aee206c8bef04de3f60158f0d6e2144a53214f89175070bbee09bb32a988 |
|
MD5 | 12ef457cc5b1edc140337c9136cd7f69 |
|
BLAKE2b-256 | 1b3a4cf1e663322b1f24f3ed7cb04daacfa1ee348e22e57896cfb4ea0b2afd64 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 013cb87dc0fed3c822213a3ec8298deef4d4a9687dd0d805a7e261a73544e3d5 |
|
MD5 | 5fe707aaa470ba7f6ca04bb5c7dd38d3 |
|
BLAKE2b-256 | 0e548a420e500e5f9089da1e0ada4850c14de187b30a62cf1cba227b6ac4d6f6 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38b2a77e7f7d721629780d6ced829bd285e99fb816720e293c0a891da69c97e1 |
|
MD5 | 370df1503edabf0047ec1cd82db4027c |
|
BLAKE2b-256 | 1f26dc87262d3c19115b66d008d66123b4499be668e90c84ecb0bdc745a0b6d3 |
File details
Details for the file is_bimodal-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5df0233aebd887e6eea2d681d42458b8c44547897699b38532824c6f6c11167c |
|
MD5 | ff613136e213004cb43d360cbe950d65 |
|
BLAKE2b-256 | 00734886d460aa2b68fb5588851678e92db8ea8ec824626c84f5971dd2894558 |