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)

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

Uploaded Source

Built Distributions

bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (826.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_i686.whl (856.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (925.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (837.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (772.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (712.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (662.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (659.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (700.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (829.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_i686.whl (857.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (926.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (838.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (774.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (663.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (701.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (828.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_i686.whl (857.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (926.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (838.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (773.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (663.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp312-none-win_amd64.whl (493.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.1.14-cp312-none-win32.whl (463.6 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl (832.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_i686.whl (863.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_armv7l.whl (926.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl (840.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (662.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (771.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (663.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (662.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (708.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-cp312-cp312-macosx_11_0_arm64.whl (587.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl (603.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.1.14-cp311-none-win_amd64.whl (485.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.14-cp311-none-win32.whl (456.2 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl (824.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_i686.whl (854.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_armv7l.whl (923.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl (835.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (654.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (757.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (660.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (698.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-cp311-cp311-macosx_11_0_arm64.whl (580.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl (597.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.14-cp310-none-win_amd64.whl (485.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.1.14-cp310-none-win32.whl (456.1 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl (825.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_i686.whl (854.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_armv7l.whl (923.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl (835.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (660.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (699.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-cp310-cp310-macosx_11_0_arm64.whl (580.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.14-cp39-none-win_amd64.whl (485.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.1.14-cp39-none-win32.whl (456.7 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_x86_64.whl (825.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_i686.whl (855.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_armv7l.whl (923.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_aarch64.whl (836.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (661.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (699.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.14-cp39-cp39-macosx_11_0_arm64.whl (581.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.14-cp38-none-win_amd64.whl (485.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.1.14-cp38-none-win32.whl (456.8 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_x86_64.whl (826.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_i686.whl (855.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_armv7l.whl (923.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_aarch64.whl (836.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (660.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (699.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.1.14.tar.gz
Algorithm Hash digest
SHA256 30bd76bc450292349434b934865813d9c4a5824ae3130739d87006387f5e87cf
MD5 8689d3cc20286cad746b2691c37e96a3
BLAKE2b-256 49bc0aefcf913ced34adf23373714b2a5841991d16ea3fce3cad51af4e10643c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1ef1663015e3511604f2696493d9ff3569e0c2203f6dacd660cf081b23e7066
MD5 02ae9dc3b595044ae7750f7f4286c9c2
BLAKE2b-256 a5c26cf343bddcf8e6458b17d8778de88eb5e902fe81c6a45d962c929cabc62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b110380b844730a31d8f2db895815c8c094760ce9e2be5a68c0f45c8159f9899
MD5 8ffb856c3b45e17e56860d715d5fe5cf
BLAKE2b-256 c266ceb5adf67872e0272da451c10cd3d56d2eb6056bd941dd9e68f2ea035671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c00fefad26f1c3e59e2731535bb646a078fc2d847800f94368527fd878596425
MD5 770396121e93c91d2420200aafbea472
BLAKE2b-256 5b4891b059a2dff8caa877496c58e5a3b68733ae7de73d12ef3ceea7d31b1b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 982e4d2399128b52ea8abcd79dfc8ba8bc52eb212c185d39cdd9b106fe83c838
MD5 42a0e63cc48a0ca5b125c106ace3578d
BLAKE2b-256 94f1aedf4b595115a3aa0a4dc2becf9f798846a9b1b469d778a830533781371d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea3cfe4e49a31ce567d3a490c5274290490cca72fe0c4c6f3537af76d22a151c
MD5 5d5a918aecf7432be01502f75f1312eb
BLAKE2b-256 0d68af9f38ef150e0d6ef66b31960377ac947b0c5b50104ca42c1c0dddbe5b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 375b2d99dd3915950377143ed8da5e942806117212d9a4dafb3f2e20e280b091
MD5 e9f85879af5547395839865b9f6d1a0a
BLAKE2b-256 ae39e64b47e2b29cff691f6ccf2856c5a7303a1344167eda2128f1b8ab282909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a2fda4ed8fb063c52ad73fd0faf70abc1fcd3712c56734d35f75a0b41f7540c
MD5 85988167309a97c5c117294f18bfff64
BLAKE2b-256 071dd2531f77e648afceb38626aee412ea2751aba3650dfdb2cac772a2d58433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 639e31a76d0425aed65b81152bee875f5c459b847cfbda46349ccdd5cfcef829
MD5 9cad99961772b840cf8562decff5ff0e
BLAKE2b-256 be945db7a846769e3ff04d908032005c826932a6055088389bc0c012d347e4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8973e6804a2eabe31b5b0e4dc2bec0d9f65b9ec72ac95c8f2fdb279a5c5c8767
MD5 af97c93055c7d3009465884d5b9f4188
BLAKE2b-256 991cc272f3377c36f23ec5049e37d2f7248a75d6b660a4a5e272b4dd70102c60

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e662aec074a6e75a7edb07c9fb39d2f6564608cae1b8ac97600d0edc051226cd
MD5 358fef2ff035e5eacd3ef6509e0dac19
BLAKE2b-256 85b523ad8e1fc4aa0a991e0249ceb3b41e5ea963ba419e0e59b779ea3573d06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0da845d02aacfc9927d3f7d5668c746a6421f0854599f912099d772cea10cf6f
MD5 b39e4cc485e8e0af5f5149fddd4761b3
BLAKE2b-256 2cd581137584bd3f6632deaf553cc4a0485a0c6376b5e7140d2279a1c5c4429d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6bafae18c142e202ffc0ee9d65a2d99b8fe6c4187930e6d2f31240122af14a5
MD5 54d34f8380ca3e9ed5accef04117d2de
BLAKE2b-256 da6b60b5de7193137085c74b090095ff472629ab8352db4ca1c19ffc9f756214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e29360f25aef77fb58ad289ddb81d9b94f0a7a8b6b55dfb4c7bab4aa32272878
MD5 c2cf2ad9263e7844d3297f0ecd2f2d1d
BLAKE2b-256 63f333fbbc11230fccc0d7fcd62616f4fe5cebab6510c1eadb88b8521c45574d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3ba94f55d6e3235a37cd4a3ff1a51085286087f5b6f82e89d17e58f5d77b4fb
MD5 65c3f445215d953c62f92c78ceb65500
BLAKE2b-256 541fea59ab4b0b46af2588133285fc7bc2472f137fe621fcfa490e6cd46d6548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d589d589c719927f1504b302e2da1a49ec6e7685f684e92a17faa8e3847863ee
MD5 b02fecf9a60d31615124528137c2f3eb
BLAKE2b-256 f2084cbc8f954bebe03fd060479e95953a6b682205a870a3dd1b8e54616b036b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4796baa47f6a30a3f82e597c9536a90788265c037417e7f685efc1e1d928235
MD5 f7e6c7dd8cab5b29a13eb74c22703657
BLAKE2b-256 1ab62e02aa2abd264eef3ed15d164a4c39cf2ef9d6635befa7cd4d5ca2eaf4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21c14e75fc2dc4fb2755cb8a5b4a2677f03daa604ade5ddd2d56f744fd45be00
MD5 ece3c654836d84be9d59e4cb1e920b0f
BLAKE2b-256 aadcf903229d6bc8c5d1fa0d2d8a90af0e2498bedeb06f88b242e4724edbd1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87b24288df7566af4c1a3ec7d61866f39a932df265c8d6da846161b175be1260
MD5 1df8f9e8d22176953d0817cca4d25350
BLAKE2b-256 b6557227de2cffc69cc62cedb69e5ed210bdf10b93bf9d2f960bd8d961ac2091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79afb7bf7ea6dccfb7720d3dea740281336c286448684beb235c28b6579028b8
MD5 9cb2c7cc693af8b502ae54bd8e4ead35
BLAKE2b-256 9bfa25c202b1c1c09ae9f4b82ae7168c379ccaadcfcfe6c6a10e813aa840c07f

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 378418649718e69866321f65f0d17c5f49273ed136f18a15edbd7bfbf285c4fe
MD5 dfd9575f4777e361066e65fc7e6a9b66
BLAKE2b-256 1badf9f4be19a36fa31f6aa2c99cc07265a2f6582cd2c447fea970a0a8704256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dca06e0d6b0dce977fdaaf629810354e3b11fb9afcfe4fe4b8f003d0b9ccf8ae
MD5 85747209f226e92515a590ea86f58117
BLAKE2b-256 d8c0a1356bbce505612d29a81c0ef75d767803d38a1f0dff45415da11eb0ad73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04be2b8ebfbd109754b6c53a44a30514bef756faff5af3e2464eb59d5a847a09
MD5 52c90755d31e27528a045e2b652dc847
BLAKE2b-256 08f721f822cb7b8c4948f5630e910c16a4e10dc76a366b4e1a5203f3319a3d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16f5aab8657c604089b3d7161d3efd9995502632fc6250bc2d0e816c1b2fd228
MD5 180f3de32b33c94e76c15c824c70bc39
BLAKE2b-256 0a200f57484d62572b5a824c6e291c5a7c3f1e8ec6a1a6d7e79700a0e6c77903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2eac22c80d53388aa42528bb04a1fe210f9b6a18f3298ce9a584f234a9b95e61
MD5 e372c9bd9bd950e9f285dd74106f7595
BLAKE2b-256 3a441f898e9d4a15b4fdfd26fc520791b2d72710a28c44b39a00c1d9c188bf47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf7d585e8ea7915f84aa2f3c08466aa6a6771d5222c4211cff923cb459ccb315
MD5 0b907b950dabd29d557199c779a78b50
BLAKE2b-256 80569bacf0c66a46564e41f89eefbb43d72035bfc0fbba6fa9dafdb293f0a54d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c64e859c7e30bf36bd56df7346c43df349675b10ba6b9ae1ea57569318508d9
MD5 0984f496d5394abd3804e489cebf36a4
BLAKE2b-256 05b5dbbde88c9c866178385a1ce193bf5e93a3d1558bd25bd5de7cb571d02986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa4b5cf4392940a59ca3e86cf0f24b26571f6c10043e59f6e076d5356a4c674f
MD5 a34c57240e93d41d14c9290cef89bd32
BLAKE2b-256 a3ad753507d4e06e10a05739e9da0c22dff6eb848c7f73d71f066f32885740f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3569515c45000e8e2857bfc0767f43d7eaf0eae5be1d46a7fd3aef5554c2acb
MD5 9d9b9f64d168c6af28b942136278145b
BLAKE2b-256 c033426b9c4af0533f2803ff39bb161f4c1d8bedef3e6ca26361cced0d00208d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ad682ab7885220d087a7b85a8e8d686af8b710a790238bd13ad3c172cc78afd7
MD5 2090535b1167c485d1dc8902c8e854ae
BLAKE2b-256 84a8de1fe8bd3c1923585be0f2c3a6f34d73d91455812485e66540f3ee791e63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-none-win32.whl
Algorithm Hash digest
SHA256 649791ef28341ffc7b06cb0bf2106c3fa702328f654bf2163eadbe05d1fa8a43
MD5 af76fc72de7e26b87d15e2f4cd7b4198
BLAKE2b-256 f756844ce35d715ab18443b8c05b19bde8b2167536f84ff7c2b25e785f4ab640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b182fdf5411c99379c26b2f75d9107abc898f5e724629fe43f8ec8c0a7a6fe01
MD5 fee7d27a31edf9d79f5ed7c24cd81cc9
BLAKE2b-256 9b034e6871530532741f052eb8f8f726e3eee865c88ab9531fea9d5d1d967fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aee80d83d0fd98ccf2cde1cd8c377001c312ae68a215a1999fe6ee3ebc9605b6
MD5 543420a5b50267120dea4b25cafec2a8
BLAKE2b-256 b627899e7f6397d9c966555a7455161b431537286b1351566c9b85645e23ed0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e60b78ca86797118b02c6b100e4b4128cc0edc5a08c01433e4a355458e3bfa68
MD5 6d195e48e9c2aca343ea42296a359542
BLAKE2b-256 941458d25dbf959fe08bea23464a8aee5440b1e8e3a8b2f1001802f60680b9ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c60801263e41dc252169b76fddcd98101e92e5e02dd79bd03abaa3c6f72a3c41
MD5 0b036b9ed98d08c52686a371d74fd679
BLAKE2b-256 1fc13f55cfa383f92b4b083aa29c3d32060d9603b8627b6cfd01e674400eb098

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ee6f444d235624150efb06b6d85ac4a227d06b85778045108a31aa4e60c159d
MD5 4ccdf0f13486bd959d2663156e88fdad
BLAKE2b-256 40bbb65a671c3f7967f03fab70a6d4901c3d401ec127b923917b16075d60e885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3fb5f1f49d27f730cf24a673a46e9be4c6f4f1b876aff8c8834844c4f068df5
MD5 0a338839a52cf9385abb226ee192de0c
BLAKE2b-256 d446b6f53617fd54ca4bdbc4006189acce4392b1d06decffb30b24359597ac9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0163117f70b106e7807ebf16f12d0ef05c985d3f3e778648e248bfc24c2b39c3
MD5 e53c2cb9b649196b7cefad742dd00484
BLAKE2b-256 f8045d0523b5fec4857f5f44436357321330e808a73a6e9d8736ac6cb35e9a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad9be8fee43b5a6405dbefd9b87b9d5a588bc6cf35afa2821a91e5251b3e15f2
MD5 621a9c201ca4ab124308e04fa5b7ba06
BLAKE2b-256 1a753957dade5ce2f4b639158f0fc767ffc4688658c0a5baf5ea7009d0a86653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f44d8c54b27198cc9d27158d62da6ca86ad2fff2d1a580775e4da1576ec4659
MD5 8c2b27cdd66ad3a4e25ff2b727e67e22
BLAKE2b-256 dd5bf36d21e6329a7d7038168c955303184a4103fe94823d5fa9b57c06ba92c2

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 748b28cb1c60ee01f46304e3a1a15039917d5b06345f47c73784a0501e5b9731
MD5 672ca772c7c37fbbf94976516804586a
BLAKE2b-256 59c15a24192e12f29d2bc1fdc868ba461299398fc42c381f3111810ebb8b5cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cea795e6fdb214bf7c824940acb5deea2d6f9b39b6bc80dbfc82ae9e6da8127
MD5 b8f513676f514c352c9a3aa830e744e4
BLAKE2b-256 0235a5ae15a65394c2e0ff17fc1fd883edcb008ece78d05b04ebe73100337957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa52d173d835a8ebb16de9dc9ba68ba13b797a48385535e5bd49865f02050cd0
MD5 d73d2e22c28275aace411c11e1cdb51b
BLAKE2b-256 8d71d3d8ccc5294e7439ddeb1326bb9f235daf67a553b9bdcbfd11f056b55e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 94673ea3375a1e9aa02603e2c99febad4dc5b78dee4d2facbc9028f2f6c9b6fa
MD5 cb9106a6656acc6ff1f85c4cbf9ba27a
BLAKE2b-256 34954cc0317a54e2898cadc8a4550db42fde7c31f27672be6fc0253daa04c3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-none-win32.whl
Algorithm Hash digest
SHA256 14218de5817788d8d9fc0791fb5a0fc2b376bd5f27296bfa23e0c706c7ba7df6
MD5 f5253ee29b923e0a08ab2b92f05247d2
BLAKE2b-256 b8bdb8538b4d7db7f6772097342ae6c59fde4b79e8813e5b6ee249785d0fd637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a187ef0830bee125e125ad713956b6b710b2aff6b4f38763888a776ffa0152a
MD5 0e2d0664fc77fabb3ba37bedf670a5a0
BLAKE2b-256 ee047ef64c2cd32a3518b217e6bd08cb78eca10f21220787ec7e658c66fad134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6b618ebb50b4c65145c30fda53e3e54f0e8411ec888831d0b57743b7c9ea8c97
MD5 a575191bd07179fd1e4492f1db742be6
BLAKE2b-256 9f1f2fd217cee0bf082afbde27ad3859ffc0e8443f2b252924b5fccef9c97cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07530cb3e02901553e85fa30739fe1531f58c83b5ad2184c060da0ddd5c480d9
MD5 cdbf302526610643c14b3958bc33c00f
BLAKE2b-256 9b2cc031b8cc38c165e29c17002dd2757adaf8aced460c968a336a641c9d17d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fabf4dede431d9dcc2034f997f9a2520b7337d9651737fbd590fb0854260baf9
MD5 fa67b009abf557c7711c7032c880c705
BLAKE2b-256 94fe006e217b365ca6ca9de9d8e7f3eeb8a39615b432d764b05f4640fe483acc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab2a264689d267c044fc6d8e16f71e7d23186b589b2e8874a170b38c5ca2af6c
MD5 5219423b45b56fcd6beaa5fb5049538a
BLAKE2b-256 9d265ee88c573b583dbbf5a6f6486e76dcb5014758ddca47731455c0f72d87d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc9f889d18a768e08e99b3a8cbaae1ace706b5e90492873cc3686c54b3f47522
MD5 79564e49555371bd282bb467ab311da3
BLAKE2b-256 e84df30a53c09ef0e856659a339b8302e6b59eedad907c669744c168a35b0578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3fd25e3b324ff349640365fcdf9084aed68a8b6b7b16f70081d80aaab859ef66
MD5 92ce446e9db74e3009cab5a75fe70183
BLAKE2b-256 707d393404fce07ab8cf927d3e5e400dec3c8b64b339c7285c4ce12f73788acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d73a35297954ffa861868f03ca6177e5ef692d86c8bdd031194642a4e5b0764c
MD5 22b863c916ba9055c60446f8a56b1cec
BLAKE2b-256 cb79be4fb13fdb83336815e8504f7d342c17282426453b4d46d8239ecfe99a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 447f02c48ab74951caf2212f8d59236fd8811a8300338a58bfc0c1d5b013ae7c
MD5 81849dea3db542655cfa8e0c06eaa33f
BLAKE2b-256 b0cd6ecd35d932b63bdfd000a7358a46997d4cefe4dc782ef3916ff74d8725d3

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 102341541bd24074e1c1bf57bcf8055322f9e2f8daf6295fe2991a5096fb2fcc
MD5 eedd4b8dddc9bd999b54be5fa6ffa319
BLAKE2b-256 9d1aae4567abd528db3f829b695d1bd6a04b7058f3db9cccb94687ba721e3144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 022489a0fb8ce31a889ddb41c58c59f0efc1b23a3943245bf952dad23e3243a2
MD5 f064176d3473985a4a5b864077a29768
BLAKE2b-256 cf38bc1e0ab113fdc8c687b783837531e6afde16bf41103057e7c280dd9c939b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61cce8756e3b10da7824742fdb44df4aac67b93e2374eff57b5822a5dc43a8eb
MD5 beadb4a0fbc83eceb30bf53c8d08b450
BLAKE2b-256 f59fcab7835278d18609903e4b5355698f0988993dc4876144e14b34cc1ec315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 395cf73130ab43da7011e37c8426fb66ee0caabc16f7a5d2f894ef9619692974
MD5 c201f3870e98abed2e21a1f0bbc285d7
BLAKE2b-256 f0ebf934311002bcab86359489889091c8bcb6d025f1eda44924394c7f584b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1b2b70facbae4f1d85acf2251e14bf644c14197c0326a3dcc6ed1ecfd7ac73bc
MD5 cd7473091ea25b2afb01bd57db0bc7f2
BLAKE2b-256 906443586e4d7870b65e62d7657a57598c5346ffb08cc92e2618904c9079c482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b876ca4238d6d630beaaa0899d238aa712f68d9c5e9ee824d23f97a22d00f904
MD5 7b67753f7643765ce63bff532ee949da
BLAKE2b-256 c3eb0828b0be84705a352ac40a4b4063da8eee2af138234eb0ab515c03461d4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e44923f10f64acebc25e30240243e60e50f3a099b103c4fdaf2d90b4869cadb
MD5 5cc10f076889f2fa50b150b735b8c342
BLAKE2b-256 2dcaa9576a524f4f1b745b1bcc05c274b7c8e0dcbb24acf95e0a9fabfd018437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b31fbd80d7800558a3990ce13f551e0b7bfded33e1782f53a3513f742dfba754
MD5 6ff10f5baebece646dc5c02b9066af23
BLAKE2b-256 453f412b21713bc5d41465b08885e1b5732ab08cf22c746ae33145b87b905be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 307e18697100bcc661294a820f3ce5110a8636776151ac51617bcfff2cfcf713
MD5 14b81d380d4edadcc49d40de8637703d
BLAKE2b-256 f723c1648821c9cfc89d29c0b5be5d3c07dc62779df70cd2cddd6ce19ff252bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0427672fddb69311bb14ec34bf0a6b1c792ec1491889502ceebd902aa8bceca
MD5 bebd1578e398265bf6cfab29e89870c6
BLAKE2b-256 32ac1ac0c4d28573441ff349d35e797a85505992331b0e2da08f73a4e84bf4ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 37720bc40cd26593d31f53f79db9042534a596e8d861d483ab3ad1e88903080e
MD5 691a755483a1c391cdacb6bbc3f3a021
BLAKE2b-256 edb4d9eda1450e4c9e25860997dde75d99e8dd30fcec5d2747102ac22df422ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 440b509a5aabb3398123abbf50558d5b8dbf05a8f15574b1f9104c09057ede39
MD5 f9fa9f2b05a12b7c8913e093e5039d78
BLAKE2b-256 7b1f8f00ac0360f43da1b962fd697e7519b9eff6b5759b3db45bba1536541133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff68d65589a5c028cb0ef83479b263f59463f027eafd50e5b9127170aa2a6b2a
MD5 42b0c262bbb3120514a0aeae5cf9ac2a
BLAKE2b-256 650da75e8929da81c3debebfb2a201a9fb52bc8ee3dfe530ee514fd09be75b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4886f2a71ff672235c6856373c45ebe1eb4c25b037ff1676168de0290b3d8eaa
MD5 2c68ed6c63bd7b1c7ab164e1b693d093
BLAKE2b-256 e5247de2202542a84fe806d4eec46df53df1d266705e026a1996abf05167a332

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1aa83fc220cda0b78c43cd941dcb00b9fea8fc9d83b2f1d689170a82f77a034
MD5 1c605fd5cb2599c9fe375fd27b84a3dc
BLAKE2b-256 5fc018e703a3b3c620334419e03cc0fcf82870fd22f5f063e5267a14bc646eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2364722cce5d27afada8ba0ffae5a022e0df2a73f8393ee8d58914f5a6b1694d
MD5 a44fea053b85b3c1269f815da00303e3
BLAKE2b-256 8b0ac96744aeb651436f2a9510060bbdc800b71d0433535705868799ecefe5e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 abfae8a101031f37b5b04a0334b36ce092c02c9c0635e574c836297fe10eb206
MD5 8c54e3a1b0e666d8f1d9a4b1c3877726
BLAKE2b-256 6d53ee94de4c8bee3ff57496f85a8228cb0b537d45fe5bb29e5e56dfdea662a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5f5a2811ecda82cb114ba6589f0155f1e93773ee63e8a0e8488c6c56989494b4
MD5 474a7753907681fbcf5e628b8bd7afe2
BLAKE2b-256 46e358494445e60136533d8b40daea45d57c0a3577c5c7e8a7ac6b5bf5c0b9bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c398214bb98b1edb8f79899d84e86d73c69be7b2bfd3bf95c76cdbda32ffcd3
MD5 8aa205c0066f1ce627e152170887c0fb
BLAKE2b-256 a78a1e2dc4794492ff7fc22385198499af227c59f2cd932fa5b20e7634437fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30b34bb08d5bd76bf4911173ec8cd26d94c1851fa90483151442603c498af252
MD5 0340bd36f065c9b50bf5714dc8997da8
BLAKE2b-256 6a8e160b84127e27d440ae0294d983782feed79c90afb8cdab66b64726cbc469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 84bcd00c3f4de8476e11c04469c5c0663b184afb3859dc408ae2717dfa847836
MD5 ea12e205d51ca6c33edf462819f77494
BLAKE2b-256 d63d3e680d959ad9de95791bf7986c462fe68a8f63cf6f3572d6416a51de166a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59065aeea099ee74fc409cfc004d3d14346d9bfc59636e77422f82033fb26bf0
MD5 7f0cb3c74919cfaaa76b92f035a3bc4c
BLAKE2b-256 c99ea3fa3b479ed74478438d78d2fce0df5a4ba9c0bb12d2cbdc9148a5ef866c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 183a5269ce6922bd9134098e8e68208bbb3abf3af8938d6d60a84544ce6b4dc7
MD5 26489ead2abbee2b1b3507192120d56b
BLAKE2b-256 64d825c7d2e0701bb657bc6e3f0d009ee16300afb1ae01fe6d41097dd9b9ca7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7f30a9f9891d511809ce1a9f4a53d458a1bacc655b4d30cb925066baf20f1a7
MD5 c1813fbb4dada5e862fdbae3b6506272
BLAKE2b-256 3094414bd0580a456b828c4a10d897360b0ad9b177e1cc75de34919ed5839e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbae2da4043143ab8342beaaa4671f9c215bd527654c2cc9f111d3b551fc6390
MD5 324a0a56febca793cb1b718f20003b41
BLAKE2b-256 a85cf1b9e0b52dbc272c2894ac6ceb843fb7cd555efcd2e50d06b384c58e8aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eff9a2fc78ee5d52f818580348ef49023ccdf2648e8d12806a4b07f584c5c7f3
MD5 38b05b6077e20699712acd95c8a0e0b6
BLAKE2b-256 89963c87e68169651aca69fa560ec9bb04e3498e47664fc2a4aa69987ff3b5f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08ce56cca5c429dca16d06f3cabd469cafee22e9158b09909ae281221f1e30e2
MD5 28e14d2fb6a161e562999afdf2c5388c
BLAKE2b-256 6380f1e91e6675d577faaf5dd713a020499548181e6553e1df813f7d86653807

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 afd4159e61435ea426599acb1c16b4a9d42b861fa4e427ff6b44ad1b92f07fbb
MD5 5c5f817db8b45df06ec228c4d4e65ac6
BLAKE2b-256 368a5e4d4c6f4355b670b55a8b51ae8ff496ff8936a901574b3ff4648371fc5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90c1233a8063210bce6ed2c2513ad8059d4ac7a20bbc98e5b727b3b8eac5b5dd
MD5 5965e7c930001b7287fb8fdc40e38c46
BLAKE2b-256 09f233e79baf045d4e32b99e49642294746b71d337be2903e024a50c5a2fae81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0fe10769738ee1aaf817598a6ecfdc00120b96d8912bd206d4c0bf82deb57743
MD5 23b5d19db92220d94ce0d74e8d2cd44a
BLAKE2b-256 74b48ae67f8100596ba0bc4b3915a10bbce7a911a27d0f6b140572b5131ae296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-none-win32.whl
Algorithm Hash digest
SHA256 227c76b7f5c1f5e84d982e546a3c57f32ed0a44cd0e5d6302a4436fa30179f8f
MD5 02f8af1f6b4146ba8185ca1d84d470e5
BLAKE2b-256 db0cfad580095321b4b3d3a58c5631824446577b3bf72506b4649bb3b1023656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27194c91df27ec6eed3311bcccc99f5d228e65ab1a1bc9fb6e5bea982f8fdf24
MD5 afe6c134bd20dad40f179e7a0d370e20
BLAKE2b-256 fc4a0bdf73340aedcad4a0fa34fa52d6147fcf59b09e56f6c095da08dd065c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d13518fc7c8cab0791390034a39507a5cd760166a8f7eb87178ab9ed9c4fce1a
MD5 a401d0b42a8ab5641928261a8991cde9
BLAKE2b-256 63450e6ab5028924f980d6673e55c027ace4c645df3765d6227d18207c7618ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d69089210ad711ae4fdc0d47451925795ef1360739f1b13fcf370b9347cec140
MD5 8ad1abbe8cbd12a825d2bd5b1816bf20
BLAKE2b-256 ebf3c60f51aaa06979d075cb66c1a8719209697b3842efd2c886ab52507dc535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10959ade51086f3e2ae4c8261678ec88e6c90682c0978c5cf6d915ad2bc60ce7
MD5 37939a1d625f03765477261a5d06c021
BLAKE2b-256 0985ea3a8ac9437eb62838fe05d01026f9a8395684142aeb3e78941afff64e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acd8db0dd7a2a715bcd91c25dedef9edf9b54d58a7e330f3b3d1045044b84c5e
MD5 0565e235ae05e259661bb39b1920f07b
BLAKE2b-256 70c7e036327beb20b361ec3906c66e1ca78102ab95522deff1bef14019ed13d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b0f688ae19f5232ff6346ecaa03564a698e241d86687b2155501661b6a15bf5
MD5 6dd15209b401795a5dca4a48efbbf19d
BLAKE2b-256 0513c1c7e982d358b637b815f41f3c05c3cffaf2f3b0a44fe42f478c95b2b69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89b5ad3af3ba800419cc39267791945319f8e831d6f93f656f283fa25fa1c2cc
MD5 ecc1c1d365cf234f82127fc2e7ef5c85
BLAKE2b-256 669e263b9b94f2211bc3a3499ace170837c707c3dcd7d142a1ac75182b61c6a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0cd1cccc433c8d42f3c1cd8d800694cad19797c6407ff2236879119098071fd
MD5 74c5055dd4027b89d709613ee27598ec
BLAKE2b-256 4bc9ab2804690efd2966651e32f3112f42575b0939d67947e1d0da1c05079ef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d762bdc3e9a45c1c3144a9ad165699cdd500ec7b58ef2a796ced3313a21060bb
MD5 6b86fcef43be211d3c407472d4610262
BLAKE2b-256 9145ab4f49dc03d0d57c660bca00c26c974a2a3645450e17cbe7686088057957

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.1.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.1.14-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 903af5bbb1ab427e54e86a7a2008fd78012d87008ead0698497455e68f4972a3
MD5 d603d85d5e3e73b78022a039cb43b161
BLAKE2b-256 0aebaa186cecebc8cca81f05b4e0424fd84debe906dd8a0566f61e03e133a5f9

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