gumpy re-implemented in Rust
Project description
grumpy - Re-implementation of gumpy in Rust for speed
Does not implement the same interface, but rather the same premise.
Up to 100x faster than gumpy
Install
pip install bio-grumpy
Usage
import grumpy
# Parse a genbank file
ref = grumpy.Genome("some/path/to/a/genbank/file.gbk")
# Parse a VCF file, respecting filter fails with a MIN_DP of 3 reads to make a call
vcf = grumpy.VCFFile("some/path/to/a/vcf/file.vcf", False, 3)
# Apply the VCF's mutations to the genome
sample = grumpy.mutate(ref, vcf)
# Get the genome level differences
genome_diff = grumpy.GenomeDifference(ref, sample)
for variant in genome_diff.variants:
print(variant.variant)
# And minor alleles
for variant in genome_diff.minor_variants:
print(variant.variant)
# Get gene level differences for all genes with mutations
for gene_name in sample.genes_with_mutations:
print(gene_name)
gene_diff = grumpy.GeneDifference(
ref.get_gene(gene_name),
sample.get_gene(gene_name),
grumpy.MinorType.COV,
)
for mutation in gene_diff.mutations:
print(mutation.mutation)
# And minor alleles
for mutation in gene_diff.minor_mutations:
print(mutation.mutation)
Threads
By default, VCF parsing will run with the same number of threads as CPU cores. This can give significant speed improvements for complex VCF files
To force single threading (or other number of threads), run grumpy.thread_setup(<thread count>)
. Note that should be run before any other function in this library, and should not be called more than once! Not following this will cause errors!
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 bio_grumpy-0.2.2.tar.gz
.
File metadata
- Download URL: bio_grumpy-0.2.2.tar.gz
- Upload date:
- Size: 3.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b7c48fffc3986ebcdee612c9e1a3863107c5485996eeec54bb90d50108c2e21f |
|
MD5 | 8428e05286f63164302a6a7e48887d6e |
|
BLAKE2b-256 | 6ca0aa985311ca5317ad29fa48433c647eb30902b23a163b6bc3cd071ad018f3 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 884.9 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 | 07cf59f8a3151b4cb12a34731eb9a9fbd6c6be7d6b7f5d73ac6008774d0dbaf5 |
|
MD5 | def070201b24c8c607a98873c8dcd89f |
|
BLAKE2b-256 | 93b9116315939d55b4bb86e40c59791b414b9a315f3f6cb35eeef544b90f489f |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 890.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 | 709f7174b5d5ad879a7146b2d644737e4fdfb966bcc862d65505c2c5a65574d1 |
|
MD5 | 58428260302b409147449e85ed4def81 |
|
BLAKE2b-256 | b2286c1e0880563221b4852873a769dc5a63df194975a232d2df29b463603035 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 990.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 | 0c1716a9661d10d91f94e113becfc6198d7084f7e43d9cc478c6f0444b1ba1a8 |
|
MD5 | 3ae16ad7527bb5666758a42d6f454b61 |
|
BLAKE2b-256 | 46a1df158deeb6f8cf56f3a16b08bec091e261f4b4233a8713f4a99827c92d23 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 890.5 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 | 5e765f5b0985c3871ae439e2622384c711e7dc36c2421bfaea48f06c2acbb9ca |
|
MD5 | ef159892f420c2e98770e7b553f6548d |
|
BLAKE2b-256 | efedc5acd52c0225062342936d5104b2491822eeb6120a82209c651039da2b39 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 716.3 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 | 16a5b5a4e9f065c4a4e5d5bde97c50d7663e0887097aec82bc5493e553b0c654 |
|
MD5 | e196cdf4e3a658da3545486d1c8fa425 |
|
BLAKE2b-256 | 36e4848ae996d41d650399063c03d7cf7d92d094bb9d49acff89f9e2c2181458 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 966.1 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 | 67592b4a6b0e4de809e90148e616aad85c5d6cbba75a5c2ef59db24edfd1e86b |
|
MD5 | 4a346e5a500107593d77c19d0b87f9ee |
|
BLAKE2b-256 | 87e40ebefe480e0a06122abac68616f3aa61ae105691bff3ddde24662cf4a5a5 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 753.3 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 | 6a420eeba65c4ec49ae9c6adbd9e99fea80b5d0b662120aaebf04abb7af0cc07 |
|
MD5 | 608c1967e2c7f324e7d7d0d3541cc93b |
|
BLAKE2b-256 | 4f93464aaaf779acb674ddc519cb26fa82173af44d9b318607b26d725894f468 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 741.9 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 | f4816d4052af7e763ba58502e0e1e154debe4eab1aaa04c1dde6d85c7bb19121 |
|
MD5 | e55e97bdc04437401f8bbb1c5385395e |
|
BLAKE2b-256 | 2bf7912e88c88d44fc5a933ab032d2e55d1e202000da9dfca715bb5571a81615 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 715.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 | 795e150e804fee5c0c69c0fd5049d17811e0b5ad5df744477d7ef09ecca79061 |
|
MD5 | a82617a3b94240a88e479fa1581f9853 |
|
BLAKE2b-256 | fb2987a9b07d7f35ef9d7e1bd58e649271e0b59f309e511dd068f4f629f90787 |
File details
Details for the file bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 730.3 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d25edc1563bac113588f9334f14f3046d6d8fcf37cdbc02c1eec99d0b4e56213 |
|
MD5 | 9bd1c5e1887b997a3179d579355d9e04 |
|
BLAKE2b-256 | bd7d3af161ee1379979efffe13259129e5cdf6104b1df3543399e118d59ea052 |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 885.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 | 91af772fe05e797111ce7c72791ce8c579cc10b647fd10f45794c3376bf40e54 |
|
MD5 | 05eb170e8228314cb9c0a986bcc44ec0 |
|
BLAKE2b-256 | 76898fc1943c9a2c228a083da077f5ac1caefbb98bc0039540a537a260a382ec |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 891.4 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 | c2c482e4635d076820e8ad978874ebcfe8c83d8acaec6c11222f7b9e69323f2e |
|
MD5 | 3c4d5e4956d4cde0a61df992417d7775 |
|
BLAKE2b-256 | e7fc513a85f6c579f43d072c053f0344b26eef2ea941555351d74159c77c7a9f |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 991.1 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 | 2f14cb9df7d0c8db0941bce5a7e239a403710452eedfea8a1de25aba22293ed9 |
|
MD5 | 9cdf701f3ab338b8ea73d287df4c8036 |
|
BLAKE2b-256 | 513661532fa282d6398eb05db964ce886682d6c2c633c1434198a5da668ee107 |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 891.0 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 | b4da99b028d23fb0ed0b5bc8e6cd105bca0fe97428fe38c1ee75d18e500235bb |
|
MD5 | 854fffe6b7b353809e99bcd85762588a |
|
BLAKE2b-256 | cf942bfcbdb90d0a47ab0e5e9d06867f67325890ecc49f0c5df2bfd61f9bc967 |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 717.1 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 | 23d2dd4316261537c430b7b0f18963fc6147d5fbf661bd7219ba7b3c45723171 |
|
MD5 | cf3c176088a0289e586a4e14f69ae7a1 |
|
BLAKE2b-256 | 5c4cd533e7e89e69b94b692550cdc6f61d08dde045291a4bc00f96212e22bf2a |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 966.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 | 88592665be9a32b9487be51284caaebfaf8d54cb08e4b5e0fa9e78c460a8eb7f |
|
MD5 | 5d1cddfab29f4e2da0ea620520a89437 |
|
BLAKE2b-256 | 131dc085a20c592852565b0c856d87ac319330485527b1aabd55d0ae88a1088d |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 753.9 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 | 36a02e478dbe36183a1b8d0f48f5a67fa2ca9a819c2d478df11c7a8dda01e9c9 |
|
MD5 | ab85e4a1f63cb892b82ed74904414847 |
|
BLAKE2b-256 | c632abcbe1e1dc5e56c6c849071853041a4c08905454c27c5bb93bb69a457b30 |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 742.7 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 | ea8409130409129b522df3c48210c13bce177949848794ed46dc850cadde9c8e |
|
MD5 | c5a9dddf043222ec35899f9340c0909c |
|
BLAKE2b-256 | 830d251136ddf0e4ef7f29d1e0f0eb709796b38a4c06d5aae2dec8329d8559c3 |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 716.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 | f78fb693948861eccdbd55113da69c5584ad930114f1c6cc7e1004d82f8fd91e |
|
MD5 | e8d3b4244f80b7c815eaaa725a1c7b34 |
|
BLAKE2b-256 | e8d9ff1bb4d6a33fbc68898575da0bea7b3c465d77cd79155b26be91d94aac9c |
File details
Details for the file bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 731.6 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ba11b29a2cf8d415d9e7a7f359b9f547940a6e116114cc3cf9fdf4df12864891 |
|
MD5 | 4b19d7637f576aad354bcec3359016fd |
|
BLAKE2b-256 | df2b2d781185ec7262b72dbe9d6b2037bf178180a4790e204d5aa4db30b04639 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 885.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 | a4e4d122d8fb503af0573e687d34921d33765f7212984e8e6f51450a107f8f2f |
|
MD5 | acd93a3dbff6f41474bc9a00f774c8ba |
|
BLAKE2b-256 | 8d9ffdb01951ed7ba0238e448418ce3f0bcee0cb0f8d702af549956d344661b8 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
- Upload date:
- Size: 891.9 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 | f894f607a41bcc63120e87b8ac6e6d434ebc0a1eb5615cdf7a76cf1f5f1738e9 |
|
MD5 | 708feafbe7fa4c4759a4a870979feca0 |
|
BLAKE2b-256 | 57606a3b134bd7d819c0172de4c1cb1cfbf0b7452863aec704ecf0299af4e781 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 992.1 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 | 06d0554f388ef9f0c5f45628c048c40f2d45c5dddfefb2a559b50d08d3c7acd9 |
|
MD5 | f2dc43dedf0e9d7c5334073b4ff68955 |
|
BLAKE2b-256 | 67581c03e920e9e139f43d41c0ab1d6bdfece91a00a66d511e0d418b2b72cca7 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 891.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 | 59d278a7205b6b9898781c559ae0a196acc014acf72963e81d2fc9805ec4981d |
|
MD5 | 01e6ca4b0779d93e600687985e47ffeb |
|
BLAKE2b-256 | be564924d02fbb8cd3290abd3366e3677bf513d4167bffa333f6cae5dcddd099 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 967.1 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 | b6be79cfaed4479db049f4ca777ccc708da30d403edff3aef1caa819e381c3ed |
|
MD5 | d1ad41ec3aa0a9ca6a69a7990775f385 |
|
BLAKE2b-256 | 13c4007f9d267890ab785a6c9c8f61a84f6339d63c582aa96c5062a946783d95 |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 754.2 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 | 5393517232eec98964bf2d3183647c57d72966664294a42ba4372701ec0ef792 |
|
MD5 | b45449feba22c6c6730dc9cbc7491e30 |
|
BLAKE2b-256 | 8768207dcc2b388dda8f744e49bb69b946bb1a8e7bcea6c13c24de54f92ebd2e |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 743.3 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 | 7ef9188343eb63be58359efa9b956d9acbb6b2eec1d185c7d488b0cb339c0b0c |
|
MD5 | 6e2cfaea951e7cf01c843f296cfc3e61 |
|
BLAKE2b-256 | ac9079957a17a931568412c8dffca1df7af262286b2a753ebda13cfe9c649dcc |
File details
Details for the file bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 716.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 | 40cd8016ac1bcb167fbb9d618bd64dc991b8043f4a203a6d9154c43eb345583b |
|
MD5 | 9c4cec1f7a9801e984949985d87dee15 |
|
BLAKE2b-256 | 6f6bc47df536bc24ea6861109064aecdadc9fa9e18b25e87b5980e32c65b1b60 |
File details
Details for the file bio_grumpy-0.2.2-cp312-none-win_amd64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-none-win_amd64.whl
- Upload date:
- Size: 586.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 | cbee487f3cb8b0a2c7466f983d9fc18cf0228fc125e28555824384e0b3504a24 |
|
MD5 | fa460b4d95d210044be3e858f6467136 |
|
BLAKE2b-256 | a8902b00ae94f3791d1e01168ca7077a86b4fe461b732f7156fbf45774f12a88 |
File details
Details for the file bio_grumpy-0.2.2-cp312-none-win32.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-none-win32.whl
- Upload date:
- Size: 540.3 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80561252c15b7bc96487843e382bd2ce0f9bf9bb67eb7f07476cb48aa297b8ee |
|
MD5 | cc0805ac469a17a61ebada96eb87322b |
|
BLAKE2b-256 | c1fb9c7d8b2eb6ac47061b955fb6f462712ed40436ce03263bdbb69263b5c22e |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 885.4 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 | 51c8438eb09ccbaf4931fef6734b94310d8779d5ef444f409f29d192d8c81878 |
|
MD5 | bc93b3e9cf42ce5937b47c3a11a3cece |
|
BLAKE2b-256 | 1e48749cec4b3ba2f54db355b004b851849289a51ad17d57d2bd9d0d33183007 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
- Upload date:
- Size: 892.0 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 | f4db3682cc74abbcc956cb4436b083ed791e50463dbf1afec490c2d4b4fb1a98 |
|
MD5 | 31efa570227baddf825baa0a205d33f9 |
|
BLAKE2b-256 | 97b2fd1d7010e0ad05d348a7cb77621aa83e45fc8bc2c0c2b199b287690060c3 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 994.2 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 | 8b4a87e473e6c321a58eed89528e1d4f39a2c899c8611e60370bd71fb2075089 |
|
MD5 | 8099176584bb3a678a281a27bcceff15 |
|
BLAKE2b-256 | 1db409c409133a677a3fa185285e5703638e739ef3b49dcf1df8ace31b2a65fb |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 890.2 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 | 1e6deb07a153011f8dded26c94aeaa5099ca1adff04b8d6ad731485fc681499d |
|
MD5 | 5d2f47b764ea081fb0500d2d5daf58a4 |
|
BLAKE2b-256 | 25c2f191d8ef4b4ff7825d6db0a22f0f843b2cc54095fe96b4c9b3d3f12163ad |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 721.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 | 479969a5b84130a0b2f18e6c234f867fde0ced20fd65779ade8c37e4e85a0d0a |
|
MD5 | 2b2cdeb9437aaacf552800b7bfdffaad |
|
BLAKE2b-256 | c9ffdd79d4b2548a0401aecf02c68d7fd389a88f6a416a1bd3d46d13966e53a6 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 973.1 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 | faccf2deb3355c0aa2e7720c63c1ab46fc7ba1b576ca58eee561627e188a00a3 |
|
MD5 | 5b8e1ea99b9fa6914bce67efd935815c |
|
BLAKE2b-256 | 9572eecf9823fc7ee137d98001f10573dc0d8201de13314f37169f282a4700f6 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.1 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 | fdf3ff0121af14b3a5b1ad14e859f0cae08f736518225f66d861821baecb067b |
|
MD5 | 598267863e966687f331d5a091d8047d |
|
BLAKE2b-256 | 5004c8404b595c18e1542ecdbea0f6f0b65a47f443c3296afe4763cb8f9fb7c2 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 750.7 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 | e6e925265b0872056ac2b9be2320137c883dc187e353b4384d8b04f3a85bd944 |
|
MD5 | d034eb05b3f50edb752df8816d647950 |
|
BLAKE2b-256 | e82ca0175d3566dbc641cb8e63601a1bcec32c24e7330446db3857b8e4a6d01f |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 717.8 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 | 6c2786b80f2643093bf92826e8ffac653cf92abe162d806515958bc4a9047823 |
|
MD5 | e6faad91c678ab55e5b23a9c5f80ad97 |
|
BLAKE2b-256 | a788f8b9dcd952a1415f5e6926dfacad83b7ddd54de25e5276b0b5fcccb570eb |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 738.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae0f150002a416119878720cf07b9c78e56d9be85483dd9b096d76619363b52d |
|
MD5 | 1a3cc8e9b83bd6625d262dab58c63b42 |
|
BLAKE2b-256 | e1399ac948be0d1e10af605e1490e9c09f5bcd1b419967803cacacdbf896e18d |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 651.8 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 | c88abdfce75648af944677b2cc05ec75262d8b3d2a4e963e6debba7d40f7f543 |
|
MD5 | bc4d4f22b5c6a72700812ff680a29cba |
|
BLAKE2b-256 | a0cea24c0c43f0700e783e19b669acdba14cfb224ab03e1f6c154132f1830972 |
File details
Details for the file bio_grumpy-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 684.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 | 125804a2102d5365392ee435825cb625b7793234e608e3e33c21df2291d30078 |
|
MD5 | 49baff972548ca56f1952127e6ad26ce |
|
BLAKE2b-256 | 332c11b187a31da1c5f4661c476b829749424f98447b131301c89fccc29b1dfd |
File details
Details for the file bio_grumpy-0.2.2-cp311-none-win_amd64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-none-win_amd64.whl
- Upload date:
- Size: 582.4 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 | ba0d37edd904c50b2afaabc561d3c0210ca47f213156813ce3786f7263b76c61 |
|
MD5 | 4f6b37a96901b6d028e3722a4d7823d5 |
|
BLAKE2b-256 | 2a7891a7a5aae6a089aca8ca4dc8ecfce6ad8a606a20a756d860f8c4d9d010a5 |
File details
Details for the file bio_grumpy-0.2.2-cp311-none-win32.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-none-win32.whl
- Upload date:
- Size: 535.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4bfb6bfdf9263d11e5175185628b2e589ee6742151c47429accb8606aa036135 |
|
MD5 | 1dc1d7b16097daa4e922849dd00b9fbf |
|
BLAKE2b-256 | bbb0a43cb7d038debac737fa95aa5ec00fef03a6f4f36d4f74cae4de5d81e918 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 884.2 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 | 8b366e0d291a326303458a45f6cd64707bcec9b82c99996cae6cae6f5fc17630 |
|
MD5 | b79cba2e1796913b430d6e353bd98bc9 |
|
BLAKE2b-256 | 2feec07f45284ea96cc5d3a80788e17eef841b4b9461fe239d740c5017792aa5 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
- Upload date:
- Size: 890.8 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 | 7569e994873b39f844f4231e84d7fa29d2a804717cec0e3472562b94fc9784a0 |
|
MD5 | 3b2c8c51ddb21a21fe7bea73183c002c |
|
BLAKE2b-256 | 00bd7bdf7a0cdc2dbf6b53fa4c3f379aa84cacdb2712f0aec3971e51586d1044 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 993.4 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 | 68c007b0a0fd1a24e17aabea8daa93b9aa7dda9909eed72ced4bcbad79fb0d1c |
|
MD5 | 9e0528292fe15a37fe63a84afa5a01d1 |
|
BLAKE2b-256 | dc6bcc588586e0e9dfd63c924d57f125a573454f31808e3ff8a262f7ea07bdb9 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 888.6 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 | e16033b602dec7b7ec1b0c4129d04674772a81c7d5172603197e72b8eba1ecee |
|
MD5 | c7d2155a87240fdbc3d73345cfc5927f |
|
BLAKE2b-256 | a99eff0cd5b40735cfd6011e0a05ef198c6d4dcf3c365428f830eca5fdfb1f69 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 719.8 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 | 9de873a7c6d5063046c28e31e4b3b8af37e099f2ceb225f91d419034107eddc7 |
|
MD5 | a7bcfe89eceb369721d31332e1a6f6e0 |
|
BLAKE2b-256 | 5f95f1a3408b88599457627f4a2df35a5b6458103870fe36a6c9959e6a724abb |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 974.0 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 | ff8a2454c7692b286a78c7ad6797a5c790c6dc2d40b66ffc0962e429a1af85b0 |
|
MD5 | ec793b436503d8f9614a8386221879b7 |
|
BLAKE2b-256 | 23a22c0063d2261a969c04780a5e616555c8fe22c7b875889facb53f9a9b9d42 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.0 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 | 7b7806ba0667192362b1173365e69058fec2922934c1a32f9a0101a6cec46ea0 |
|
MD5 | 2ee02242f31f3f20a6d7e4b3714dddb1 |
|
BLAKE2b-256 | aac951fd29ce67e9f09141602b2b1931023e36b8c7d9c5e9a14b351d474dbdc3 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 746.5 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 | d01863b21e589541ec7b43cbe1b3b1418507edf2fca380382de2f9237da2cc8b |
|
MD5 | 94f1e298fcc40bcbfac191d5df584360 |
|
BLAKE2b-256 | 93c996e9e94ff97f5623b40873726e92fd9924b43befc398dd5eaf87ac00a4c7 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 717.6 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 | f2f3e574540763ff09c3972edc2007621a5412460326882643eacfb941b4f7d6 |
|
MD5 | cf72deaa8289b6a8d494b2cabf04ccac |
|
BLAKE2b-256 | 5c0136b8393f3eda71ad758f93c09a82a9ca1f83c5c2e6c891918a246c399a47 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 733.4 kB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a23879a00fd5e53f36158ca7d519d91240a8700a59b4425905cdd35e916606a5 |
|
MD5 | 639d80f2472a7d067d59107c366ba58d |
|
BLAKE2b-256 | 6fc95607905fb72004ac854ab4db6018fe56136b3bcf348aa3e7ca207f3e4180 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 650.9 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 | c46eef91131321919b412b507c3c6e0885a39959f5795aebedd3536061a6c846 |
|
MD5 | ca336f746df3bbb21f6a4a3a9a556a06 |
|
BLAKE2b-256 | c1a5f7bea8519bd0fae5dac2a79361577c29549cc468efcf44da25f364574695 |
File details
Details for the file bio_grumpy-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 685.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 | ff160f897eacf7565fb9f898c6f9a4ee6fa6df8668e6f3f5778c911e8ee43127 |
|
MD5 | 917950b816ffa007292d4fe79cbdda25 |
|
BLAKE2b-256 | 7f547376c53744977598aa15a3f0e4140f23e37a023f21e4f25e1bc4d52346e7 |
File details
Details for the file bio_grumpy-0.2.2-cp310-none-win_amd64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-none-win_amd64.whl
- Upload date:
- Size: 582.5 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 | c6ee33d11cb6ae9ec42c8a39c9d749642d7ec1669afe6f5ae5a18f6e4a214b42 |
|
MD5 | 5002871660e03fc8cba7ffcbd434d4f4 |
|
BLAKE2b-256 | 0a95bf72ef1a3e85c5a1c00af5fe507b297c3177e234c2c4539a1029cfdaf095 |
File details
Details for the file bio_grumpy-0.2.2-cp310-none-win32.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-none-win32.whl
- Upload date:
- Size: 535.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 | 8a5ec1570a7f9dbcf232621882c328a163a8781de9b18612245ac805e6cd989f |
|
MD5 | 8f45f892d9709083a0d485a3eaf6e57b |
|
BLAKE2b-256 | 9718a17aa4316ccfa495fa08c769b8214aa26dc5576cbc6763371a5106f86c3d |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 884.2 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 | a4c21234f9fe3719cd8f0d7a79bad7132b1a2d819d8d6d390b14e891ded565a0 |
|
MD5 | aa0da559826a235c65747374b06ab774 |
|
BLAKE2b-256 | 96151d3dee9277898922d01d595398277255895c31f767a008042d8d77921f2d |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
- Upload date:
- Size: 890.9 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 | 150e3f3245684d5a565760e22ee130a606cb15d1f23216ed289245d2fa80a85b |
|
MD5 | fc5cfa7519224b12cf185d1680e4a569 |
|
BLAKE2b-256 | 1fd18f37d16114862499d1ff127ae3826a1027026614914f097fd33744668fc8 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 993.9 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 | 205283e437257bc31161e8a6941333fd63110dca4f35b3eb8a9b5089cf32eaab |
|
MD5 | 276bf1e1b961f780af2d67e85b259b50 |
|
BLAKE2b-256 | c714d25fccab41a71e00db21d4047d226e2c24d1a62ab1ad27232ba846736514 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 888.6 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 | 9d2177cf0a722cdc122a6555bbfc27b5b864d6ca5d361113a96fc87b33fc67b8 |
|
MD5 | e64d42510204d4a974f65e75a926d6ff |
|
BLAKE2b-256 | 6dd0fe7cb10af81503135e8b1947d6803a8b314bbcb9494a4ed1e1c9a4385d6b |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 719.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 | 6dee98e0548fdb9ad5efe5ea1f4c23ac20301957c32e5fd3b9f0a13b16fb393a |
|
MD5 | 3ddf2d44a6d714a2d2535a5e2470b5c2 |
|
BLAKE2b-256 | b8c74444463321294410806bd0e1dda3b9b803d87ef2a5f72efab1bff88f5545 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 975.1 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 | 3becaab28189829806da8032f94fdc0160d5def8b4551ad8c520b1a9e88ed0d1 |
|
MD5 | c9207bfb3d676850b97344afeeb66be2 |
|
BLAKE2b-256 | 526ea2bd9fa4ab2dbe6c0fb6026fec40eab1146e1293198748c8c3ea5bba7ffc |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.1 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 | 99ff731674a46e4695a2912f7cdced67b5ff6095dfa98f41e881e82a162f3e2e |
|
MD5 | 1570ec95dcbe2755fb009b15d1d5c10b |
|
BLAKE2b-256 | 38f78becaa43f276cab5c0e6128a822f7424f45d06249a9a34c0df1fc82c3154 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 746.9 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 | 23bca8297d35edc2a28774c6f26edd8056cd857bf046d34a9b7fb657bc167c14 |
|
MD5 | a4346c8026223774c87653d20afa55b2 |
|
BLAKE2b-256 | ea6c802aaf6bcce66c504303883809b330472b9d5c04e42928c79feb33b0ccf2 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 717.6 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 | 5ea216a9265b21f5770d57e70c8f0daae72b57e331bb6946be55e8ed18277edc |
|
MD5 | 86be6ea123618519effea71fcce4db0f |
|
BLAKE2b-256 | fc26bac791af1ad076151166a4329bd317f2140b6d20e7cdd9bd77017f53309a |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 733.4 kB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5b4320bce55fcb33738f9630eab72bf8e1c6b5979729968277161b4a0431712 |
|
MD5 | 567cb54ab5d8f8b0db1ddd8940b8e485 |
|
BLAKE2b-256 | 86a6cf73527841db9ca7217681eb7021a6ed93acc85ee66d13828eb61bf93434 |
File details
Details for the file bio_grumpy-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 651.1 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 | 87b950def7a290bdc1b4731878a8542720cdcd545e4c0f83d249d14a8c1af7c5 |
|
MD5 | 02b27675b1dc5b28e3b231fcd1e30a3f |
|
BLAKE2b-256 | b17bff9b327b26c60413877cebc6d8408b527c33215f353033a78aed771557d9 |
File details
Details for the file bio_grumpy-0.2.2-cp39-none-win_amd64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-none-win_amd64.whl
- Upload date:
- Size: 582.7 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 | 4f882cc6a29e8db07e096e7ddcc90ae252790456e31549259a8aa1686efd7154 |
|
MD5 | 90752e280487358c7661ed4d45d436bf |
|
BLAKE2b-256 | e96c6998f55497955414aa224f127ab531dd5cab10fe7abf6fc0ea88977e5581 |
File details
Details for the file bio_grumpy-0.2.2-cp39-none-win32.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-none-win32.whl
- Upload date:
- Size: 535.8 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21f4052594ca0dabbd6e8b769b5757b36e5fbc8b578e2facc0d2cb9771308a75 |
|
MD5 | b4ad80804fc7c99368726f296f5883c0 |
|
BLAKE2b-256 | 461a75afc6085284823deaf037fef81f44a582631869f37275a192f1a0ea118f |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 885.1 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 | 225bb047c384a125f3d705abe1fbf8fe6e1aaf1f3f42a124ac3360a728e06c48 |
|
MD5 | 3bb20de2f4db79bb117a50c5f2ae5d42 |
|
BLAKE2b-256 | bde7b254b25a922bd7721ada88ee42463f5ba35cc421567e753b88dbf479c1a3 |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_i686.whl
- Upload date:
- Size: 891.8 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 | 96e03b7b8ab95d739fb93a495e7ba0c452d2b781d61d034376615e65e5c45bf9 |
|
MD5 | 5664b801c0feeb3940efcca989c45176 |
|
BLAKE2b-256 | 5fecb2add3818fad5af95d3de34dffcc115703b7cf78288017fe2b7b4c6dc596 |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 994.6 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 | a0ab045a8f4805e6f6618bb45edb711ec26e51178587019d5beb5c4e54756c9a |
|
MD5 | f2c3f5ef252d8c162fe104d33474193c |
|
BLAKE2b-256 | 0493d87a4e45f653598bbf70cb9bc1e2c4f1689235b7d991278bfcf8ca732bcd |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 889.5 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 | 056f2dc0ec36ac29937364d97ad2cad3aafd5a8180f78744f95bf4f4011a36a6 |
|
MD5 | 67812816012af33b1c1ffe117d1152d6 |
|
BLAKE2b-256 | 658a62e37b029c9ec4e94b22e35eea5ccf583ceb26045a1213341fbbcdae2b13 |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 720.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 | ab985c74ace6ece45c522a5e3ab087f245434b79d6dbdc48ea00fc07c647bdc6 |
|
MD5 | 94319b0414d4354810ee7aa8217c54be |
|
BLAKE2b-256 | a2f3ccf1e9fba9d8bffe5479f55ff8aec85a4301b28540fd9a0dd662117b1d9e |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 975.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 | 260ac170dfba3d8390bf2d58f75f30595e3ab22315e65dfcbc963741466f72eb |
|
MD5 | 6e4c8f2b2b0eb2122e1b7a8f001c3940 |
|
BLAKE2b-256 | d37ad9aec80f5c2d7952b09247a7cf9b550d635e02b8fb07677a3ecc609ab99c |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.1 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 | 7ad5ae0b25fe92b611b168e664ca65406221eeb79044b11903fed4ad3600021b |
|
MD5 | 499665b03149a668a0f358672824bfd1 |
|
BLAKE2b-256 | 625860095432e1469fd534d317e20e05cbadb8a59624205551239bd89e209ace |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 747.7 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 | f339eeeccf2b83efba2bde4ee494e653639bcb1e4b9d7df1f23f29c2041b3c8a |
|
MD5 | 4edee0f8c1a0d307b09cba2c1fc521a8 |
|
BLAKE2b-256 | 8775d3008cdad0572b8d362fe509bdb4395255037417136953b5486361e53ad2 |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 717.7 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 | cd6b4769847cdbdac1e5018acebbef9499eda9a216e5bf7f1bfcf70559440748 |
|
MD5 | c5d05d29c27251b88d747112e8f33c19 |
|
BLAKE2b-256 | efeb0a1c5a96720b3eb83f2c8101eedb362b57f7b93d84fc3baf2de1be11bd3b |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 734.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c956d9d13c94ab1be82706570467c66f1df19e388584fa5c6a534ff045dbab0a |
|
MD5 | 8b113df1dc1458ecb6022a3fa3b35ff7 |
|
BLAKE2b-256 | ad52ade1eb08a55c2c29e216f2b9e1741e7807174b9fbf3d53fc48da3b0c8c05 |
File details
Details for the file bio_grumpy-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 651.3 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 | 500f893b2099ab34a0bf7a31465c4a662e41e670baf353ce7197a8e9179a341b |
|
MD5 | 77ab5461637ad077ee59d4248389f4e8 |
|
BLAKE2b-256 | 745144b6b44c9d6a23e5f6b7ed7b868f7a4dc68cb7d5f18a146708c3afa17759 |
File details
Details for the file bio_grumpy-0.2.2-cp38-none-win_amd64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-none-win_amd64.whl
- Upload date:
- Size: 582.8 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 | 3d77aa299881cfc17a8333ed5af05306b1bf304861b3c37c142954a3d55531ba |
|
MD5 | 6122ab94a307e3984c02fcf33534f88f |
|
BLAKE2b-256 | d2daaaabcd284ff3714eef4ec71efe31b1f4e0b386dafff3ed4b2a87ad2bbf89 |
File details
Details for the file bio_grumpy-0.2.2-cp38-none-win32.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-none-win32.whl
- Upload date:
- Size: 536.0 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4decc5c8c86907690be4079917358577f20ff33d8b5bd94a6a4396fa5ae6d1ee |
|
MD5 | 7ef0eb35e19427e74d71a6e0d576814f |
|
BLAKE2b-256 | 2514b4f4643b87b4f6316b14c51ede90033d37c9d497b26347dcd8d0cd499bb8 |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 885.4 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 | d69862222f8d75d1644bef6a12553468420ee5f775bea32081c26af2d4c19b2d |
|
MD5 | 9b7c4ceac7f142957be902e3dd352247 |
|
BLAKE2b-256 | e09c226a5774bb70b2ea0d7cc665d5bcd1ed56ff23b5830d7d7eb6d08e94675f |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_i686.whl
- Upload date:
- Size: 891.5 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 | de1cb478bcfd6e81de7cf0a3e338a983933a5db8b127e34deea47c731c0bbf0a |
|
MD5 | ee09e63eda0cbd28ff218825de04b3c3 |
|
BLAKE2b-256 | 5dfed38303cbfe45738dc62958a6507a71119de707793b8817369d68eccb026b |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
- Upload date:
- Size: 995.0 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 | 3868faf40681556014453eca4b240c184f128650c94f454b5fc0d157bc52b0fe |
|
MD5 | f729f9f0409e3b63cc991bed9ec9fa53 |
|
BLAKE2b-256 | fd012db2d84bcdccbcab44c1378d3e3f0213017d6569083a6753593e94535ac1 |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 890.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 | 66f44c10fc74f27b54842a63ade56f83d09d1c72156ea0b1f8b7c66a419765cc |
|
MD5 | 35b63fe847a065feea47e7c6fdcfcead |
|
BLAKE2b-256 | efdcf67bab74a130569b1482de13e9118b89a1262900bd5724f130fedd09d26e |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 720.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 | e74613b2de535769054986935eee0ddb191cdb30c7b0058d0bb3b5f68d89d4f1 |
|
MD5 | e26e23116a000816f7bd1ea1e8773699 |
|
BLAKE2b-256 | 6966f81199603a30dafa0c831572dd17976c4d2fa2c2ffca6320b9f2cbf1dc6a |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 974.1 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 | 1bf9badd691ed9375ac5a946ae4e5f1f06d0d57a75a22055531633198c6ecd9f |
|
MD5 | cd7865d245b87a3b5d828bdb70fe6a14 |
|
BLAKE2b-256 | 8ea6930a5fc6106702f2b1fa707bce37eea53589710cd5c0a38402cddb700f2d |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 756.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 | 0992daf2be9a68ec4e89977fef260240d084ae5f71c0e61e5a1522401b861311 |
|
MD5 | 090e864121db4fb97dd7ca0ecdc09334 |
|
BLAKE2b-256 | a456fa4f4e159b9221ffd9ae51ea861f60cbd8d3addd5e2b4908e8bfb7f91fff |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 748.0 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 | 66281a66d974147e52a5eab0cd7d6595250646a880b622e39e2860c702fa8841 |
|
MD5 | 60c14dbe63a6f204a3849cd250b854b5 |
|
BLAKE2b-256 | c374d8d902578f9b6fb51b16c48a32876993fd31c346c14b9c6fdcee49da4d95 |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 718.2 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 | 812a4f04e6286c4de69c68929fde237867eb9eb3d726475849c645a6a70ae7f3 |
|
MD5 | a90ce9b3aee3df9ff65dbbffd40d6db9 |
|
BLAKE2b-256 | 3ca94bc783c6404c623263260606389b0d41dcbbb268d20df019e2b01863c45d |
File details
Details for the file bio_grumpy-0.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: bio_grumpy-0.2.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 735.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcec29f055c08bf8ad8ed03d383656c0edf53cd0b8123974d4f8b5b12c244a29 |
|
MD5 | 32ca1ada1e9a16512787a0ba18caa0b4 |
|
BLAKE2b-256 | 543cecb559538d339485b99b2a345f0d7a9909bba2e6670acb266e121a9963e5 |