No project description provided
Project description
Check bimodality of a distribution using van_der_eijk
function.
Return the A score ref https://www.researchgate.net/publication/225958476_Measuring_Agreement_in_Ordered_Rating_Scales
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.
Usage
This crate provides two functions
van_der_eijk
return A score. 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.
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);
TODO
- python bindings
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.0.tar.gz
.
File metadata
- Download URL: is_bimodal-0.2.0.tar.gz
- Upload date:
- Size: 8.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ba9b1471bbc2a0a848215b0f67b052a99271e7a43abfb55d0b9efa60d1e3f0c |
|
MD5 | f581dc60d7c0de9dc901d8de302c73fb |
|
BLAKE2b-256 | f8802fad39e7499ea0768456388313db9a5466a39ae1f7165363dd0ec9fcd75e |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.8 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 | b437104808c33f86965b2189c70f6ec07f8bded5c0885e117d88b813214f44a7 |
|
MD5 | 6dce70701b065cc7b32521ae7607c545 |
|
BLAKE2b-256 | 9f83a9a7ca2e345ad7a232666908bbd1c3c1a02a05cf7ac541d54ec77bbb873e |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 435.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 | f2a42290fdabee1fa7a19fdb9de96e36b16bbdee14a129c81372b713b8a2cd2b |
|
MD5 | 79a21c30a3ef526d26171ca796325990 |
|
BLAKE2b-256 | 0c1e4a3423bf2e4a94e09e19c6d7a9b223306ea3cf0e681692ba6b27fdc0d62a |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.6 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 | 755546a567357a689ed3dad3fd980fa72706cde6083eef767f8ba64d1028b9f4 |
|
MD5 | 0e9940c972527185fa468a445b7e1843 |
|
BLAKE2b-256 | c666ffb4d28de8e63f0a43d777cd11af995e84a0df31ffc49a3402c9ab82752c |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.1 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 | a0ec56b3fc2766d1770416af2f960b49839fb483d73e495e5a7dc32902c3084b |
|
MD5 | f851b16cc22864d4a87ac641d083c453 |
|
BLAKE2b-256 | 2c5ca1f5e11e331be5bcac7bb35c3167edaa1e16016758e41cfa4060081e3068 |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 247.2 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 | 53a81b7ea8a1e3cbd880a355a2c60dea9bf0c61126640c68297ad734e5d74e5d |
|
MD5 | 5b66d44876697d5060075147942b3573 |
|
BLAKE2b-256 | b7a273a0ea16790d3bcf9837f7234f9d50cf71324c0bc727a9b16d9cf46c1867 |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 292.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 | 35eb6e371b8351e5bee1248e6403ca45853cb8b5e93d0237fd1b4d260ae0515d |
|
MD5 | 78cee8d28643892dc79454a75a0fb936 |
|
BLAKE2b-256 | 94406a9465e30233d5b325c21d693ab948e65368fe28d9ba2e513f0f17c8f6ac |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.6 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 | 3c1b6a74ee3b11b696d40d5cf4e66a8b4d69894fcca6200d67c289f3748672ba |
|
MD5 | 07ea058392facd1f20eef6da17631bb0 |
|
BLAKE2b-256 | 05d9111dc0958fb15dcc0bce218bc9e2aa34ec89ff2113cadde5bdf0a1d32259 |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 253.4 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 | 6f994bd72e5c471b8afad6819b62db0a9e7b8c1ae0241e7716220474b5a81087 |
|
MD5 | b81476ac78d7f05ac2fe8740517b4e3f |
|
BLAKE2b-256 | c09143fdd95f92244b78909ed106bae3321e1d16a0481d4730cb71ca75d12236 |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.4 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 | 7b147233d255b92a3ae5a273f539f749c5ac1420638ecf25c182210f704f4f80 |
|
MD5 | bbcd596793b16c5b031444739fb66ace |
|
BLAKE2b-256 | 9dc290dc64bc8e0dc38ead127af4da79a7724ebfb1dacd96b21095a2515fed38 |
File details
Details for the file is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 260.1 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 | e469efdc09ce84d100dfac57271f020b7c64117e50d7de497697c025044ce539 |
|
MD5 | 06dc54b703dae208f13173c1045873ba |
|
BLAKE2b-256 | 5dd8fca015f5022e76040b7d29a33dcbbc3fe006ed5344285ef49d20110755e2 |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.7 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 | 544722df1fc1cafd62f0b4e57f5c0fcf2d68d704dc90fbd1811a72dc165fc19b |
|
MD5 | 42645f755f570bf021c6a7f50aec4afc |
|
BLAKE2b-256 | 1433a5f8ec77a479d851a922472cfcd791a4e2a5d57747ffb5fa27f530f616ff |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_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 | 7c89dfec405f25859936d7ae5bd65a6d5bcfdc21d14e2ee0fb5bcfb2f8410a95 |
|
MD5 | 204ae2f78a7698bbfe3a72511933ec8d |
|
BLAKE2b-256 | fe90f088f38344fc5ffe8388b37a48b7bbfae8039507caa10aff6e4e2dfaa9d7 |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.9 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 | 897d2b2acc456f9054bd99ce9004d29ee38d14e4d14abad9060bbd7f639966ef |
|
MD5 | 4e882b216262d4535fcbaf52c822419c |
|
BLAKE2b-256 | 04880af426768cb0293cabaf4517fedd4a2a6d9c7b7a5e35e57475bbf41250d5 |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.2 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 | 167218225a6f81ce77782fa163c890b405a9908129c5601c27b0f107e3ae652d |
|
MD5 | 2217b4eb364dda813ff63598ac655d49 |
|
BLAKE2b-256 | c586ffd4e6ee51eae03eb618b1add18ed4b310d168cd983dc4a8230e875f70ef |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_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 | 4a3d694091bb193b2349bb84cc84392856775bb80dc57a17516e9a143c8fb44f |
|
MD5 | 939f40cff6f509a3b737e7486bb49957 |
|
BLAKE2b-256 | 8ab22fe07a75bcc34e5128c5816134ed47719daf2d01fb4b791a63627c18e19b |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.5 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 | e10d7fcec0c8abbeb76526c674920cb745307afd46a0a42fcf7cfc15214d7e89 |
|
MD5 | b11afea65108f0301e3c04b501faf58f |
|
BLAKE2b-256 | 03325f1c52d5557a463c22220024eed053ccda14294cb13550d7e586a95f71bf |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 253.5 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 | 853f803516b7830d018871aaf41e285f370bc37a4c0f84a6456edf4c7b8b1f94 |
|
MD5 | cf877709de4a5d777b9fc2963d7ce937 |
|
BLAKE2b-256 | 0d6a147956440c1101593b555d366ee0efca99e0a0ab122d7e06893fb6720d57 |
File details
Details for the file is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.5 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 | 2e0b82288ce988abb6738c6d952b7c4b23714f14ca0e472a7bed20d9484b8376 |
|
MD5 | 13449b9628e9b24deada4b1908f5c9c6 |
|
BLAKE2b-256 | ea5e9e6feb274b9e8458943a51c871ee65355a2624bab2b43cbe4d2eebce1262 |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 415.0 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 | 5b192d66874ed539760b782493e00216ea791f95a648b21726d8c9be271269a4 |
|
MD5 | 487a3506426c64424c18b8addc7f8c25 |
|
BLAKE2b-256 | e1d0152a7bae6d6cd016843defe759a41a0d6c483572f11c9761aeb1486c9945 |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_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 | cecf84c4fb40aabf90536157c65f8937e3a72baff1bfe44734083541fa910d34 |
|
MD5 | 99890335df4024123ab02a080dc749d8 |
|
BLAKE2b-256 | 34f6b5263e0a5c88f40f6be6f7f28aa274c4bbefa4395632586fcd05b9d491b9 |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 514.9 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 | 9d758698471f8c3cf1e14c40800b0de3fe404346574e26781ef2262a2e58a431 |
|
MD5 | b20c4a72c91a43ed6977c9bee68e2709 |
|
BLAKE2b-256 | 524068281540cbd613042f2159adc68598ba9091c8a179d96988f20635181731 |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 433.2 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 | 24ef8b04846f6086dc416d250de9f33e1df00bc0a72d47d84707c23633fd7d61 |
|
MD5 | 064be7f3d44eec3dbb5bb3a7f93155ca |
|
BLAKE2b-256 | 1d11f2b9b1e96fd579cc4cbd5a089230ef81262116067235561b35901a8cb872 |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 292.6 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 | c08f28b4ee375c7d1e25f454bdffaa4a3170c7eab67b74e49eeaab8db9a84f81 |
|
MD5 | 0a424936f457323ee9b83ca75e68c1c1 |
|
BLAKE2b-256 | 3a0a249b87e8ed35d700cf98548eb17653480632a6f93c8dde60e22dd577acff |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 287.5 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 | 9b6b493d1575e7f1d5d6e6394837ead09e4dc5ff00650120c93979a16cf8034a |
|
MD5 | cf42baef845af3d3abfdfdc7f753b7e3 |
|
BLAKE2b-256 | 81c4dd79f3c82c9a8f6e5e1957d60d070ab366d78655ff7983bb5f75749e071c |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 253.4 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 | 028269410a17274a0fcee6b373e302f4f681b56e3d4dc02a584860061340a65e |
|
MD5 | 844bffcfb515dcc30cdfb1fc381e4637 |
|
BLAKE2b-256 | f077b939f3093e754474e8c2f4c7c586252ead5d094a2fbac7b820d885a61eff |
File details
Details for the file is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 247.5 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 | ce8c7f6c6b13419ba7e5b301f33151b58f242daafa59a5f17f25e2b8631f142e |
|
MD5 | 423e9fe8370e23862fea974c83447530 |
|
BLAKE2b-256 | fc609830b6ef56ff890ab1544a1e657b2b4859ee54a23cc01a92a038a4f0c246 |
File details
Details for the file is_bimodal-0.2.0-cp312-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-none-win_amd64.whl
- Upload date:
- Size: 116.1 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 | 099f104396762d22c1baa1cf150de6d96687af4a46a928784207f889f12f47e1 |
|
MD5 | e51d686ed2ffb45b71dc26379a39f047 |
|
BLAKE2b-256 | b8ff15748295ed38fe7c77e0e081e9efd1119a8a8e1c8f51e848ede355b08735 |
File details
Details for the file is_bimodal-0.2.0-cp312-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-none-win32.whl
- Upload date:
- Size: 110.2 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb9494e8994d3a8e709a7137007c455c36473ffca2d089160a7c36d60081314e |
|
MD5 | b18539472b96133e29300a0559715a9c |
|
BLAKE2b-256 | 61397e089c15c20be01648ab198bf071bfaf957b7d68abe97f88ac253190e79b |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 413.0 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 | dde293f625a9b3b3b2b5a9c80945d88abc37833ff0da8bea6feeca7c8eaf0c2d |
|
MD5 | 0f712c7af8ec3fc11215e2bc040a18e9 |
|
BLAKE2b-256 | b4886fcbb4226e6626c57b62eb6682eb0f70191ade29fcfb1bd6025f292977e8 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 433.8 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 | 26b4ca14ac7a595b0cbf373472c11e65df9808175a8485daa4186c5443d763f5 |
|
MD5 | 94704b33ed6b518a689fe0328274e7c7 |
|
BLAKE2b-256 | bfa6752784a4d42309dac9ee3428127e8a9a3bbbfb62c165de7ced115827a9c3 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.4 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 | 6abd783f17fbf97cdb3ebc5b5b05b7eb17f2dcc615f77946acf1b709ff195282 |
|
MD5 | 5f63d3e276d7b1da6395f1a991707e46 |
|
BLAKE2b-256 | 95480d85e312a5ae51b08fbb77de00d8b8a596d2eff69412af1d150869f002cb |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 431.4 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 | 8a3b2a0c1c2d04bc4ed1a0b2c132f92cdef57c53abac24ac400a38f4ea51264a |
|
MD5 | 4ad4f46074c3badc2fedfe95b01bb3b9 |
|
BLAKE2b-256 | 7fd9fb0fccb3b96334c2317d7c15ebc01dc5a87ada9f3128d1b68562922505be |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 245.7 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 | 8d1b8ac33a5e5b562c1d932b7c6139864724a7a4638d296c63a4d240fd2e8811 |
|
MD5 | 5e912ef15e2cd209c0ac7947fce7f189 |
|
BLAKE2b-256 | 3372d93a1692bcd9012ee9512e8085a8d46c07c2ddb1a2b72d49159e2e12a3a5 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 289.4 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 | 34939fc73bab0b9f50bd785c15e3d0d11b6681e9aea28ca8a7d90795d8747652 |
|
MD5 | b1128c9988e872c8bcd7bf6cc091895b |
|
BLAKE2b-256 | e70f09d53e5715fb2799a86c6c31c9ed8369701ed1c09ca09a9d45306c6b2265 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 285.7 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 | 4fb810edad6a68714882b627a6018a984272740b46540a8e60e790933bf246aa |
|
MD5 | 4222b88274de6992d7941daa23a016ba |
|
BLAKE2b-256 | 3d523b163e57dfe9a08b5540997c56ad5f9b7b8725c01082d6ee4573530609fc |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 251.8 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 | 0c6b493bb9655705b64c90e07aed4749208cf67387821a1b7cfbec91d476a6e8 |
|
MD5 | cf59069344bfce1d18fb9de49ada54d1 |
|
BLAKE2b-256 | c45fb8886c36439865285d64cb684966e9afbb31aa73ddc47c79fa746d46dc71 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 245.6 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 | 6e9a2d57f8f2b44439fd2166f9f33536f4f6ca6386eadad189f2b8d4fbd0368c |
|
MD5 | f6b9cab7a2312562d877bea816bf66e9 |
|
BLAKE2b-256 | 054055ff2c51659324fccc3b80aa3bd7eaec8f843d8d5d00404f17996cc1048a |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 258.2 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 | 7469ea1d6aaed39e50e572ae1d5026529ced6517cb6c94e868c0f01f7d2ad052 |
|
MD5 | 6f6262a2a29b16a26b04667f5e410b9d |
|
BLAKE2b-256 | d49d5920cf92fafdb534f34906242442af1b0d74a88f52894cd2aecef2551c4d |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 215.7 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 | e6a18f84f3fb8cc0f6764082bce75a665a0ca4c2cb9d90d9f75bb46b462a5822 |
|
MD5 | 19167df2fc2ff83d0d1726d2fa5bea56 |
|
BLAKE2b-256 | 9c68b08c6e35db08ce17f46d57097ac89efc4a9febded487e6b4c33362614b19 |
File details
Details for the file is_bimodal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 218.4 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 | 6d95dbcbab7f26d646b96387adc0d41ce4c817df5fd6be1207fe99068ddb44f6 |
|
MD5 | 492672e0854f96089c702988eb788082 |
|
BLAKE2b-256 | 0592cb849912a0fe5de6138d316b24ece1ac3067935a17d275c0cac294e21957 |
File details
Details for the file is_bimodal-0.2.0-cp311-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-none-win_amd64.whl
- Upload date:
- Size: 116.3 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 | 321e27a541bba4daf52b98970ffb55cea13924cb27d91fb6f2d185c6c1ee44ae |
|
MD5 | 042e48ff705a1b3e6082c97f4300a2cf |
|
BLAKE2b-256 | 914d9f9c29161179bb88b347782a77344ac379aab95b87c010e59e1f9bccaa79 |
File details
Details for the file is_bimodal-0.2.0-cp311-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-none-win32.whl
- Upload date:
- Size: 110.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab88c3b3f46d0c2a30590ee12faaa758f0c88995ef2c4fde21173e52e766a73c |
|
MD5 | def85781520c6f219ac22feb6ee6057c |
|
BLAKE2b-256 | 714c5f5c80e7b18b23d41a739d44a53cd60b6a4622e10834926bfce1dbf3e317 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 413.8 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 | bc1d06f803ad6af2ea71db49560d4955d042d9204d66b64121f26d6079566353 |
|
MD5 | c155a12300f62e1e918f63e499b3b638 |
|
BLAKE2b-256 | 94d01b9df8952de434f8e9551fafbaaa664f77fcd3280cf6c8f5a73a73c7c893 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.1 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 | adaf9455a1bba792180b1af627b3f75b5b3cacedceeb1de9ce78a67e6a465d93 |
|
MD5 | 142acdbf46da10d53fc864ca7203de95 |
|
BLAKE2b-256 | b1036ffb211c6de46709b1a734bda0adb4cf91ee35c104ca5e98e1e2f2a91d72 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.5 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 | 0df5bb4cd2f5abf9bb1b0135198286662a704e7a153c5b302998c37b52b69e5e |
|
MD5 | c824db8b108d68cd6858208b010a982c |
|
BLAKE2b-256 | 19557226b1219fd13dcb778d3b7b55ee08381bcbc94ff1965cb5e427589855ac |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.4 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 | 1e087fa7eace9d99e1997aef87f9b7f954530f1e86e62850a4502527c8497d96 |
|
MD5 | 45978cf94dd86fe075e7de60830d5bd7 |
|
BLAKE2b-256 | 82843e221bdaeeaa16b13d0eaf9653c32ea60252456a9612a3264a56dca45016 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.1 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 | 1500dede8c346ea7f435a3d50bf949fef139bdd3dce4947b9852186bc745b65b |
|
MD5 | 81f2bc78b848647d52fbee73c6d93211 |
|
BLAKE2b-256 | 6a341054df40245c0bf4d14da280c6d1b32e93dee110d11b1705cb7ead8f9aaf |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 290.7 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 | 1f6ebf3109f31c01eead738b28aecb694c5b318c08cf274648fdce6d6bfef1f2 |
|
MD5 | 12cbe07a88ebc030dd056718eef2f7ca |
|
BLAKE2b-256 | b23a24745e2dfb400ce4cfe412537e82f8ec57f62e215fac18fc923eb563d575 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.7 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 | d6429bbc9cee02dd30e8cf42b9945236bb38e2acd2da874f2865e5b87f5b158f |
|
MD5 | 14a358fae3e343c04165c1f5e9a40eb0 |
|
BLAKE2b-256 | 8dbd9659a4bd85f5b38b58c0e9e063b2c70be900401698734c23f565eba7e998 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.1 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 | f5c6ac923a80abf75dfd91741d75a175ef4531ebe59861e433153ae5de654ace |
|
MD5 | faf739802fcadebf441ac71e344c0571 |
|
BLAKE2b-256 | a644309ce29b3d4658e4ce776a0f2b5b3ad4964c0f9c4f569bbfec7735242c2e |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.2 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 | 6702f2e6f9dbb48cec07f60427cdb500864156bfe5371c6c14d9d660ec678333 |
|
MD5 | 6b8ac3f6139a29209c30bcfc668e768e |
|
BLAKE2b-256 | 18d3148b5d11aa6a0611a7651ac4a24d2b0104919c593de268e82076ed717db7 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.0 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 | 26c9ef040157a96391d934e3173cad2aa9e767175cf22ea11ac745411fa9660c |
|
MD5 | b3cb806d270bf80508c5ff9e84edf6e1 |
|
BLAKE2b-256 | 172fc3c50f2414074138817cb92b1d4742a953e411777ec241644f382eca74b7 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 216.2 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 | fcc58c9eb0f16bb9990a8c5e64f743d3773ce1ee0cabc5f6e487f9aa40a1aa78 |
|
MD5 | 580331f6293ddb4a4c15b6a7f21c5d2a |
|
BLAKE2b-256 | db1796815c65e7a2a70cd3fd34077e6669dcb11578b4ea7b7b65f6611124a657 |
File details
Details for the file is_bimodal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 219.1 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 | da5a83b81329386c94e56861a193e45e8886935effa869c2c8abcdc71103b3c0 |
|
MD5 | ebf48f41833b4a071a2814a6c163d9e7 |
|
BLAKE2b-256 | 716d426bd2eb78431808918d96e9a49b8d29e9b027dc243e72d0f1d66aa374f4 |
File details
Details for the file is_bimodal-0.2.0-cp310-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-none-win_amd64.whl
- Upload date:
- Size: 116.4 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 | 06359e4064b171819e2952220f67fe294c5b55a7a01031fded19350a4404efd7 |
|
MD5 | d8edbf185d1eb4a483c487886efd76a4 |
|
BLAKE2b-256 | 0d17114ac6031040e30c89a743e694aa5eadf207580a17f06b51da9ff9c74114 |
File details
Details for the file is_bimodal-0.2.0-cp310-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-none-win32.whl
- Upload date:
- Size: 110.7 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40a2ea5b3fa07141e7d17e1e462154567b84023669d0745e0f75157610499d4e |
|
MD5 | d5b8926678398539f4e4a5a8dfd7aa8b |
|
BLAKE2b-256 | e175005baccc9fb819d7bebf8847fc03602eac761c4184c839ec51a7a945e997 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.1 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 | 21d2d20a33ec8c57c2c866a8ca3a2c2006e40d85d93148933739ea2fd420fa4c |
|
MD5 | a17deb5d621de8553716b7380182c890 |
|
BLAKE2b-256 | 3a52de68e375cc1c2473da55fbd29d85f92df2bbcfa2d03ac17cb9f13594bb2f |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.2 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 | 7d987bf5516f19f732ac9e07df4e89fabed8d0c204ca42272d79d6ea38d4d755 |
|
MD5 | 214792f8ea16f41ef27b5c2e320a2e1c |
|
BLAKE2b-256 | 9a6ab4810ec956d081350f6b3524dd00d0803ede2e177d36f1f3691e0104496d |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.7 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 | 2d3dee7ea391b77db59500e5b914bd75abf44e58b7f59381366e4750a6944719 |
|
MD5 | 89ac7901afd8481be394cc9c6305f445 |
|
BLAKE2b-256 | cc58faaa6936a786740d9b8a1a611f8d0e82701a7af6c972dba2a20759501b19 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.7 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 | f1320a380e81bcc41146cad603bf96dfb8ea6da6800dbbac6b25b9825099446a |
|
MD5 | abb34e03f083d3df5b31bb7c99a7eabc |
|
BLAKE2b-256 | bf0ad02a1fcfc616dbe8e9659c3f17fe50582f3565147b69253fc9c3d419019f |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.3 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 | 6ac8863258cb29c5c1a84b2a1a0d62bc88cbe96e57c2c1965bd5c2e85a6f8e5f |
|
MD5 | caa1c4ee5654d042e6fa86b9046a016c |
|
BLAKE2b-256 | f46a180de18118593293e97000bdd6b830b5dc401946088faf8804e09da7b533 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.4 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 | 8574d98c81a14633c24546b33cb08b3f6a41c969b24ba7ae5cdeb556730b32a2 |
|
MD5 | 7a5f4a8f21b5305108c78a1e64e9a256 |
|
BLAKE2b-256 | 4bcb9deda16bd9784547cb90162256229ad2eecba8b3ccd1c4984b8560943938 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.8 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 | 4e45b0c33136faebf6c42ec800c4da813ab2d2f91f48b3e96ed92be4dc341ee0 |
|
MD5 | b047deb7de9b967f739c47234084e3f4 |
|
BLAKE2b-256 | 0489bdf63aa56cae429e8dbaefa175e89a2ee5a2fe356f28eb7db4165d3b8345 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.3 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 | 9c2b15e74a36ab8c57f50e374e7b0b2136fb03da09e91403026abd7c264c087a |
|
MD5 | 0f2ddcad2f6b1bb49b587a0fabb8afb3 |
|
BLAKE2b-256 | 9f65d64fcd963b7b26b525c789c043a6e2f5fd675bdc20beb1e406160410a6bf |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.3 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 | 4bf9a45d1c7f40e30604d9ee9e30a6a637bb07eef9a19aeff0bd45f21a5196f0 |
|
MD5 | 0aea6d9c16ff1e99e164bef589a18613 |
|
BLAKE2b-256 | 4d93f37d8e1703054e1d2ab48e4fe800ce8e4979e9a6f81cb61e9f85aff1006a |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.2 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 | 2f69dd323cddd4a0ea19312f9dd0897ff7e289bff6d73164fd14a3ca610ce7d7 |
|
MD5 | 4e58a1c13c739a3ecd68b282dbf43467 |
|
BLAKE2b-256 | 9d02b43543d4e0d14e79a546df8127220c89ce3dfd8ddafd88e4e5a06f549305 |
File details
Details for the file is_bimodal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 216.5 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 | 6917a316b7167c1466d403ed067061aad2774d7c6d0bff75f60aa28a932e56f2 |
|
MD5 | c598ed2e580821fc3da2d618c51c3037 |
|
BLAKE2b-256 | d80eb566eef21841896b6c88bf53e5a8aeaeedad479ca3f631c9101442d76085 |
File details
Details for the file is_bimodal-0.2.0-cp39-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-none-win_amd64.whl
- Upload date:
- Size: 116.5 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 | c563bfe3c1b6639c13c6ca9a3114c11c249e691d999f48747927d0c6c524f893 |
|
MD5 | 40de3824b778be41d5692ed19f3a0575 |
|
BLAKE2b-256 | 928d856d85289024c9e6e0767d3f5713c803c5da455ca5cb96bcb69c08f7aff2 |
File details
Details for the file is_bimodal-0.2.0-cp39-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-none-win32.whl
- Upload date:
- Size: 110.7 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df839ec3542558e9c4627a70863e0c3bd5c87a86ae232a7faee8b5f9976ace1a |
|
MD5 | 0ee14c4b8457c868242fcfb7a1afe4b4 |
|
BLAKE2b-256 | 73741a1f18dcd7c2164d072f35612280c6abe7d8afd571ab08a591785188e855 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.0 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 | 2a8e250dd223ba51409a6a3cbffc52dbc54b1dad24b7608dd731f0e4e73e0f28 |
|
MD5 | e2aa16f486210a6f8799bbd8009a945c |
|
BLAKE2b-256 | 1f9e76cb00555b6fd474413fda465de876c28e974704c4fab2425767e260cba6 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 434.2 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 | 0fbd7871abdc48d31fda686e92e1a739cada6c554e79ff1eb46b7b0a81603221 |
|
MD5 | 3c8fb693b952b3ed36384d00863a8b7f |
|
BLAKE2b-256 | 4a7035be2c0590f9f173dc7b4b98dcddc086b8229d63083167d8696bdb80d6f3 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.9 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 | 9a000f689bb77a7ca4a58041c259ccd68cb0de0c81a737711a7df8110676d5ee |
|
MD5 | d2d6383e501fb6eb97d1cd49bc075219 |
|
BLAKE2b-256 | 814ee56e412b9fea19ead972de4331364b2b7f76a8c2c7e18922437751139be7 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.6 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 | d0cd8ca018bb726055e22b4af739787610bd8fc04ff9ec3323e586658e94b04f |
|
MD5 | e1b05e4b3a6ff186e19db161b2333375 |
|
BLAKE2b-256 | a03b585ee5d1d4af1652efdbe22972c186363e7b9509a3d7a397788d75968d65 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.7 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 | 4e7d3cedbdeff10a68c4290238ba24550068cf1febe46f1fcac2f9cd0b5aa0df |
|
MD5 | 7e940e002ad43dfa0b2063754ca87de2 |
|
BLAKE2b-256 | a4d4fa58e4c2420a1394f30cf3ad77bbf12e6661525451f905f3499e1408ecbd |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.4 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 | 064dcfd354c3d1625b8e24a9bf81c4db4ecfebfd0bad94222a8dd8423a2f3a56 |
|
MD5 | c2aedf518eadb32eb675926d2ff8d923 |
|
BLAKE2b-256 | c56864f0938066dd35b6ba6f3419978d053b5279236645f9bf64e8b8788bf351 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.7 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 | 330d372a18c4075fd7c3a500ce94cdc138a8dcb2a400a4757055c5bfbe689841 |
|
MD5 | 0cbbfbec8e92e964ffedafea97cd905a |
|
BLAKE2b-256 | 7dc86168fd830672b1304994204d2130326fc278907129bdfb8f35df90ff2d16 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.4 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 | f4a6855a1414634149644bbe2878b43baa573a2b73afc0818d2d8f822a0d4cdb |
|
MD5 | bc4eff30d2660d02fa7989a38fe5a22f |
|
BLAKE2b-256 | 9dd645a0d122ecd260d7a29ea88d61a19fa95e65ef56f445b9b20f04990c589c |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.4 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 | 15568a3f8c15fc91b2cfa02af67599ecdfd0f3d379d64e6af40e17425abeeede |
|
MD5 | 26ae45ad4a1f97b83846ca5e31fc7fed |
|
BLAKE2b-256 | f2208a7e624b2ee4bda728526d8580a7d1b868b0e6493e0f99ad86e6a18cd8c0 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.4 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 | 3a7cd5b88db557b866a0adaa612dbdd53f456e0e5de673233a76a01d8ca9cc7c |
|
MD5 | 8189986efaff377fbcafb89c802269d3 |
|
BLAKE2b-256 | 8d3b60706393d397b01d266e12ded26ea5042bbad442c909e8023ae10f35fb25 |
File details
Details for the file is_bimodal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 216.6 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 | 109563a7c8485b8d0b6991d6b3da4eaf7c96e9fcbca58ae07172a5f782ccd6f5 |
|
MD5 | 60262d121ea75aa196e9ca2da0f91866 |
|
BLAKE2b-256 | 664c1480f248f497bc20ea14afd9017c68e55bce8de5fbb0c353441742a5fc27 |
File details
Details for the file is_bimodal-0.2.0-cp38-none-win_amd64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-none-win_amd64.whl
- Upload date:
- Size: 116.0 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 | 7671d96549d38cfb912d0a173154cc33cb0158d99c99bf2df26d7e8b3fc123d3 |
|
MD5 | 777ee69d76e291e5a3dd408f9a10fc14 |
|
BLAKE2b-256 | 63392ed692bb8cb66a8a6593000cc1d3317a11a0a8b1ae7c4003b7d5f033d8a7 |
File details
Details for the file is_bimodal-0.2.0-cp38-none-win32.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-none-win32.whl
- Upload date:
- Size: 110.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c72010c498084b65210f1b05bc0a3e819c3003c0bf214860c9299847d060952b |
|
MD5 | 2aa1acf8605db9e22465e6e6a4a49479 |
|
BLAKE2b-256 | db9340b38333b7fa4827344e289b31d0e7081f4618ddcbbdb3ed46846b8bb013 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 414.0 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 | 7c903849f28d7e943ea126762ac4e1a3e84e7e8ca70cf1a35ca46023337683ee |
|
MD5 | 4f5a46cc21a573252b46027e16391437 |
|
BLAKE2b-256 | 434e83cea4393b77686c0c441c14c794bcb54a1c52c44bd55680b6d3fb497b89 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 433.7 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 | 239fd43a0080db326a85c201cad9151228aba2737c2d47c595d0390c64600c2f |
|
MD5 | b39c20f9f6ea6c4eff0ae1bcb8031411 |
|
BLAKE2b-256 | b0217a72338f881d70df64abc04d48d006cac85f9725c8d7e6e7137f27445c00 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 513.9 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 | 7053abcfcbe9fe20fe169d9db60cc89973b4a621635e9c1884a309935b451c09 |
|
MD5 | 6da3eaed0acbbb513659eb1f405d4a90 |
|
BLAKE2b-256 | 80f2355d88138758754215d8409b31ad84fcc921c755ccd4ff17eef77aec30b1 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 432.1 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 | 4d562bc5fa706753910c092e4a3b67a89e2d3cbc62fc253e0e7e67887a08d2f2 |
|
MD5 | fdbacd4bab77e9bf0bdb3b1542306472 |
|
BLAKE2b-256 | 41122eac9855b4496d63ab2fd7f8bda962f6b51ebff68ef4b541bdca9588e333 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 246.1 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 | 3073bcef2c40f65e44d6e37342d24287dd0b224d698e1ee40b0a387889a236f2 |
|
MD5 | 9cfaf90fd6f8cc92807cc0e21e32b91c |
|
BLAKE2b-256 | b12f695d62a4bf503c165888e133349ca8ec8d8318e369d7da7c6db446269055 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 291.6 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 | 4fa76b9cf56cbc0eab72c45887b54c40ea7e85578e94af4302feb9c9aa7f33a7 |
|
MD5 | ec4084ed5c8af1b5afc7aaadb22abb86 |
|
BLAKE2b-256 | 8513aa43dd1b2a7392250265e9e6a7e93d0326b84f6d46b654b3071f89ae0e87 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 286.4 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 | 071f734bd696734997e6f183adf0aea4dbcc43d0bca3515c64e095bedfec6860 |
|
MD5 | 283e3e431d76e64e10c71e77cfc50d05 |
|
BLAKE2b-256 | d009b212ef28f7a642e8c35df668c5b76579ef434daffaa5e9e4da09a2db15d9 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 252.1 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 | d5e045c312b84dcba73326e01ec1ea72e878cd361de9ae83e18df8875cf2f04e |
|
MD5 | b1602e62f635257e287f7b78ab15cd19 |
|
BLAKE2b-256 | 32ccac64cce17d0be40f227c5b03969463e440c2f4e595a6b809866defedeae3 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 246.3 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 | 95adcf68f5fa733c187be638736e0bf27ca8eabf650fa4b659b446ebe86c86d1 |
|
MD5 | 0760c6d4cb2fd851a23c4f2632b08af3 |
|
BLAKE2b-256 | bab4ee0e467c2bddad68ae3153b4e426fbce7fa5ea7a488a550fd64854ff51a4 |
File details
Details for the file is_bimodal-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: is_bimodal-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 259.2 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 | 6eca03b4653a3d2045f721908de51e7e8eb90d606020b4daefd9ad5fdbaffade |
|
MD5 | 1aae9eed1dea13a3531a4c09785d67db |
|
BLAKE2b-256 | 36ca1de57fd89e3dd708b5f3d7223d3cac0f2e7ef83a5472669ce0726455d155 |