Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bio_grumpy-1.1.4.tar.gz (6.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (979.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (990.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (919.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (766.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (814.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (771.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (741.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (782.8 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (979.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (990.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (919.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (814.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (816.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (772.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (979.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (990.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (919.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (814.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (815.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (773.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (741.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (984.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl (1000.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (925.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (817.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (821.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (792.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl (707.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (981.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl (998.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (922.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (769.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (816.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (778.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (790.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl (707.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (982.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl (998.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (923.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (769.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (816.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (779.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (746.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (790.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (982.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl (999.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (923.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (769.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (818.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (779.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (746.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (790.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (982.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl (997.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl (923.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (770.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (818.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (780.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (746.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (789.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

Details for the file bio_grumpy-1.1.4.tar.gz.

File metadata

  • Download URL: bio_grumpy-1.1.4.tar.gz
  • Upload date:
  • Size: 6.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for bio_grumpy-1.1.4.tar.gz
Algorithm Hash digest
SHA256 a75864588c89b4022401e8a254d73dcda4d985bc5635fddbf3a25f6c908f8530
MD5 396be0c62e7c50fff3d013fe046a57a4
BLAKE2b-256 beb717d99cd1db1632e90e92f9eb5aa96ea49e0e5b21769473dd2dbba9b0ba0c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5dd7bac5ddbd6ec86638fc1a64a225e1d7fd44fe09090a1ca360a81a99f6255
MD5 3f07780a91c0faffd32867f5a8157324
BLAKE2b-256 7a881c5ca5d40fc0a5da4da45ca97c33ae76ef69cb66793e4b3239c08682be6f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1f66eff2f9757441b52bb6b4b1e89d672714efde75da11b6990d04a212e215a
MD5 ccba5e07eff884442d18b5378a054b65
BLAKE2b-256 cadfe2af5579be72dbf476b590c795ab9ccc77ae04ab4ac11a8e879ce4b57e2c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5038be82297d558788f11d05e0a7404b6c80d68ae851339e638362230123064a
MD5 7f333d8c32b0d372fdc3a0cb8854e45b
BLAKE2b-256 3e0dc8c7c46cd5b57c23e35e1cd863cfd4395ae0361484411839ec4bcd49443f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f96f177bc5792a8240cc07116d5aa6eef2266dd264d7e2c553c2f06865cd08b
MD5 d15eb77adb9c4b5c91fcf07debc66246
BLAKE2b-256 a9d09848c4129297d18fcc1521816eda1f0bb3a09bfc8d281654bb33f91aab9a

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e6a8926033bac66684dbc66e009970fbc9800d00f5561c5dc5bf84b6178b121
MD5 d257887b5ec836f8cf3b49ef5eea8733
BLAKE2b-256 59c79273ba7cc6793e3466a3f1f056d1880def105b69da0f7724d8808a823e70

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba5ffea0374a6093d556cb9433ab3aa1c3a1243325b54ca7a2cc2390b916e427
MD5 17a2af55f0952a1e045ce9b3801d78f5
BLAKE2b-256 079b8fa14effb77d30fdbeaef075297ba5d3c967758e0827ecbb9536a8476853

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a35759fa6f1d6accd10da80589d50925b41af55053e4a64a94562cd9660453ed
MD5 bc00256fcfcd4d5eb560dadba59edf7b
BLAKE2b-256 51cd1bf06d421f4fbb5a310cec0751549a2c20d38cfad4a2c2d112eaa69e4f02

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1df00e2e5cc344eeaf893a5a787e2ee7823d2477938f2ae696001d0ebca68b3f
MD5 10a83f85f004f94c4e775e763f1d2127
BLAKE2b-256 1250bc3cc7344939fa86088c564ac1f56996c72e0300764288b3401631e703a1

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caeecb3b0e3afea4c2b45387c2d55ba1a8a76deeb3db2fe69903d61186fffdcb
MD5 01f920e51639ba15c468476be12717e0
BLAKE2b-256 8bba4f2abf118ca528234cbbd88fbe8c7dae221f5c75bbc1053cfd3eff83940c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c6d6422a840cea5ef16a74b113b3edac1afa18a0101485949375bfbffe4a4d69
MD5 eb387530c609f5dbd83870c95c982265
BLAKE2b-256 12076c77145ab79d216d998e37366cd8db62a0d6c4bd95b435959d7e78c1c8da

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d5924a0005f25a69091a48437c66752a0794b469307960c4a8c3ed19d618d049
MD5 33b373c743bc3d2f6855e60b5d323d54
BLAKE2b-256 0e547734f2ce8aea3baec2ccba5f7e39cedf74115e5878689ce2ea79343231e3

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 91a68786c28f1aa147bce38f93424a62d5a67990589150aebcff6dced51c1c3a
MD5 9b0a46dfae3492bac2a880c7788e14cb
BLAKE2b-256 5823ebf5640301e966dd92db79216d3cb9bf04a8922c0f29691bc3b4735fc429

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c0124c3a3062934680e6b71b660bf1b953f8e0684c7edd30c9ce778be19f81e
MD5 873777a00f5b37989d27a7dba9b1cbef
BLAKE2b-256 8b3e3f1e75125e0d5551edbc61f78689e7d7efae473d365f50a411116269b0fc

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da86e0a6081ec22c1d80f0c39c65f0335ead0fa2882d079a03f869ca0bf250fa
MD5 94951ca5b49554cd5a349ee4a7a58c2d
BLAKE2b-256 7151f0bdc0a8dbdd6913fd10ff476f0cf93d5514b02eab91b3c01f37c6147aeb

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9991aea155d1a2e3fbe0b66b54132ed60bab90cd9a3d1dfaa033a116fca43aa2
MD5 3d51c70da73ce0d8cc1d48564672217a
BLAKE2b-256 1dfeb4815e8512e40ac9ef5e559c4728d5b93765e2f1f1e6cbb4a5512d1e2d30

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a38292eef7e3ff1c11e84337e30d7db0335d79084473a472c11dd11ac83f5610
MD5 91452dc9f8ffcad9a8d9f3f5d951c6c2
BLAKE2b-256 850b2c0634e6f18606dc7e04c42aa009d2c1995b4d5ce33402f6d6292a134204

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5078321f7ef0eaed77045aa5359a956f7f638f1b9f1f19698ee03981b52c0217
MD5 0d52740028352a1b6a9c07e6da106862
BLAKE2b-256 3bd6840710168a1c76aab06955bc5cfe676f772da1ccaa8da47bb87eef679a6a

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c88f1a8ba3d5b37a70f7df1d42eee4d3e0d205b20e9ad897abaf0d115873c9f7
MD5 b2833ceb4ee288db9a7b6704f96aeba3
BLAKE2b-256 fc3978f253bc579ede7cde009ea5bc5b7fde3ae4dad59b89de54dc453d8a8299

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c5f606c5d2b86385c81b6ccdacf9f6ccdefc9e218025c0e5c57ba011f6a3680
MD5 cac0b8139e91a82d5beb9375df78decf
BLAKE2b-256 bf54025e26f9b621513911e1f67dfaf217a069a89c98a0f5216c54a8541306d0

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 805d801911ce349c76a4d433e1173659f2667bb658beafafa7fe5e412708aaa3
MD5 4f42708735838dcced72e77f2b6fb19b
BLAKE2b-256 50653a638f8c7ccabdfe586be4cf38f121ee0c63a63e019cb52c11287beefb0d

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c08269114f2be8be21acb4f971de5a47cc99ba08c1a726c160aa7e6499d74982
MD5 044318a96012496d2892d16a1a038551
BLAKE2b-256 7c595a527fccffb10ac8c45de348c2798c0fa3cc25f7316430cb0534b199919f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fe95974bed3909d7261c7de86530cc6159967b53814baa719add44f8b2946b5
MD5 bd4da0b579a641b8087e6a50bcfd29e2
BLAKE2b-256 410df0ba74715409b7107dbccf6cfa8d623faa70640cb3dafdf757075cc7e3dc

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a38ae53c2813fb096b11f866ec2302250bba5a85ccd0ab105256609befa493a1
MD5 0bee7027315548022d722438727e5bf2
BLAKE2b-256 592c97e3396f7aa02ef97e4fa508a7e48de8143565e41fa835ded0e2c2c76f3d

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd6f7b75cc813caf777479d59b710bc603a626fcfd3c1ab416c87a62742c5457
MD5 9b322027434601606b3b39cfceae7faa
BLAKE2b-256 c145e96fd613f55db57c07643f61e105cee2c59a26c4dabd04456f6dbe0ad3d7

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 484d7a8abcd4de3284e5e8030eecb241f263725db1abde16c65f3f4296f34fa0
MD5 ec9f2b6379491cc0d013bd927c7d43ce
BLAKE2b-256 d47975122b58aa905e5f988829aa7705eec58d1e8c0e87d6687ad76891ae5983

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a6ef54f4af20eea1746ff63472955f219607322c1fdee922c024d823966bf4
MD5 fd4b5df23fe50e44dd7ded42a0378ef2
BLAKE2b-256 b345d96f60e00a2c896349cab0f9276735a3247d1f5fd39de1cfd4abc4ce4ee8

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f1ebe7d604240886712ff894545f774f7e7d17047081bc9e942e1ff00c603cb
MD5 7e96d3b81f60e0d1fd2d2f6c154bc39a
BLAKE2b-256 986be60cee7a72bdbbe64e315afc2625c8cfcfda089b315a2eb1cd529252e54d

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11467ce2737ddc1b6c7b8e910a0edb6e171bec89b5ee74a873864d21f203fe3c
MD5 7d70310a21f231e401dc18a55a59c308
BLAKE2b-256 26857022070446a98072315e7f11238e70a969715cfbe691df9e504daf18d4f4

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9e1f28d7bdf070bab10f3e1fa4cc457ac33a53f2450452f93deac033f77bd17
MD5 838062b49f459ca4d113758e52bfc692
BLAKE2b-256 236e83aeee059eae2e2769aea1911d84569ef51c115a1b6c35e4b212429017e3

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38ac3d53db98e4a570fea5839f52a2b796dad6e7e2246f84f23f042e31969b3e
MD5 734cda7770679fd7b4f5efabdb8ab5fa
BLAKE2b-256 b67288fe2e571169dba9ec78c26f8434da5fc65b6ff084af82a2fd2bdab8e5be

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff84c73f38913027dd6caf379c2d9fadf5b1c5cdd3a2eb611b995d579e2efd1b
MD5 cc774cf325aa52c1c7b9ff35cfb0c204
BLAKE2b-256 fa6a0e09286ecd98537c10b28cd09ea30a2d6a9a8ffa25b702ea67852586357f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 728d2c80c80ab9721b982c4bde1f4c2103b80ae65049ec70c6a8f74e1de96a01
MD5 65441ef8faa3737c9444c9b2ad973a11
BLAKE2b-256 830073ac04b9430575a1c7e97e5ac1352dc718e0b6ff125727e8e7fa185de358

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93f1cc21f3a4dbae093c7313f1fa8d23c5d16fdf13744b5fe62c3e81c1457b79
MD5 634859ab649509eb03e1f8719db96e7f
BLAKE2b-256 014cacd4d8eb0ab26dd615890430bbbac8cbf154386d472a3d6e86e589e9f6d0

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8400d935eb73df83961ae7e6afa8f1edf2dc044ffce40d6761b4066e1ecdd996
MD5 a269c87a7cd624aedcf0e29c47cb465b
BLAKE2b-256 18eb5d3301f6c771b0d34d3174c98d6ba8c59bd5c0179305b41aaed681e5c0ac

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc3ae681931fac7bde744ae114917ce6f4d64467ab3ed111d3d6d337dbc5faba
MD5 ba99e84631e80cf57d4799341ac6b6c8
BLAKE2b-256 6af2f630904f63343936156f78084e6e2d06b503f86b015649059b9909614ae7

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cc92c87f7d3a66832d3a10838e5f4828be39f59b14c1bf59bacd39a1102fafff
MD5 e5f584d67a1300aa404e5f486d7ac6c6
BLAKE2b-256 5c4f705aaa3e521f5a6b8a15cd70e838e5df2db9d2addf7767778f8ba9e1755f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e1fa10e24eb364e603374a2d20e92a79d15b231489f2dfd87968d3fc6f9ebc1
MD5 e5a940470dfd0db979c4f50c97ec8725
BLAKE2b-256 26a372231e630cfa57df8f8ab18d1d7d0d356a5bd38caebaa72558c793264aca

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c6601d661ba7aa4450ff11adab6c8601e2cee5a0bbd6741424ef61ebf4bda04
MD5 85babb6e39d067d0423b26227b9590a5
BLAKE2b-256 93607f0f8402001efa5e6559876e3e36c64b9c637ccb191699f2f21be28e4c7e

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10d4a489afdd2a14409853bee3dc6e74c904cea6d085926add4287c4952eca2a
MD5 bd91c7b918f59f49a61a85589b0eeef8
BLAKE2b-256 cfda41918c178f99accbe405fd82e85f5b5c7471d27122bec32c75a66c3c0697

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75fe6827f17c46f8077b9f3245d0e57369736ac6ac8ec22f56e30af41bfc416f
MD5 4df52d0cca7dca842e87da911e5e1a24
BLAKE2b-256 524e0f230046db5840ebde0e22fb01d15193db7dcdbab36291dc11e09cd33451

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d50724ddb3d7c04188937f928edb1b798f350ba22bcf19febcaef95d9563ad
MD5 b827855871519934a2748d13d475c0e7
BLAKE2b-256 a8a4bc752c976ba994cb1662cdba18bf253d2c98fafa0a429bf4ea6ee67ad115

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0fe17649284e36abb3bb10b91941fe4602d9f4a0d5a1824b1c1e494ee8af468
MD5 ced8eca67a8643ec08a2ae9676ce4733
BLAKE2b-256 3a41c07b6ac926366357f8d08c8370bf125873636b46dff65f24430476373152

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cca6a6292f196411cd241896e2776dd8181430f2259df3d34ed238775b2e2199
MD5 2f4fdf4cd1ea9761fade25e86e077064
BLAKE2b-256 6dc223b892f6a23698514453a521fc13751cca2f37a9fefb413c04f904242115

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 602f950f4591eb8a056ec84429a7a2a908f351a308c98171a893e694493c8cc6
MD5 458976c07253e1f76d0d93659609a81c
BLAKE2b-256 2f76bf9c3a2926f3c0bca0034e401035f886955c317ed6e42d8e26d0122439f1

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56a26ff793ba0222612ea7e554954751bd7110f13c8d9b2b2899b520f9552c8a
MD5 d61ee4990bc9596a350d70436141943f
BLAKE2b-256 9520c52cdf401b127e4ef8fd7902f5911b48e5a3166719534e54639b4ab68664

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58f0d850fb88265698b7544b5747fa680cb23c9315b001438b527e3213dcc8cd
MD5 687de2bc3a165f4ae6a2df0ac4a3927c
BLAKE2b-256 30c8d614d0db3bba46df0efc889f8e5c99240e5f2377e39b0b7f5c4e00affb4e

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8106d6c06bb8f9e64c24c99640ff6a5d4f4b4e7afce90d3f21eebb0b70d9fd92
MD5 fc685695e7084c3073d85aae77dd01c8
BLAKE2b-256 f849276ae60df94bda150486e8ca8cb9c6f63a542c5f8c0c88b45afa9c0eb8c4

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1643dd18c94070079743aaac0871433941187bbdd9a8483a1f2fcf3d38f1d355
MD5 836f86cac15ec0bda572065ba07dfdf6
BLAKE2b-256 badeee326094390b3489210acad43d157f35efd3ae0e077b280818ccecf4c355

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a61f62deae6da56b59c7b62326247e90d4bd1e89765b869ee22f7a99fb689fb1
MD5 1b5df9da9951c5c53a019dfffa341dc7
BLAKE2b-256 99131e8dbee00b650d82065478e46b48fa6c72f01f568e058152d6fceb07c16b

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25a6b15deb95d186731009eac4345d51c08f533c733f8deb8dcebd880a923951
MD5 113bdfce0408a26594111f20647062c3
BLAKE2b-256 735a5a8f18ff5115338350d146fbf12f6e400bf8b43d73460717ba658d7174e5

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5d8abce81562befce5f87decce1e8d4abcafef67fde87520ed3813fa78be53df
MD5 e12f385426fded39ca55c3497ae7a2ca
BLAKE2b-256 6728c66359205e1644e0eb54f17a5205c8dcda5a032ec86f3c2a20ab844cbbfa

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5778a22ff00b7a06a95f69c9c7c78081743f92f6299e9702d34d6fa240333eff
MD5 edb7d7573c103b250a3775a44fa41a15
BLAKE2b-256 b520f66831c4c9ef430ee8f0e8d8e1fcc059d35db84ff8259f130510dec11d6c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f9c2f873c17a3e282222fc6952af7369127081c8463b12494df88426290940
MD5 2938327303d4f3474e491a64803caf34
BLAKE2b-256 eeec5b11148372b97750a8dabc422708bf0af47e47bfe40a9aef6314fb745166

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c386c3381cc8077500ecad2c15b13ae3171ae8e0ea734ea44ffb2ca9b275e0c
MD5 9bc528704302c89ecb0960514a52b9aa
BLAKE2b-256 36652d518f8f029e76f90094c459182fd797ef639a2bc5d261c69f4fd96750f3

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5deb00b206d360238d0d8ae7671802086a7641d5f5d83f379da1a016cdc91d5b
MD5 dc0bf0660e41a40819d1aa47c265c9c9
BLAKE2b-256 6cb8a43410b6491e9c4bafcbe029ea170ba44636738e7e647caabe5c3b6fef50

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af5f1ef19a6f848adde5f68abf6ec81093a04b2a7ae93e014b939278c8a058a7
MD5 4a3b7fd54679c4d0ad60a9dddb366c49
BLAKE2b-256 0a325ccc98458772318791e94b8f333489d5b3a9bd972b755c260196c83a2e3d

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97071dd789b9a2bfc4820d1453c0f13da20d3aca6229426cb3c2d274d104ba5f
MD5 a84f42a09c91fcfb588979718bd47c2c
BLAKE2b-256 64a52ebf64f0a1974da4c5e826c66ea2ab312b2fc6c8cc0bca17cb0de113328a

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b12ba974ad823cab94dadfa33e398ca801f15e134bf55aec42533bd0ed3c8fef
MD5 d82ef7b96b57af31f63f98fc593deadb
BLAKE2b-256 cb1469cb7f59b10585aabfc77af18637bf69e54333364b71d36f33beeddba83d

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f72f784d5e3d085bd2c807dd99a1340976663562d56240b06ba8c2a89c278768
MD5 44b7047304067d54d34189bd4511a70d
BLAKE2b-256 55fcb4f247590e5c30ce57bf88a0abee6a9061e3d4de4a3e48838158a494e78c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b059230add13337d32c20d7d1fd0c40bca5ca73c6e017927321582f376efdead
MD5 5d64cbe1c96d022c358470738d4c1ed5
BLAKE2b-256 8b36631ad9da114a44814253ac6acc1e2726b0ad30bedfa37000140f1576fc2c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d84fc56129c655e94f7471a1da078d5a5c470b73fc486b9a3612fdecbc80ae5
MD5 e4aecda673eecbd83bac2a7747b47d1c
BLAKE2b-256 322cdfe1116cf35d4555e0a3be3b77061edb87e983fc87f7f3411d2bd900ffd6

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 108551271d91fd6ad1a098299e1e1a17535e4edd567293f889a8acc0fac8ecab
MD5 47f403ead6efa0d5ec8221e7041a2f93
BLAKE2b-256 9cb4843275a72389732457942929eec221a0ed66fa5c250ab0ca3a51e7c7d63a

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6ee7a726622032120a07275d2c94bd15bc2e8bfe6d431ae16c8c241d0c28ff
MD5 efec76c835b4389fecb8024492ed612d
BLAKE2b-256 3f6d01b3e5900922a571cf7a26b754ad2921975fb92ff5445bfa8cfcd194ad45

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a70d1b20466843cf8f2a3cbf11fb85848c9c084f3cd0e06301b649eff633ad8
MD5 668cec6725c81666e798cb8fe982116e
BLAKE2b-256 9ce640ba99d31f768fe922e5911407b52ea2b372903facdb395f18591b7ea648

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d96b7a4e59d5f53f566059e4987324c1f8433c2ddc93e7e030e30421aa0e7183
MD5 9e9732d638fba0e3f2e2dd1afeda7b02
BLAKE2b-256 b5196df59f1a2e5bd87487fba025305e458e273c75fdd838941ea7f8ef1d8d6c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7275922ac496eb9195ee01dc5a6443a99441e6805556cad8b245a7f1875a1a92
MD5 e182933c90726cec54c5b9c649c70fe9
BLAKE2b-256 d25bb57ff473d40ce4d2b8a23639ee30235eb663d36631da3043b56205e0f804

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa237464779afd740108cc1d558755ac41d5aebcd66bcb684c02fd110e1bdb72
MD5 c4eb32c3fcce839afb96a60af7cccda5
BLAKE2b-256 ef50b8a9aec9b52f8808b9a6d2c7e9cf706aff237e27df192f071f3c331fca64

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b5809c16c1f8765d0205fd5bf9081bb6dab8e343b525316ae7c63d41cd6434ae
MD5 520741884f17e68c6522aa09b91f9a46
BLAKE2b-256 7a768decfff3597c3bfc9935ff1266b183fa74b9fa73c761efe38fdcfefe4471

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 398231bce697105d9d4e45ff7790385ecd1dccd04c499b24c46ce78a287324e3
MD5 17fa1ddaadd50b984ed5d9db0d2d7591
BLAKE2b-256 4ec768ff90cf86f0bf57a76484596efc546e1f9835e5536263178e562748507b

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29637e86c897429398f62b75f40e02d45a2ca56fe56c1fd96257d053ea0eac0f
MD5 644d68953b3898602e6b3baf9b6ca78e
BLAKE2b-256 8a308994f25ced8064d0fa06d86f143bbedfeae4a76579f44b389f5f73fddf2f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3010a150798fe074f1ee0cf266dd61aa4b25264202a95c702ee00a1370466fe
MD5 5aa39e6ddf917fe1e65bc7cffdea0319
BLAKE2b-256 15d6a86c52f9db4b5dd954ae27e45ff92998a32a668425e2694def930d3b8e8b

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8076d93798ca92824399b2d6459430b5fc9548098bf5e3e907c9b49bdfa21460
MD5 eba0013d641ef7cf8af0301d55b5efcd
BLAKE2b-256 886aca13a26740f2f2a6b1d0986b3b09c495b51e3ba18d09b6a1c79b8fb19ed2

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce150fec97ba22de313fbbfd99871cfae90baa5e1155e50c2be06ee43e33b170
MD5 55371b73d68869ed95dd286d884c4f8e
BLAKE2b-256 f02fda8d1d2e2d405796e4a2c13bcacb5f7b5e176b7bdf663f084c7a2a4840c5

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b4765a43669fd404710be3f2e894f1edc742dfbe871cc6e5c52f737013b2de9
MD5 4b0a7d97b70fc22f9a2d134c97a3e9f8
BLAKE2b-256 8596f33f5f3a16f4fc1fd0196b149d8d45852b989ba65eebaeac1b1fb43dddd9

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37bcff2dd981dc8e13c21779ba5c463231a733c0e6f14b413240560d2ac2ab31
MD5 394b9d4134f268ebb1b346f9c6cf595f
BLAKE2b-256 f56a1378267e16fb1853b775844ca1fa87d31db10335238d834f1fbd7a1b8450

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cae088515d9300c5d0fcdece0f65f770489cd274f7c94f1118dcf6a86c1ecaf
MD5 4d16cf2d2351bef2ad501522e7659753
BLAKE2b-256 5c2d20be6627ffb036bdd67849bd1361b3a89e540537c8a329c6a738ca0b9154

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eff5a9ba6d9def010714b141f23d351a1f033805e0e60fd68107dff099b5b38
MD5 7b92e28c3f9ccfcfcbc331fd6faabc13
BLAKE2b-256 4bd124a79a3894d0fcb96ca60dc021dfdb9193f5e8ec58407872a4385a3195ac

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0dcf83cf7a1d7eff746aba5a81c22124200ca325f770d7afaff38f6e72f093d5
MD5 b85ad54195638b87fdb70d24a989fc7e
BLAKE2b-256 c2ec39a9b2070d8114e31ef6563f662a2c72c6a51ee8e5209223cc3f3483274d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page