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-0.2.1.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (884.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (891.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (991.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (893.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (717.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (753.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (740.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (718.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (733.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (884.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (892.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (991.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (894.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (717.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (753.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (741.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (719.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (734.2 kB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (885.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (893.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (992.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (894.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (742.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (720.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp312-none-win_amd64.whl (581.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.2.1-cp312-none-win32.whl (540.2 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (886.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_i686.whl (896.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (992.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (894.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (722.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (755.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (744.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (737.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (655.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (686.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.2.1-cp311-none-win_amd64.whl (576.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.2.1-cp311-none-win32.whl (533.6 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (885.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_i686.whl (894.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (994.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (893.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (720.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (743.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (734.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (654.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (686.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.2.1-cp310-none-win_amd64.whl (576.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.2.1-cp310-none-win32.whl (534.1 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (885.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_i686.whl (895.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (994.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (893.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (720.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (744.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (734.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (654.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.2.1-cp39-none-win_amd64.whl (577.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.2.1-cp39-none-win32.whl (534.1 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (886.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_i686.whl (895.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl (995.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (894.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (720.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (744.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (735.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

bio_grumpy-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (655.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.2.1-cp38-none-win_amd64.whl (577.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.2.1-cp38-none-win32.whl (534.3 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (886.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_i686.whl (895.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl (996.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (895.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (721.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (754.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (745.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (721.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (736.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e0713507f3a7dc618cbb36a752c81132d858904c46b08f31c6dccaf1cab14044
MD5 83d0a0a440c7b36bd3fcbd17e902e108
BLAKE2b-256 00a6473c8caa28366f46ecac5ea564c3f752177c2bc7b6fa18b114923a872e4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be3b9f3d03dcd3180ee614b105e53abeaafbb6652b5a570f5de6726c09e73e56
MD5 5993181278b5a4551ef9420f0ee9bfbd
BLAKE2b-256 04c115ce1c0dda9ee641860b1dc883934602394a8e17ce81be71f5d6b73d01ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc8e8c831b0eebce2413a178ba42d421f3e67349457b1eeb4b7cff59dc43c120
MD5 f71413c8dca0383c24b7f4bfee29051d
BLAKE2b-256 13af366ebb0f399bf6699df1893e5d2bc71e270753e2c59499810d8256951513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2c9c7cc55d644c6aff25e440edfd15dfa4877d8e0246795dd4134f10e926cebd
MD5 f48528277eea0f37f84e2d56aae75967
BLAKE2b-256 a44cbcb626cf840af0cb334499cb4a6e77c73a9cd3e7e8749ada893e8aff118f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29260bfadd0e893e259d3f5058a4ff9d6d4fc7fbafbac7fcf4fdce0fe708d1de
MD5 a5df625bfe393b3b871fa867735c1e99
BLAKE2b-256 f6cf83df7e50b54b034c3d703171801de146a89a47dfc54754b3bc73ea797939

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5ae523b008b610dd8388acafa08ed6530cabff9938b606965bac0519e93c59e
MD5 1bf5349a707e07170eafde757384063a
BLAKE2b-256 9395b6bbc2c0b61ac38750d0c900560f1292be7924562ecbf5161fe1ba3cd6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9366c209f1be691489c8f05f615408d313d47c895d2129320def6d4b0aa68f7
MD5 1344f5918ccc5635f3d8a4e8c96c0444
BLAKE2b-256 a399eb6dcf6689795cf936ec1cfbc9530b4d18976ba4efa59102335003908f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bd6449a02ee655db86b2eec7484d934f9e8b0d5d3ce12a7ffdfe3b82aed48169
MD5 34a9ec61a9c45600bc1c8e04f10a1a31
BLAKE2b-256 dc845c04347f129a69808322c2f069fad0445134b85dcceb5c352d7651ada86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6842b418247ae00a65ab757f24437e97a4e869c0bdccb5f24b54d6e00119794
MD5 eba9d05fe69a9eae6ae36baa19b56b14
BLAKE2b-256 38638ec0a953fa1b964be26ea8ab884541a0417131a78a9ae5e3c75e3c8def2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad807002db712dd711a9776b1642360b7405576a882bb879dca22283b80e6e4e
MD5 e28be2d72c04fca05e09ed9880798b52
BLAKE2b-256 c56726096f75f266f0bb3e1ed704fc774bcb214ef7e610b4690a2fc2204d36eb

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7a2dfb2ac7d5edf47a78e9b549e2c40386c29328226cd13e7d20cb9e3a1af659
MD5 44434ba3c2d8513ad95395ab1579cb1a
BLAKE2b-256 56ab37f33033b1ec756cad8902d9286dd35db26b2151337dbe59bd7e8d17f4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87e3a1586d69b0ae930153ef07fbb4bee2a5b4b126208f5eb5ef34864d693905
MD5 6da9d3288c662137d0c41f8e25b01e59
BLAKE2b-256 81652d54e4bdabc51ac728f4187ca1a157d730a666f8d33bde8878a81e9507dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69b462af561420e2a5e74b285daf81e4a312e6abddb47e63c1406247c3767eb1
MD5 0e2899e65335a2755de7d2a9195b740b
BLAKE2b-256 99bb95ef3bffffeb0ceb95da76ce8ad95348a35fe8de63997584742b40024313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 46153b55eb60fe38ce39ff28bdc6972327cd7e0c91a2218c110866c8bbcf131a
MD5 dcc797e161113b3e696ba06abfded2d0
BLAKE2b-256 3030e3ba726602efe2f6d24a17295f06f0d387d31a1b591847b11cb2769bda6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abdcb0cc613be2546ea8941f135c83e25ae8bcc05ee7b4bab4de21fa06a2552c
MD5 d70bada954bc761ae35f52c4ac5d0fe5
BLAKE2b-256 27da306d794ccac3ebd334017664320088af64877a78ce2f43a0a31b04d4924d

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f327fc391dbff0f9a3bf154b6a2309b1ae73e38f2cb2be8b806449a0e91a6ebe
MD5 7db57b126fea750162755db3341581c8
BLAKE2b-256 8f4b063cb3552c2ec402e3b2b0aec6caf4452892bb358e9185edcc93ad6c9063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d08b409cdfcdc3d216a5e8d84ee24569694a5224de0a9726e58a85773ea06ee3
MD5 db94cf27f4f759fa2781ca5646148ebf
BLAKE2b-256 0dd4adbe773f7f373a80d039a160d7862a36270aadd019b1ac50f60d0fa50a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3eb3a63458246417fa18f96502fb9a761c4a199665763470fc070f7f615fec04
MD5 b75187acc2dc5baa9afe024e80a7faf3
BLAKE2b-256 7633f69ed11bc1a0bde8f914d2489ddf4b800541733eb62a77070734ca6d3df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7c4d8740cb1ba92b754ecb626a79fdf4681f49b0986a4f64053d000be1b7f6a
MD5 4f091336b6617dd6172b424041e87dc8
BLAKE2b-256 90dcd4f794b2ea3b4a908435bc787d691a801aa2f360c5836af63e652f12bd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a41653460ac9a164fe1bc209cb60383f50602da4106a149f1916bbf5e9ee41c
MD5 3561a4b1179e7e992dea847b13dc5c5f
BLAKE2b-256 b0a1913305728d8a56a6de7452a2e8980885994b34a4562c5d0d118a452d5e8d

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9e35727625ea0a1adc4a0ba591e0286ee286680105df6fa934ed4ded3ca5d470
MD5 a8ecc7ff0a6a6390a616becbf4edba1f
BLAKE2b-256 29557c541cd571ad095f7d391244574d8a3448ec4fe647a3b00fa7bc7d8aa52b

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ad88d27d9927f72f8f50a5e3efd0b8abfe617cf549c797b9fea7f3d4e8137ce
MD5 f594ca6f4ef4f0eaec55c94b69f6df64
BLAKE2b-256 511b2ab3b4fc68a35f5a4d89a7541f6af6c9b2f05219da0ccc8437440abf4e91

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2cdf29996dcd51a54719792a0e7d05c87d82954aa90b10461e27cd09c75cc01
MD5 b6cbce9df64d9ada59d8a51b73e5cd5a
BLAKE2b-256 636e19075a713ae328f65dacf085cbb95b7f24efa0310211e0099087097c3981

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5234a95588ca3318cc21e77243c902d3a7b0bcb7c760ee50abe148d889a1641
MD5 be8ee8d4a6497aaac147b6329917a327
BLAKE2b-256 e9e7286f287c4b3e7612ea257a10b1facdb3bc01e4936f346edf9891afa5a340

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0701bf06d400aafd4a8651c1749930a706f95e8913a9702145e615d97fd9e303
MD5 3892f9afe94d83109ba8d651e4b9d94b
BLAKE2b-256 4d98b73b527dd770874ab8a0b95b13f0b2863432df7bac0ed553a99e3df09e14

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2a8852057e3a7a890104a6d0a74e1979d6c472ad79440a539f759ec4f7566ab
MD5 52f2707f2db9a4c37cb105dea2c0e7ef
BLAKE2b-256 77465dcd2e7959d9f5db67c5faf58bfa1063e4e8970114d463467c466639fbb5

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aed5c8fbff49f8df34abe96c1c6020048fcd680b6f67ed497e8f40fcd1db60b5
MD5 740260213accdfdc9ea54a698efa6256
BLAKE2b-256 8e5e22ce17f6202bd5c74bcb91ec14458c5f6d2901251db0217bcba92fb4a3ad

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b041f66262934c1ac96e9ce78c2303de7837089363745354f36e07c5744b48dc
MD5 250a3f6876517c304a55294da654759c
BLAKE2b-256 b207210d53e2a7eaf3788f1933282fbdf3daeecff926bea323a8896a3316c53c

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d1997286c394b39162ffed24e188e4d6478763e6981a8595fcc7e8d39215e21
MD5 e58c1389667370705e8d127458252d38
BLAKE2b-256 5e522754faeb2520312c4fc8cd2dff1c0e5ad107055ecac6ab204077de33ad60

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f398d8e145b581d5eb8c7b0a3f21d8a706269c780a624046f3e731ed5fc37a3
MD5 e8bff0b36290dc7d7cf79714380a5fbe
BLAKE2b-256 6ba57476c2f88e937c006ff741a3c4e9f4be1ee37fdcc96dd945ac865b203e73

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 5fee2824481260da5d71ddabc4ba7f9308809f6cfc454c2f53229344124fc5b0
MD5 0257a4f2539a2e9411a81d99ea8f7631
BLAKE2b-256 bf0a49b21f8c5a6f7f4d1744fad3d1559fd0a206fbeaffed238aa09dc52dcc03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4feefe138ab5d28fe502676074a0bac16eb11c2636dfa412173b0713348275fd
MD5 f24b36b6c049fffeb175790a7074e3af
BLAKE2b-256 a8930b79b663cc44ffc4c425511850ec5068a3e16ee97b3763b12b9476e86ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 382592c358b26899e17b85e6f306d54604a98b9c2561c35ae060dcc5427c91e3
MD5 ef973c2b883aacc262243d00151e6921
BLAKE2b-256 6761aec18e0cf226302f8bff87f7fdc0595440871e997178aa61398d0132acbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6feb302623abd72d58155c8d0a5e03ace97296d1bdb6f3bfc64efd9a87dd7ecb
MD5 14a262d47f007c91cf07b1b6d937a78e
BLAKE2b-256 cd76aead5c29acf682a0693ccc4e98140c61d8bdd45a861abef8a602ac99db1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a335770c08819ff691ded6159496ceccbd7be14522d059d9366e1e843ea520
MD5 b26684ad6a709354a7d02c87fc5d0a07
BLAKE2b-256 214873ec11c6d5a8b1d6cf28e5bfed4cfcda50b500003828c2710cb13dab782c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 328a0e2a63de03c49ed7de2825812e4ee9f22f530fe230d56ed13d96276d1721
MD5 cd042e09009d5d959e3874fef847fe35
BLAKE2b-256 2fd8ee7521c26ccdcc03b3dc765e1cc772a2361bd9414086d29c05fcbd4a370a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55f9bfa48cb41e3f22a34883c95f54cb653532f8f7b4f2ac2e7d06121129d333
MD5 850d18337a1da36e03d0c3f941bdf55e
BLAKE2b-256 f15b253bfada13eeac3912b6b5cda3ca742ed2e81fb2c9a554e322aea79684c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3b1a2a72ce61d7ac2ec165bc85784a871d3f3952c3da041dde5f70fee18af65
MD5 4993ca9597262b95b9087b4c62a46223
BLAKE2b-256 9ce672abe2332575d8766a36e7541197ae1490c21be5afbd13d10bd00597e55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df7e8d59cb36f0b4500bc577e34306638c831332c2b90748581cea3233c16536
MD5 71371e115149c252861999f4e2c7d1ae
BLAKE2b-256 44e75387a2741799c7264e44c08ee2e9d8f43b82982b9fa20f468fe885f7b0a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8adda28797ee3dbb60d890e62161587970292bc95e67a0e8fa055e30ca89dd74
MD5 eebafc15f842672e8cef4b8d650cbb71
BLAKE2b-256 969007d61f30ddca5cf0d591903d4f15704b31c3ef3ca0c93e9f7fdec3cd6710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c128c8a2ea0781480f9a7d6bffcb556d8fc960516262e9863177190c08fac6c4
MD5 754cfbb014585e10fee93f23ec633e77
BLAKE2b-256 6dd5b24a474cf2e95c7087174b4330ccf50cf2e7a03775603a5d6fe40ce669f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13eeafc461ef8e64a315e98f60e6cfe4c4c76670e171d91e2a8b24e56c72661c
MD5 bb8868bcbf76401801f578fc43b219cc
BLAKE2b-256 183d15ae049b9fcf51edcfa74d498d81eb1093e621f4db77dc1ab8f1624ad4f1

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faaec82040cff9fa7d3c81c6bd759d569cd3e3e48bce0f96e0d836e193d9aa24
MD5 20c9cdbbd095fe07f200fed8394d7e73
BLAKE2b-256 1b4a7b150eca8b93b65b1bf9bc9beff719b2ab7943687e222831cf64b1b2f8ca

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 12db14d75ee20712e7dd97a52f0deecd3bde2436c23d28e268d354e552cfd655
MD5 518773777320b787cc04d93a4feb5289
BLAKE2b-256 3f5272f454f5f5adcbf1aa50a7e2e0451627ef9aed066e5d31a608c510cc0539

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d50af9d201cf375dffc2843933025f1a77bdfb0ee7f4304d2a030ef76cd406a3
MD5 64139127894371e3e7df875f3f313748
BLAKE2b-256 9ffe49f4a6ede0beff61436a476a501b6e5520d48928da90ff9ed792b7132f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08fbf67d9e0968a67c08a301fff888b39c3a31ebdcce9e2e84d150e4a86f44a2
MD5 e65f97ff1571ed0ad5fa118257163382
BLAKE2b-256 8795f0c0ec6052923ae9cda664441c6468015274d67716e6975cd8705b0a1a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80c6c4d6e5b79a384e94f49e5dcb9610d7e43cc8bfde620393beed82df17f42a
MD5 edfbc7f2af944559605bd29a46603b5c
BLAKE2b-256 8b61fd975b21234458fabc3c7e8c28b78e9d3c5dbe02db5f38ac132732b21a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e74cb11bb043408106af821c2eca290d32d1c6529efd10614607a6badc03e370
MD5 7264ffa239c94567f6ade58ffe715722
BLAKE2b-256 c4c9a24dc1a2f3c9d957cce10361056847c8d66ffba10fe52fb29e6739dad696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 006130418b7a36370802437f86a26a6fd6d8127bb903a72ef8da4557b48d8819
MD5 10f55b0241d7963926b642196ee35572
BLAKE2b-256 20ad6a51f699997f3485d25fcb8d539b94e9e4b9390500cb8ac7ec4ac3740ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 369a3096b593ea2c5569fc9e5024c8b09c4906f47fee56bc0474e4dadf53d84d
MD5 ff2452424f3a69678f8e8e8484c21c13
BLAKE2b-256 b3c61add335224141bb15ca72c396d7f09b25914023d10ac451cf6ed387f3d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a65cd208d5c821ad0b466f9d2f4a9091459600d8aa4088efeb3479c2181f1a3
MD5 c066f984e0cc1c210f076577e4326362
BLAKE2b-256 25705ca9823454af2530616d215a2c567aad0236723cad03c59feb6727b172e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a33e05989d097db7a873ad327fc9d8aa9145fff3ed8182c5be96e58983e8a5aa
MD5 59c3dc4379f9c858b1455d7295effed9
BLAKE2b-256 9d978c42389e4e56445016334dc52348bc031024408794905ea582d58d3e68a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ca2a024b3d6fdc8306e1f177ddaa64db6b7ddecb30947dfea9991c04b598e664
MD5 4189c4230ae369457420d4b038883a7a
BLAKE2b-256 38de259c9bc7d29188dd9103c4997de79ea98a8053336d33632c5302c8da4376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1aaf037ef8ee4e3f14ac2615cd6b78bad6ef79d6ab277eb7d91bf37fe7d1477a
MD5 e481a3504920d3789e772653d0761c0b
BLAKE2b-256 439c442c1f6b592b93a05fc329224ac4de82f96b59a7fbbec9381891b87e41df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd9c39bb2dd5f732ba975e26d100372e3b99c27277102393ff65460d6d86335e
MD5 5b5f1c2ec2bef0caf4950c807d9dc591
BLAKE2b-256 f40cdabef03f5690b4a2bd0023e0b0c5f803dbceee41cf9e1c76e34c58b74094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2fb3be3dda3ae5200cdd34f031683a8954336270ca29e9582b662600e18edb0
MD5 ef2c34b59e187dcf75427d4f2c94cac8
BLAKE2b-256 fb5a6f597c2f613e6929346c732cad71cb9c8c2f05ca33ba181137d8fb9fa578

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e9da76bc76e42b23093fa4f9cb72f63ccb0b586703d5ba5e7a9cee32c9cab8e
MD5 994e1a7d3e466f04a8ba63b0653380b6
BLAKE2b-256 6716a375cc7f3e884c8d31538a9e4a14b391c57ab60bb9f8cf7412a1bd555960

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5be530840f2405822894c321c73daf779237390d9be72edec2420934a88801ce
MD5 7ef619feb1374b7caa996450e653826a
BLAKE2b-256 6d9e3159ac1b6446e23f92a845fc4600cd19c032efbbc3396d0b7b4d08375ee1

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 97999bbf913947218045b7897de2f78860a48831b8acff7a5432de3154e0ece2
MD5 66d0878becae2ae45427455e3f79e75b
BLAKE2b-256 5a65d69280b7f2b00e295208cd974431ba582d4bae9755cae9a775aeb3a3b18f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67b04b510eafc1547407b2d81c136bd6b93851a50992cedc54aa828419ad077a
MD5 751eb0ed0d17241b12ef98b38ef2f1ab
BLAKE2b-256 ec712bc3ce6c17f4b0c499c889ee91e1350313c47fc51cc1f25bd0ca31222a02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c95221cdcf8ea4f18c8873f2aaac161fbd97f843402c5ac38ebb2174c1427ac
MD5 aae60b8b609b71b03ef4f5c5682ce9fe
BLAKE2b-256 80a5aa5f7bca5e7277cf116730b271910483059998f618816aadb019d206ff1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdc2020be2ec9c2185cf63740e959d269717e7d621e4613a0cd95eb82a6d211c
MD5 7aa93f68c785768ff6d793f79b996062
BLAKE2b-256 349409b4250bf837306bd7ebdf5a286a8e2b01865ae33a478287592d0679105d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aeef80b3ff3efbe98be650fc8474e2f55a50f79f0594d4a954f37e59a2290c2
MD5 d1239d37158965382a0619cb390e30aa
BLAKE2b-256 2b11ad1c25cb5b2f811352421a86a7b13cb74dec7dfdd74de011bb061643bbc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c67f49ff0886d08dd231b24f0c69607fb07ba23bd2b1d7ae565ecf57986a91ae
MD5 b165741b239c9a3e4d39b81d67e070c7
BLAKE2b-256 d3321b9ad0fa1ade0295a82547ef2f7b6431ff944758bd9574636abf23e11492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34527a8a67e49ad5d937842c173b857ef63c0e447cf80be5d15741aa9336ad45
MD5 1af8cc1ba76ad3c9bf89a573a12ba1dc
BLAKE2b-256 503c158166cf36143e7ccff1aeb873eaa9891941e9fe77f945c8af8213cac0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01706265359146ea1efc1eba58c6d573c9eca75be6d7c14663c3b5b271bb39da
MD5 0140866db31d0589dbe50df14f41fa05
BLAKE2b-256 f9f01145db748324e2f189204074b37d933a3597544325b76934e11e6982d563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fde1c93bda74568ba958fae83dac1870af3fe3f6e8b59e9270f49a3b53b07214
MD5 6ea28aed7b727b94e6e1dfde554ecc74
BLAKE2b-256 a69fb5bdb096fc85f8f09698ce6c1ea7e8ca28c24a29bf4b6cbb893e017a95e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42706bd74aa15dd4acc08022690782c29300a5b4743e294299abd62d9c94faf7
MD5 cc43bb9be98db9d04d64fb8058c7734e
BLAKE2b-256 692e7d2e661a34be0fb50694499a198893b1c1444f97063eaadbea4208c4a8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 946f15644e8ebacc5269f0bee8130f157b8996fb79558c533ffa084a0e5906a2
MD5 6360efc03591d5fe5da5c4672f89c4fc
BLAKE2b-256 711c600b2f0fb13ed86df5a7bf9756e64f4c38de919a07ad3d5e0185f00dfa2a

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af3ee558ef583fcdf1cdcea668263c766ad11e173c3498eafcb59c52113ce21b
MD5 c0c0730c5c6991b8efa19770940ac329
BLAKE2b-256 abb715885e5e194f004915ac0ad7b80cc6637bf15e54367f2d0c389645129a32

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 19403fcaa75d54fbe4a007cb4db086edbded146249590485529f1ede19236fed
MD5 9c1f55c6fd5439ce7c465207615e843f
BLAKE2b-256 7a8330e3df762009bfbc673ab408321097727cde100ddd106e875bb2d872e1db

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp39-none-win32.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b248573c93c38f8d5be19078672ae43ca51d8639c350bbe6a0f5bdfcef5c7b56
MD5 0dc99a50e75353a940485df2e5335113
BLAKE2b-256 36802a3ef2bed2393a3eb53e2308c8f629007c3482a1dd31944b36f18c5ebad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe668c583c27399eba3512d22a372b0c805e988503a8d99ed5cc16f1111ac918
MD5 5815e4b47de8ab1e1b6efadcd685cf2d
BLAKE2b-256 4e85abb7f2c79dee40fbf3b5da16bd320f8acf3ff498ab02dedcbb37734e9678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbbb357c942fec7fd608af09ad08f44fd3a50269ada16dd279c3a3690cc2f1d0
MD5 1ef22b9b601e4f89e180dae3fd9329bd
BLAKE2b-256 3e7de14a577090d73ade3584f2f42de31a461e9241d9ec83233a4aa0b5fb3acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0daa22050f03daecb125725cb5041ac0d4ab6fbebef95b9045a324de54e9c891
MD5 e94f331b2afbcfff0c3dfc12c161f01f
BLAKE2b-256 81b8b975161a756771c270b06ab7260cdf618a03e30bb9ff9b5a3e3d6d718424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22b500c2075333948bbd4c9de4959815e0bd7af12abd58d0fd915f6e7177ff8c
MD5 7fea89ac0331e3f087b246dbd70a9e56
BLAKE2b-256 0d0071aab9c6065bcb3088a2a442d102586718b88154950d874c38983658950f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9790d97e9be844afac105e168aaec74429db1b9278b68ab5a93e3c13c43add29
MD5 d45cc31830b169deb77ecce38497be0e
BLAKE2b-256 004cc68bbc36a5fe02497d2e2912fcda7b60adba19bf193c691505f18d502bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 170fd5b6586444a1bf59cc2a5ed157387642629a055ffdd3a6fa8ea7fcadd607
MD5 314c857b71dd72f74edebb986bfc213d
BLAKE2b-256 f5f1f6b20b27574e20ffa8f0cbb4ea9b009ec4ff1b9b3024851c56288b116356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc194c185bd19d55b62bd56e9f74d34c8fde9041c316c166affb2a29712e5202
MD5 bea8742ffc76b12de31ad6a65f1ac4a6
BLAKE2b-256 ca4ee5fdadf1a689f6916130165ba621c40a42c6023ed356baf2c92190d4c46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7acc1250da0afcbe732e24013743bf4853d4944d205b14b438f25b7bd1169854
MD5 4fb0ca9549deda6f6c6cdad03edb7ee1
BLAKE2b-256 419a981d55b3029240f4bcc334cc273726c05377230892fa411c979add51e3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1202940fe882731f853d4a52c853f6d69ed2aedc728ecb32661dece897cda9a
MD5 cfa591e1117ab2ca3f764dfe50ae24d1
BLAKE2b-256 58ad19e92ffe8f0a9e7c60dd77a4bac6d24e43277dc98e02e1bac8d00cd73fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 954b801e84f9cbce56b72f8663c7a613ada5cdee197421f6c06d8c157a17a352
MD5 1b0fd85508dbfef8afe956b06468b4ab
BLAKE2b-256 5a6b28d75573151f2b7084ace6fce7d7ef589c2574fb1533ec8545f21debf712

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 302fd01ed59e98b732af9ed9627473ea7bd476d9323c1cb32e00ab95e7363cfb
MD5 8bd7339d297a01d556d7461a120153fc
BLAKE2b-256 97113090c7427b09da3ec741378e1a1f7a501a4b1242fff85e97edc0cf567175

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ff49b3abe509c9db42d365a01095084c1cbcfa15c360bd4bb9e9234bedc1f0db
MD5 179fcd18a75f1b1ea6b3077d23ca93b2
BLAKE2b-256 f7b057e8cf55a3f758194c253e8d6ca155caa3157acd4f52a265b7337f082f92

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.1-cp38-none-win32.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 ce172708b7c75c0b95d6c34bc0911a5a1543386ac812b1116c8aa007ff6975cf
MD5 0e1fbd08722b78c02c952b8e3e841c97
BLAKE2b-256 c67deeb813c919427ff3f7bca35b5aff8d690fa915bd2fc88f9b716e3cf1c0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d86627c67e5ec90274ff129471ec5ead80b2809adb552964aef547517f024f4
MD5 814981787b385d9806cd1ea3be044f5b
BLAKE2b-256 6df94bf57cd28598d7b0b9c593d1b62651923238261c6e89fc38137815b8e248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1cd1ccadaa277e63c85dc61a68e605a8628cf62f19cfc6967c65be3e59914089
MD5 55d82c98f429824245d8969de7cb1ccb
BLAKE2b-256 004a855d0e9701ad2362851bb909d7cd34b7b424fb40b9c587773c45b07d6af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae4100c5ebb6cef7c14c7e60a40394bdef670a843091e9690688d5377ab11453
MD5 9be5a582be644bed3d52a9785cfc0cae
BLAKE2b-256 29157c5ddd70924a19f051a6c64c90336b51e1f07ae246b5ae7f74173db7555d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beaf203b6e47de47202364f531e91c308a97b7f05a81f453776a374132b75c00
MD5 3086fe47913275a1262158cddb13d090
BLAKE2b-256 b96b24246c5bc14d1350001d9f39ca64ce45a9424ca477b1a4d14cc876e92cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 907505bb0a58c72cfbcae44f501274ea7e824eb8a9bc9e9e5cce312717bb7486
MD5 9cb30edceb435a024a5b692902aea6cb
BLAKE2b-256 29fed4335765936ed2a535ad14b4d63370476ec9907478ec2b9f09e9d08494a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7bcf1d7c0c1a26a05d42b35d37472a18d504eca64b04e86deacb28da9c146bb4
MD5 e92548cb6bcec9ddf5d7ed5fe267bf44
BLAKE2b-256 c90c5d3d45dfd54a6c0a87bd25dde1a9c5b8a0bc7342b4eb8f126c0c4ada2c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 327332d3593c59e945ad6c093cdea6449eee02ba0c5d46250b5b89667926fd3f
MD5 38077770effb485cef7751a8964b1019
BLAKE2b-256 fa2fe34503f66507dd72b7c4609f2d14c429a5ed5afb848d638d9ccb4b6a875a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59e14e2819eceb61f7521a141dcf143c9846117c1ec24e69b7729f44547a790c
MD5 53d4a8d09bf3bddf337056ffc643154d
BLAKE2b-256 fe3294085a66c283e7bc6ea117ebfe959bad0faee1a6d932d05d6ef7709d51bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ee06d6b544a2a25ef448fcaf6f8c90d76bc4ea40a90360d618965daea7014f6
MD5 a7fcb298d77a36f781ef38d575aaebbe
BLAKE2b-256 39d9fde8dcf07675dd4b4874e24950b5537e19b4ed649bc9e83b58ccad0ea78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2df219b3dce0919b9152525bb68437d4307e6a00a03832b0af282559a0bbdb2a
MD5 7a632d167206006802cd3d852da29d07
BLAKE2b-256 646569119307f349a204a02014aabaaee5dd67a32ab3a7a0acfeb543d3e9a0dd

See more details on using hashes here.

Supported by

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