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.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (940.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (962.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (922.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (762.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (826.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (781.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (738.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (792.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (940.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (962.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (922.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (826.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (781.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (738.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (940.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (962.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (923.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (827.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (823.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (781.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (739.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (945.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_i686.whl (963.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (927.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (767.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (828.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (828.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (788.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (744.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (792.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

bio_grumpy-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (699.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (943.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_i686.whl (964.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (925.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (833.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (825.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (784.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (741.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (794.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

bio_grumpy-1.1.2-cp311-cp311-macosx_11_0_arm64.whl (701.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (943.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_i686.whl (964.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (925.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (764.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (833.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (825.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (784.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (794.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (944.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_i686.whl (964.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (926.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (765.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (833.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (826.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (784.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (794.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (944.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_i686.whl (965.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (926.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (765.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (833.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (826.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (785.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bio_grumpy-1.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (795.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-1.1.2.tar.gz
Algorithm Hash digest
SHA256 ef5f67c4cc1a9f61d10c368493b78e7bf448f90dac812a4536fc66ff9c5a3a84
MD5 6636daa48e538fee5bc71ca46a68778d
BLAKE2b-256 7de5fe9871b5ebde513b41fb1ff41e450ee8506f3502a31bc3ae060e35679157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c009f9c613f3a089344146b0264c3e1f6e3c8f8fbd015889766d61ed37017403
MD5 8de35cefd08480b2ab85d8ebea84a59a
BLAKE2b-256 33d30133c0d74062ffeea89ce985355661a52ac9fb87a6956849c006b8a9471a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e18bc5bf6c0a9ef031ee9fc98c207fd5f0af50cea6036f9d574c8d8c6876467e
MD5 1555a24621e642c1f96c9d4eb787b4e8
BLAKE2b-256 9ac95e6e3cc640ff13af07b9cfe4ffbc2fe5faa881f5bdbb723b8d2e7712625f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9589f96932de289e51b16dbd0854c5413aa5f61682725c144a660a0b41f6fa27
MD5 9c6b24f64c7281d53693d2edd210ec87
BLAKE2b-256 b50d0c636bcb2f50ec09c930519f5a0068caab63d9832e18913da02876a2423e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6016eb3258d88d8a41afbac9e491f615dd4d5bb1859fe7a434b4cdb2bf108937
MD5 bef37ef004522b2f4f15d0fafc512d6f
BLAKE2b-256 cbca2ecb06b7e702a9164bbd9a20e164ea223ef2ca427f2b040f72b7c630e9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d544b3e78a342547a8046dddd27408d4da52b0f2b54391d606bcc1eec6cf654
MD5 850256504c8d16b4d0269c749aec0a87
BLAKE2b-256 6189e90f2a0608fc3b07f81507c4ec321c637a42216bc38283e526a2f3ea29b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc873363bad3cc835f1c19668809bf4d8fc6c5a1ca80abc5c7b09d4de1ee29d1
MD5 8a20dde64bbf921c2218c3666d61c41c
BLAKE2b-256 48dc4ebb8f5065b98ef20758ccefb314ad8205032e4ea97a4d8db4727ddd49a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c827e5531f37454d972215f54249a8ebfa2b19907c52174a2ba6627a8a0761fc
MD5 d967346fd2c3f9d507bf4091ae861068
BLAKE2b-256 885e42921529f4ab870fff78034c4650a8b295a2680108899760e4b4f7dfedc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32e34cf3c9b2df6b25b1868e77a2257c6d951b216b8df4ec1259cd3226325eb6
MD5 07ce25dd509aac3282db178d1138353c
BLAKE2b-256 8ce13dd615445b5683f7bc70176f22c354d59ee4d017068db2ee154592f2c4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9124a3f49b8aa8a6d58f383a0be99a92bd0b69ce934150c78c178c9c816b0b13
MD5 a04b714b2f7b25b8b50a1679f01a1fbc
BLAKE2b-256 c91b33343a505832789f8bad2380447b18fc95570281cf7ae3b23d2c3a322462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd383cd435738311ca475247609d8e5bec3729067c427458da322cdac648f8e3
MD5 f645e1d2b92481aeb18602f233e0d498
BLAKE2b-256 d9b47081970e9dd1cb1d56e707079522e3e24078ba75f018a077c111aae7e91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67ec0c4952d76388ba5675814443a56ac572dca89f06985bcb3d67c11f31827a
MD5 c7c7c2c721475276121d3156b1b54a9a
BLAKE2b-256 7199cbb7b232a6f574bd4655828dd7c9797372e8b763981ea73e22341182823c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bd8812846207a27d2d61c08e5fe2aaf1cecd69921873c8785eb027aee34a7701
MD5 559fadd41e0610f05c03362da6de106a
BLAKE2b-256 eb5fcc95d3bbb456a25c61107fb8e9b016891b188a950c5f517a93faf6579ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d21b0a101b39d681913163a62caadafebc1ca866523078394471b97dd70fb33
MD5 0d4ac3031a868d1e3d1decc1e590bc07
BLAKE2b-256 637088e8b4fc627d40fe2c10e15f1d39392b5c13ad788086521c7424a3a25d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b44c9aa835db5ec0cf53f9018a1ce2f00358be1bf0eb732691a896e47a84e326
MD5 a7a043822827fedc902c4355ce49f112
BLAKE2b-256 af233b5427e199ae0aee523836f97cac739498ed17e7ca773780e5dcf3d06456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dac05c3c69e0a0b4543c8a7cce158b314f5dc2fbb5477c4c0d77411522a7c42c
MD5 a93346a5bf4e0c371c59fb0e6b7c6a9f
BLAKE2b-256 faa1f4c6142200fbaeb4a56063f9b47dec402c8d6d38a7a03254d8473c401271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45fa60a88cf176a3176ba0f66415425bc37b59d582f5d6d1cb2e09fb44a45e70
MD5 db269fd0300e968813830a0198f0edd6
BLAKE2b-256 1555078b92e63b8c0d4f2b23031d3db7b1b0a53abc5bbb2a02b4cd9b4b2dbfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10a44bc4cfcf14f68a0dab74343826ad6af96484cc8e5f2c23424300e7a03407
MD5 37cf76d4a5f1c241a33a48f34f2e39ce
BLAKE2b-256 15bf407205a7020571cea96f67df07b4653457f9ba33eb8f8d73fd5a3a73ee37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 584929a5387cb8ba658631cf0cc16a767aa80940a73dc9f7e290b19351e09dfb
MD5 32c4369f0d31d1353fea50d6117c8c91
BLAKE2b-256 0e5f128e1b00a9a3df497a105c3f7ab7d90420d1e7b639d65b326328e9b9da04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f2e62cff0f45bc563df24b8a4e28aae96e3b3cdba268abe33fe049401ab7140
MD5 a74a0c600d7646971bc867f7c1b9c452
BLAKE2b-256 f3b1c09f1fa55b0dede247ac5ea5ca9cd710dd2e498f0e4a45d37e1413c5b735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e99fd98c81811c9d688355e1a16fbcf6301667eeb8ff4cf05c50bd0eab54bf43
MD5 d02420f12d2d81f905892ccb4b3a91fa
BLAKE2b-256 63772b079774c7ab69d76fe6ff29f4ee2a11fceaa5e74903f012ef47b81bf494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3554cd17d832937617454991012d5481bb6bc1136b4d1161a4dee34e55c4f357
MD5 37dd5c0790d8a5b5a3a3018be294f859
BLAKE2b-256 19ff2645a6d23bdd57868c9577df3de1f7abc9bfe0d1e91c3f4486c8f55b6499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee7b8d6757fd59b04a5ef55a67f5c8c906c8932a4e52d908ffa91d71c36cb6ab
MD5 21d0d69f8018fa64fc6321aa1299ad6c
BLAKE2b-256 911c8838ea88ca81b18a7ffad55e2a3173f74efda7b11010d564033e77305f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 48c9a1d79c86b4c976dda7eb241ca6fd9aaf96737f25ea6c9bcad93a77634a43
MD5 93cfba16377610799efee9cbf2ce7166
BLAKE2b-256 5202481f4250bf874abe674935972a4af784ef3ec0d74f2e8e4ffbb1f1ee9ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be9e1c1c0cb4f0f3f8158a6b20044ba840d90608317ab0519bfd93c50fb4cff4
MD5 35a7c8d5b93d7ca22fc81e108ccf7040
BLAKE2b-256 924465185f914b79c2742ac85127ea05b60613574a40e108102722055ad65581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a0cac2043ba7f7f6c2373d320f36a316455f82b0878fd96788b925a980d32dd
MD5 90c009c14c9a18ca74902dc98b79f85e
BLAKE2b-256 807a25dc1c2f3f477827a32b5acafcd597c132dc2b277defc963784130717889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f1eeef954218f67cd6a80c6693c53ea694f1e2fe9b11e4413a475f87d3e2b80
MD5 c971418c76418ab821a9dcd7608e08ab
BLAKE2b-256 c4a7996f8caccc44fe64036ab8339c8cd25d404f2a85819f9ab31b0f0df6244d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44132aff65421868096b4e0957d92bc95d1282808a6b8c63b1a216f516283f11
MD5 73e2140b80ea0d99ee1bef40dca2e8a4
BLAKE2b-256 c9d72ad458d74f9a955e201a25e8c2df543d0cfe23568dd47272ef7ef79f3992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d751adcb202a9d369fc8679721ff8ade4f0f58f336bad8b0c4477c8947bc314f
MD5 ce68768e8c294aa1d5158f64ea1831a3
BLAKE2b-256 1d913013961aa19a53e1317faba40617c542d71fda770b2dce588e880c7d9ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a000b5faf82688d5996e2219f5e0ddbe1f8d2121991672f0f6493304c3a694be
MD5 06b6f0ad474afbe570182e15349eed30
BLAKE2b-256 aa8a8d6a3579e6b31ad72817869a3fe257b62ebf7365c2148323aea5147923c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a4b401247be27ac85991c132ad4d849e2fc8435fb964fd2bc9916428bf96920
MD5 41797e66ed75ef413448c08e1196b465
BLAKE2b-256 df012457de145939792be08890adf3a240805195c8c9170e00999f4678c502fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75a766c9cc3a79d304368dd3dc1325a8acc28d1c2196ede7366bd1dce5a78b9d
MD5 0518f0e8ff1f5b084e67dadc9c2b50bd
BLAKE2b-256 876560d6baab17d8e1a1c8aac34df1fb197fca5e1a37cbdff0dbf9d1e0739981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46129465c1df9dbeef10e1be9977b9dfb1498893c2501e70bf833553b2367e24
MD5 d5fbcece03ed86443a88558357c1b512
BLAKE2b-256 9c2088bdb2bcb1445b83c72a7d0d7e64a0ea257e363487af90d3e9589e34a263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63c179b2005cb743def7a479ece2bf3c1d22bf2dd93a387c0094550b9b247865
MD5 48940f3a5f168c8a91ce0453db7a028f
BLAKE2b-256 d0b4df6ff440973af92a462e1a07248c13eb6953c55566352f41503823247336

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb6d93d34ef5dba805c197df7e7b777f1822c036aaa6ecde6b28938af5cd6b79
MD5 ddfc37964eeb1daeb88b0dde67526342
BLAKE2b-256 4008a9ce2172c3fdc5280231dfb5b41309ef81ae437801b08a4fa69881f7eb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 746dbc1672faef4361f00ca2a3a2724e94cd50e092599f0938846935e0b51f2b
MD5 2f6f7aa972eab4338fa29e436932947f
BLAKE2b-256 8cccb42522c3d919d797c7b6072aad74d72c06ff56e3d4010750c2ce54e72385

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c88eaaf5cbff4de2a59c984b1dfbf60cab96b75c7297d5bdd49975262d9c0d8d
MD5 66982c823a742ad2913d594d1da74851
BLAKE2b-256 fedbb9620645d3674be8f726011ce89109d308fc3d2722f553d46fba769bb243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2368f0830d155e17d95419bc5748dac3b5f7e859d7646d3c96f278db3f0ee956
MD5 8edd225991adafd42abde4e698cb523d
BLAKE2b-256 b6b862fc6c73cf554124f7e1fb36778ec50f388e924f8421ff91179cf8f5b160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e30305604a2e34abe4c9fbf6b36731e224ac4ceea2b7053d941f0292275a068
MD5 b65c1349a9b5d4d4c18af905ebadd381
BLAKE2b-256 264469b9a7015425b66f2c391b492778ea3afe493ac1433f0702985dc22a9e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e682dcb50dce3fe77af4d5ede421b9191c93b6e2c7b1ced721a537bdab6aeb39
MD5 3e4d8c82a247544d1c42f7b85d661eb3
BLAKE2b-256 5d4805de93e0d23fec64de66372c31fe3c26b1420261fe55244d1302daea6f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 523980fe2c9d83588e6f8e353b611ecc633b978795ba4e67820276998f9e1834
MD5 4cc75412d6ad1f4f355816710fc6656d
BLAKE2b-256 32160983c55bf71d81ee8de8b030dd612de6fcff3a79b1c036e0bf6a21f8e69b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd68300d312ba995cc3b6e27d1e69dbddc6620b40a2ca2a20f6d2fc41b33bcf8
MD5 00f178b5a7f376dbf908ea0c147bc77b
BLAKE2b-256 7cd3c5c3f6febe4ddfca9cb1e660c5a690e34af6bc447663964b45ff3b6029a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8df616df3f87af614521369bc68197d1ab519e766eb8f415aea933c44cbaf92b
MD5 37ba8234259deec198aa1c6c05ea9932
BLAKE2b-256 d41a0a907220b2381540c1ef85231f341739ae1b5c4c5454e4fe078c826b9ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2615d1501d8cbe4b464ececc81cc06fdcf2384f3e4686972385329fb6bbfcb0a
MD5 6cb1d99f292834c667a2bc47d22f217d
BLAKE2b-256 6ba992b40a2e318b1e991decd936ba5a361ac2595cb5237215ecd82d4c2fb36f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f1eee57e23f69cb5e553a7a1d40d0652fd9870449f56c931a3a94b3fdffc85e
MD5 7b77998ef6fbb5573062d4a484777b07
BLAKE2b-256 94bdb0bb84dc1868267791e69854a43a367e61275cafd4f48bb69e8e8835cfcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eacd6ebd185b71d9ca5978ce63ac6fc9f29f14b5880a567ccc23f00eff107924
MD5 ca433927f55079bb8fec41a6a597983d
BLAKE2b-256 b6c2ec0cb3d32c898a297f98643bf85f14f0d6a8c610be5651239290929c589e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26033a7e69c1f8b9bc58a4f9214afc2a096fa7f597a1673897ccddb70cd6aceb
MD5 ee3a83ef41b99f8185415c983f956a5e
BLAKE2b-256 07158cd60d2f9bb402337e2a6da421ecd9d22a2e92d920327da92c934b6ae0b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 997815b4cf3cd78a09428206d323ee6af325471feed8fc9719a9a2badc768672
MD5 d9aeacb67626919b01e676844137c2d7
BLAKE2b-256 d7f7ee20437d8ee48cb5eca014b6bb701e8426ad85ba38d2c12625ce85576ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d813b7fd8a4a6ba7b18689e14197139371da08cbbaf4eab6a5b253c8c3987350
MD5 9ba905ab205821d8b9257ef9c340948d
BLAKE2b-256 70722188223f12adf71eaf58767e06d78f0709a92acd6385f019e54b73111784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69368199bed763bb1f08664122b8058dce855451a7a0417acb14739c6a6dc937
MD5 3eb66fe8aeee9f55b42f4b6321e0c21b
BLAKE2b-256 61d04f9cdbdef8bb33c4ad39b249b6ec035481fcaf0cf483cd852dbc6d3d6ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 be42b541057f6964536a7f11655110dcc810451508e36c5530f8c51a31a30af6
MD5 b7d4b38cef845c94a13b3c42e96dc18e
BLAKE2b-256 f7fcf6b823ca3316e4cef2cf57c3957ca73daad0ac93f158ad17f03aa440e055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 618f5bca1b582ced26ba6fe421201e3dddf34d5128cee518f7372f6026a6c6db
MD5 c77742602d669367ef11ab9a8e5934cc
BLAKE2b-256 1866c6ea00d7a993bc6e119b1d4500215d0e15ba53b8d096ada42b877e028839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca10b8c78a08d9f3f73eb48b1a38d206b508fc168a58f8bccf75fe1a557e98f3
MD5 ab43e564c2e2e1b3ede04a86c3d8274a
BLAKE2b-256 542cccefe190606dd89d8a335225b38258a120b2541009bd281079a4b5c4c5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 720451bc956634ac71fc21a1f8269743333660fd48528d3bbc1c4c0c6dbc1e10
MD5 1cfe618b5c43c99a1915ad7825314d20
BLAKE2b-256 f9cce20ea7e9ce6d9e3e207483b25017e39265761afdb464758aeb55b2183a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec1535a79180810cffaa152f5ab78da834919219ea171fc61b0d043ac4eb11ee
MD5 b2b5cc24a1ff65da33e25dcca9b6d347
BLAKE2b-256 e50e216f45e75b8d1cf885631fbb06690e88d357a14ee9e579afd840c9f198c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c012b97074cdde8bd10816f37163c734f0e0d80681daa3910d4830db41d2e06
MD5 ebf6d0df1020e8d78baeeb7779015084
BLAKE2b-256 414f555b4ca13970038fd442505d25725dda576946a8ca92ca72c917274aeb95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21d0bf180d09b520f1d7b2d18e4ef372d92ba02527250f74656189ff057bc4e2
MD5 dd64c843b68aa3a3d7ea827a47da846d
BLAKE2b-256 891639062e781d3c5d129cfd5009b9887cf44f2e021d7d285423e0429271bc12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 486ddbc4ecb2e3f980ba45765cb78ad4a2a081af5b58bf1697c10e84ef816ca5
MD5 177f88466a71680ec2111cd48da62a49
BLAKE2b-256 d494fbcbe5f4ca35f7035f1f6738a33c65132c084cf6767caf177e5e880c7ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a22f240898ebd35d66daaa10f8456a392f24a5dd166d1a1edcf5d3f44062712e
MD5 265b38ab1125fc9440eae9fcbf4076b0
BLAKE2b-256 f8c0091d3242249eddd9bb35821a88a10a351199abf5c7e2232e401366efa5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc766fba943f4e00031b7a04f739f4eecab38e6b4073a94468216ddaa88b1bf9
MD5 f145f499bd4b830408b784b3f5617dc1
BLAKE2b-256 68e3acdc8f27833f5c7c50ae718c13250f6ac83744c1d33ba76dd536afb0b179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d62f5799dc7e01d57f6399863c1a5c51007fc32ca835faeac6a13572fca9fb8
MD5 b1ef683803513880b9c430dbf7a5980e
BLAKE2b-256 4b6ece098d5f26fbcb8b7727961d78d2d4d51bdc9bcfd9e088dc4c84fa0dae59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aef422c60c7cffcd293bb9e838b9adbee636061f9418c3a196ccbd2209a0cd5a
MD5 9b418f37e39c37a297d17af5bac25f8a
BLAKE2b-256 2ee84d616274e80907a45fcaf4b35201825ae98054faf92de57d21ec97f58b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e23e91fbea5b9f2d8592c9cc1132c9eee18af76b8f3433410aa290fdd1017737
MD5 ba204ebae79e129b31eb56811f35fc43
BLAKE2b-256 474f47c05ba951e436712daad41086fc8228209d2e7f5b1ab5880f2e0d78c4ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8738a0678bc47c6867a6728f4185c9a9df6359070982f534eab82d867ef17642
MD5 4b4083d3fbeb1a48427ae7a5ef5ebf70
BLAKE2b-256 88c9e088439a45d37884fb3646571ecc3e25de392b0f8a24447c57b8f1884c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 293a61a242829d86982349b12940505cedba1231925f8b79c3d97aba939f5ac6
MD5 722e531b2eb477d76513708e96f5225f
BLAKE2b-256 1a4ada23d539538c346ad8feccb3236daa44a304121b45819b6e456c72304fb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f60720cb1cf7fcbac3ebbae6e25b2f9a774f639d8b07982a03b199df1b464d2d
MD5 a58f0635a99b0551740a3cbdb18f37bb
BLAKE2b-256 3efc3fa8e75117b94f892e0f662e0c82338cba5271bb4c4427ec6cda69a92dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d29034b0159e5ab49195364f861f06516b4ccb804f462999ce6594968cbed01
MD5 d54e7802c9331a2e424c2c5047619668
BLAKE2b-256 8bc7a6b3c3550fac11b1e0074cb614ff37ce003cd8bb73aba00526c5e40efbc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac85a83289fe88959147d8ac9b87319f66f3b84583272fac5576898bfb8629d1
MD5 a24357f5f64a10ae48ff1194ef9b1b66
BLAKE2b-256 a4017088bbded1b8ebaf7393a18559d1f50d06d0ba609b576ab9c6e110b57fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1743b915d47e9ff183b6a94432cb5d0691327f9aab7cdc6a531c2743b22b0dd9
MD5 a881527cb562092f3951144c5ab0c515
BLAKE2b-256 f2d2bbfea2608f388b26f9dc3925b35d231ba538139394221558ba4cb203e276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94f7497c517de7ad17febf38eb207b2f7636992b8dba991b0467bc98fab34cfd
MD5 def63052f4bb241dd5e07a39e019b84d
BLAKE2b-256 092ace6b8ceb8ea87e6bd037f4562929c05643a37467c822bbdd832a48b0be48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2b4d43a3e2fed3020894ddeefb7ca813f51adf9d5c0a7a0a1342faa6f86385a
MD5 bf09d36d1038f1dcff69b10501484393
BLAKE2b-256 e952fd332ce73eb595a5ea2248595814d98da81e2ed12a8e254a0e1e99d52209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2285b6d78dc1c8c8c265cace8a0e5f91858892ef4f9425aa1733b3c49a46f880
MD5 2014c7474c9003c1590de70e386c80e5
BLAKE2b-256 a7b8202d9e1d8e4aa292fc5ef27c8918cf819d74a6ee4d1d73e466d827c18342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a5af636163fa8469cd1108757286ce7bf43e7fab5b554c37578bb48e63df045
MD5 6a690a7ea7e2a3ffb86163845bf60e2a
BLAKE2b-256 1d6ef413f67ff58e4674a57a1305129899e8408385e14352b7647ba0c5821661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3531ff9f9b44904219aa46fde4a53712dcad3ec9cd5abdf865f03c6e5043296
MD5 4a6a458ef1ca97d195eb0d51a7a3abdd
BLAKE2b-256 fbbdc22d36b6a5e2714c2c3d2ab7cfe1f0d0b2b541954a32942a027ba0ae4387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2fe02393b1df477ec6dad9d19489b95763b61a444b8a364ab50379abcd3dd8a
MD5 277b2292751ce0c76e3e7c1f621d3648
BLAKE2b-256 7f325b867c53a80871fef857ecc6b0653830ff95789526a415fa266b23a514d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4b07beca6acc7302923bbba04eae4dcff672c0a9a707043ea21c39e128a74aa
MD5 2c85ffa509d0143392537b84da9d617c
BLAKE2b-256 b1eda2b7fe13fe057e8ce05fcc84ea6192de4e7238c3e3ccbb7c5413d4493d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0a2c33a12bd46dcb464cf6b8591e9cf20c192c13571e341e99c2749a54f13d82
MD5 885971e7f7a9239b01c53482c0e3263c
BLAKE2b-256 6d9bd7bb81e9fd510205db0daee8d50ccda3d906ffcec73797c6d37b4a64c1e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfc6b132071629447d96145cec6f3749990b8f2e3827d49efec6c5d3027a5092
MD5 4c26d103a24071391828530cc631638c
BLAKE2b-256 98550cec7763560bdb7bbc6eb757ebea967c1e5316919af6ba3adc1bd832588d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18664a865b98c7717307fe55825969ef1fbcc7ccf9cf49a4d0580b15be3c241c
MD5 837180e0c154a883d710e4f95f2b1e03
BLAKE2b-256 a03089d245b243db59118f0610d877626bf88266a79ccd097e0736112ca4f11c

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