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

Uploaded Source

Built Distributions

bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (826.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_i686.whl (856.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (924.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (837.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (656.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (772.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (711.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (661.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-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.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (701.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (829.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_i686.whl (857.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (925.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (839.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (657.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (773.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (662.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (661.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (702.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (828.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_i686.whl (857.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (925.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (838.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (773.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (713.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (662.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp312-none-win_amd64.whl (493.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl (831.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_i686.whl (863.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_armv7l.whl (926.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl (840.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (660.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (771.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (712.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (663.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (708.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.13-cp312-cp312-macosx_11_0_arm64.whl (587.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl (602.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.1.13-cp311-none-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.13-cp311-none-win32.whl (455.8 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl (824.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_i686.whl (855.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_armv7l.whl (921.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl (834.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (654.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (756.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (659.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (699.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl (596.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.13-cp310-none-win_amd64.whl (484.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.1.13-cp310-none-win32.whl (455.6 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl (824.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_i686.whl (855.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_armv7l.whl (921.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl (834.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (654.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (757.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (659.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (656.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (699.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.13-cp310-cp310-macosx_11_0_arm64.whl (579.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.13-cp39-none-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.1.13-cp39-none-win32.whl (456.0 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl (825.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_i686.whl (856.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_armv7l.whl (922.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl (836.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (710.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (659.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (699.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.13-cp39-cp39-macosx_11_0_arm64.whl (581.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.13-cp38-none-win_amd64.whl (485.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.1.13-cp38-none-win32.whl (456.4 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_x86_64.whl (826.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_i686.whl (856.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_armv7l.whl (922.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_aarch64.whl (836.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (655.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (709.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (659.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (699.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.13.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.13.tar.gz
Algorithm Hash digest
SHA256 3e233f28d14d89eed20f05a0441d068575727f5291607867104c4597de9fd753
MD5 b1867eceaeff24e183e22cdff9e422f5
BLAKE2b-256 07440dbabb8c8c43bd33da9533db46b8efa4efa9a737d2f7a01489892f310ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7196e3f8a08fe025038bb4924d8dbfdd02980de1266c1f61a91ef6fee08b6db3
MD5 5b70c7d96a168e222cd25b39668252de
BLAKE2b-256 5c72429c3a8a8d9b9456c4f11ee2416a4eac430e8eb2ac5f8bdcfe1fab2c7690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ace8eeec509ac4c197afd0754cb8a94ecabaac0954ce637363cab4fb2a775b6
MD5 6162ce7779e8f509c71cd542e8902b61
BLAKE2b-256 3c781e9b5338692d00899207694ccd55828dea86056ffc1c465213fb8f92bc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 823d146b9cf7eea0354131ea4171ce9288078bdebf354751a06ab0bdbae98dd2
MD5 0e1faa10c0a0ee01356ebfb42da877aa
BLAKE2b-256 12887af2abd5e3d5aca20cf449729c1f614a9ad4904efca366dc4fae7aaf144c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f96e02b202beec85b36993a96d1c24c3bdcfe8a475e2b67660b6236d0ad42cfc
MD5 f019b0085e2390355d88570e79ab8c1e
BLAKE2b-256 306d1ae04fb878a1aa8ca5b570d40e1c1c0d8befde5aedd42c424cd711f55641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a76b4ffb986d9abcacaf9ed6d1961458ef487fa236072ff040f2d7432cf03404
MD5 190b953c79f943345ffce4be8dd49dce
BLAKE2b-256 d31deefa1c0624e8d8024326f719fe8df47a9983c97e78ddfdb623d8e1a12428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4622f2fcca8b81692234ac0c1869101426d4b70f79a11bd6a394c43204d4d5fe
MD5 d1e112fda54dfa414af01e5d808a983c
BLAKE2b-256 ddd7ae7d4333ed7492cf50e71e88dad9fdbcee9b030ad02fb516f9170025bfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35f538cfe06249198db981beb9c9ffc1823b0702dcbc598efe72155a0185a056
MD5 0521077d4c0b87e62f989f2ec2a9a037
BLAKE2b-256 ce1dbdf5725e3f8e6ecc8179b3fc966fa09e4d5132a679bf3634416b0d4b9a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1c0c2ac543f4b5d9ca0fe99ac886619abe409f753a4e0ff2be63f489480636c
MD5 902f28829650e26832bc92a76906809a
BLAKE2b-256 bdf7114103fe922fea19ea469477a77a24c0571a025eb9dcf783af9d5c0044b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32278975a2f9ed42d9237bbc76e1d3f286b723f5e8a97e71dca6e53fc4b918ce
MD5 bd7ee8322cfd402ae973210479f79f9e
BLAKE2b-256 2bac9d685b1bd39279a327486663170b524c3da5444baf33a867c6ab6d52c79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6032b06e0db2601680f4ee5fe41ace51631fd8bdf49f7a45631cf4da7b78d0e4
MD5 436616833c4e9a38f6dd2e5737f9cf83
BLAKE2b-256 19a9147a82e17aacc11d01e388882ddd4744d8f5bc31329916b0855be13f9219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b1ecde39e00dd7804f9822f96708b052bee5faa87fe2fa505b43511fca0f6d0
MD5 9e4177acdea4e379065eea8813874d33
BLAKE2b-256 521a05ed79c0c7ed3dc4934b22beec2e94f2cc0eae35dbff4c2873091f8cfddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e11c45cbe07f0065ec415aebe5da6d7a55a488f1dc5e9f658e88db4bb171fa3
MD5 08a88930688c884f79193cb7fccb2261
BLAKE2b-256 0e825166b86f53fb5fb883a9db84d0ff6f07bb9d39617b7eb9e9c1f6b522448e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0049c5043eabf316e5198fa7812ab267e5bf644d21fb9f3de6368c0fd636adf6
MD5 55673fdaa5b9ef5a599e363704da2804
BLAKE2b-256 0215f58ee4debd1ef01d3130e445dfd29e9d181f28558f49cc5f6b12f7a709d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31dbe30e847266ab3ad153fde968c65893772674568464b35701438471a1bde8
MD5 8f50f23ba1d489d5be49ad664e55b2f2
BLAKE2b-256 c3008d106467c1d76afc00f379a8dbb9a89baf98637f38337d6feec8209802d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fbf895841b844c023cf7dfdcdaacbaa6b1c788fc2c72a38cfb81e7ff12aae5d4
MD5 d3c4807d82bff77a4bb66b48f3814579
BLAKE2b-256 d399943c80d06030070c82508120d755b1b2c4cc5ad1dc53da7ed43fc18b339c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 225a5e43ccd08954be06c80535ea5f1b1f6f53fb2c0694ae595867031a0f38bf
MD5 276d47324de658e8610637e8e5ae6f12
BLAKE2b-256 63edc1dbf96b4f8f1b6944f95e0d3bd76deebe3f66689327759df6097aef6780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bc7c6c7e98ada3d829d1fb0dc5eb36e696294ba6197362b9f78daa94b5e0637
MD5 d73aaf716a0db48f61103ebd1a6c3983
BLAKE2b-256 a46dbadf0b0e790bf0aa80f035644104dc8e82c9e0bfdea65fc76101dde42e4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb938ee218979803b0b52929ef6f50ab2688c16196f394a9d597a70c0e689d09
MD5 94d6c2246b8a68a21a800465ac4c3c40
BLAKE2b-256 61fb17e61c44a09ff513f69165e975369b70b591011d3c522e9af0773b2de25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ce652f637b04bdb233ffd1699456363e3f185eb5ee1d0abade42c191733285f
MD5 ceede460776d9f4bd4cb3eee86108fea
BLAKE2b-256 af488d0f29b3b06475e3146ccb29618b18979c577eef4aa00d0c0c689096cdff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d74f45036cedabfb6ad2f51b53fba68dd4ccc0a4fdf5216579481cd02778acec
MD5 4d8d21fe34df5660b1426117e5561c92
BLAKE2b-256 339deb53f14679476fb94e0063e9eb5f75416e60f5898865ce0f990bebf574ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0aec92b50d50e9142a9ec24034c113c1183203ae9438104aaf938f911f613005
MD5 93135e9ccd80a7612233ccc9f36a5538
BLAKE2b-256 26fe43cda8e3795d123c58400125f44e0bf64a2a5c02cff6e1391e7d713c24b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 042feca39c040275e07b48b7789e6fdc838abe7cd6368ea6f71521ac697639a8
MD5 73544e57224018dba9e6f8173901ee92
BLAKE2b-256 ede2627eda39084ca5bd68b1dd01045fb17c484fd8b91a99b9f8d22220359513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4dd2aed07216546d7b618305c0307ae29dc717bd0ab9a6f1d684e6f86c44a3c
MD5 76e501977c2133cb3262ccc9e192db9a
BLAKE2b-256 4284c79c6df0418ed0d307dab516677a5e07f41291a1479e72b5a183c27a57a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee2f5b7c4b7714015fa13e3baa56d8249441848a3694f296559f0f12b21920c3
MD5 263b8c050094391a27742676506e1e6b
BLAKE2b-256 f5aebf15856f37e0997daed0f8f89ae2b5a1d468d04318e32a4ef9495f3d2569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1982d0c95436e89933ee4cc25ff7971c0dc92587f6319df021fc469af11b7a9
MD5 f2e7507bb607faf59b9e13074296ac9b
BLAKE2b-256 654c4af02ae6566131b1c77848a9e69a4f29a1ed353b61699ae442c3c18b952b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6330e83fb60cc739605da4b3a520c1fef4e21065dac7f72a596840ec8b7e5a7c
MD5 129697a86f015738afe660ff5c777514
BLAKE2b-256 8f5e04df6f8cf7df5463e5b0ee93581f6d94e546cff07d7bf2efd9182e385a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6c32e01250aba223a3005ed772c509917894bdafcac9a2093fe7dc9fb76f67e
MD5 a645ab4caeace564857105b7be3fcb94
BLAKE2b-256 5734e985905dc03a40a7ae1ee58d7ea27fe1a556a74e8488733e0c43259bcfc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da5ba27218e41f186adfe5633aa59e3462fc576433b897cac6f84b4890e9d643
MD5 b833cbee49bb41c7ce01f00962b788e9
BLAKE2b-256 35bfccbc7056122fec29b6966ec90f5d1dc2072ed014238a7abc0f852d18b181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 445493dd1de5f696590256b2d23e2dc5b5cc97e006c72ae0ef07611f83818e3b
MD5 df71898c9ff76c7bceb3d9fc2440995d
BLAKE2b-256 c01ba7c54f82942958a190ce6bab7ec0de52bed0bc7ed1e9fde3b3ffbbe5e87e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-none-win32.whl
Algorithm Hash digest
SHA256 217263f5a0a1b805613852563799dcf5aa7edcea46495ccd2a0f069ef5ea6653
MD5 bf3643397b08a1d17762e49af361ee8f
BLAKE2b-256 bd97fba97673a9b4d8686f93af5c8e77809ac7c75e324a41a7544891b21de0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f2d9e3cd55886f0c6e0c06537a99ba8f7af710913c2de85efbbde3bcdde91ba
MD5 de2efb2825074dc3738f106a652de892
BLAKE2b-256 c3a3b18d5a7008d2963fd6dc26a6970aba8413ce7fabf7879ea086880c8bb71a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8d41d231c8c67c0b66dedce9d57f5518581d6d3b945a56e79165a647ac8fbde
MD5 eca4d70e5c7c6a811b090511c0329906
BLAKE2b-256 9ab91c1a8e0146a7c2ec2caf90b63a64a18243b8de45dd6406fe94d9909a3ca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 29d8629e9f0ce00050f9d31c1e300ac583aadb564c51304a299fb3b3efe142e9
MD5 f8f7da60955401b45c7d561bfdc2bfbf
BLAKE2b-256 acf493cedfbec7560a3f395da7db2963963b74fe361df1db7308280d25723355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8ec51e4d7e3588ca5bf163c3b2981149b0c24224f1b42f3b46746d2317fb46ae
MD5 c99b583e0c7ca525c2c42245bee229b6
BLAKE2b-256 7391cc9ae0bc2129468a1036475bf2c4be359eb96fda253754fc3699da0593fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3cc8b7c93e237e40aa82ee5aea9c014b96741a72ebe43fda4fcbc2a890bd62a4
MD5 1fa4740a98af721018d6b56bfbe0cd6a
BLAKE2b-256 75bd6767d747b018d916cc4e8e21b886ea54cc16a9e945be310b7f702a6e51ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f12a2b767701a60a23be1104041313dd8888c40a081339f2f1066ba227a67cdc
MD5 eda174ed3443778b19c851f266d73b3a
BLAKE2b-256 3229fcaa4a598fd28b4183a2e250db4c8f3e86e7950a0beccd13010860a2b2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27bf0ab7437e8c2ec27ded63d75c993644dd0c2be5a90bbe58e1e2e87a2aa440
MD5 98538d6e136d67dc6ba30181ced72091
BLAKE2b-256 efbd8e24585deb348dbf46891622c41b3f5642fada76b00dc2ca1e65bd5af0e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19d0a52e8abf5ade49c1e76e750039a23641d3272c4f6710d88601f9acd2b84b
MD5 be167f75940510149ca76772dcf63774
BLAKE2b-256 39894dc5cb10d62c8b6ffdc31b582294d7c61851eed5a21f468ed60162abd72a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48404ac74fdcd38bc3008547790fe5a0c25f1bf4abac193ffe384dbdde5eccd4
MD5 e1ed81dfb17a4a937908c7bd2898e70e
BLAKE2b-256 7ad0611260b492a3c88c95209219fb53a2efa1c17ff4794b79b432698a672a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aa4c855554aaf09e9f7de921a732e284536416207ec8f923e717c12b89afbd7
MD5 d6883007341c7a769eebbdf94a1c99ce
BLAKE2b-256 73bb9c76d3b9dcda931b8861f15207ad315fc0f451783d2c72e55f6015893e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a35a19489f4c9d1842a73a8449b917432bd14a96b4585a371ce64663cee12552
MD5 c0c76ff6f57e1b0eee1cff91ca4796b8
BLAKE2b-256 b645b509d2726ccf399096508f179bcf20f0849a5576367477c5042bd3f5f98a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79c70a874fac19d03f83cacedc26709ff94decd7a7ffa69b109677a5f8b14d2e
MD5 59ab604fc83c921e015327bd4701a9f7
BLAKE2b-256 672ab8a750c768c5674e47c572498e8630dcbd6985229a24917315719e14692c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b034cec472f27d4b88414648dac55e611583d3eb7c060e111fbfb4f16e014807
MD5 c3cae67604e4150ed9445111df2e19b9
BLAKE2b-256 0459c420df14deef3939b6d22fcf0226e2b62139b401a9c05e3d33af95da68b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b4cf2f6d2a74f460f6f43b4fb6eeaa3e2066756a46bd97d0bdbbf461728e33e1
MD5 af70e0ec591b0ed7f8b0e89cbd097685
BLAKE2b-256 2a578a09e602658211b4c20347521ca6d30493d03ba3bbf166c182272a6fa673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58acccd317c81a66c80bd3cdaf0b7975886dcf0b12835a9da59b9a727c507014
MD5 e1b82b6af7f2b99544e401f69c557763
BLAKE2b-256 50d944894ae6a8a99ea808ca5cfae138d9ab587319b53d2bf5776e2e76e94b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e2129bed5b6aeb1ebb05fe2f71708b332e98117f685d508946a19db7b349882
MD5 f0e2e1b4a22b49711781a2b6200c01e1
BLAKE2b-256 799b30367b779820c76594652a8bc583cf8e6896c8368786b25d6fbdef22159c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61c48546a5a393a5a809b4a3912030e062063eb0c75e1dfba12ec0ab282c683b
MD5 ed90318642e20f6d8cfafd46c226a63d
BLAKE2b-256 d95d875fe7b601600f72e8c535bf1140e9463bc4ca2abd6be6e28d6698cecb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a8c7f9187c5004267ff26a15c1b7243731272ed898f0ed05399227fd55c4f05
MD5 51da1cbe0589e34572b38f5f779f3978
BLAKE2b-256 c936a47a3922561473c60ed2e3bf0b752bb3cf0779e188183f4a0a0eab49c085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eba3a1074561beb52ea4d25a74214153374bd1a8069e76b4b314698b8682ca1f
MD5 f58822dd6f05ad469338ad39617f1e0e
BLAKE2b-256 f08b03d9a1c87567ca9e1cc6049b304b9b6470804f90b1822b6183536769291d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f91b512ea4267dd9252736079ded0e8dad388eadf0cd23753b16c344c0a5496
MD5 b0e6dd124856c55376806ef06700f98f
BLAKE2b-256 6add3f60f62cbdcee722f822082d9fe93b96c7ba80f5dad60fc9e25e25cec4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04f179c186b88259fdc45dbbb2ad8d733ff29b7a67f8b47086af3055af0825d4
MD5 ae125c56ad8331c4983abfd6704035a9
BLAKE2b-256 4573e0cce99ae62914d1b7c64a6a7e4ead52cc7e8a6fb1d81ae119244e3b1ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 30c5fda83c9b44518112fad4b9710c18f3c4f307051129f295e712b450c14501
MD5 9205fb56c452572856e38fd3d93fe368
BLAKE2b-256 71526b49eeed68ae2bdb250a339365ed039e833f1e5ab9f91e39d4d48302186e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e362e5fbb9e6c26aa25b8e5e5ed0b036df7fcaf65df307375a3fe7839293357d
MD5 faeabf4b151775252f262945c9ece6a1
BLAKE2b-256 5c982638884557af450d008ee55cbc57fb0c1e40872423b26ae71a534fc4a879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5125b7e76b6fe31065597c68c7bef019d1ef9a13e78f436ff833171bfaf5582
MD5 c3e67b74f3c559e1d2bc1661cca747d2
BLAKE2b-256 50a7e24bbff0f8e8e52979fc52f3d8f8145de76b51f121f2fd572bacdb2118f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da646f4864b1eb1b24e38190728cd5f241b6ee1a057125d42831fcecdcbd66ed
MD5 9917b230dd5a135c8c549fc821f9c1a1
BLAKE2b-256 426742637fbde5d7c673db7256853076021a17f7c6545b3ea7f030d77115fb3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de029aa0a6ae8d11f69586570532350092dbf2c0ccae7e1f3d65ccb347e9d039
MD5 b6e62c4cc7f83960424a6f027598de64
BLAKE2b-256 2a7a0c9a6cd575142a64d8a591545bc28e6d9e2533fa2c19f84c90f0f26d7b8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 68be0f7e3b31fb75173e68fc4b573ab850f571baed443d2895c8721d80b29105
MD5 5b71367f7104d12eee5fb33d087394e9
BLAKE2b-256 9e6925f3d16335c46d0a290e4993d13a479fe410b1ff3a85b939a2f7ae32b75c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ba1c03b0480fe4056416c21b5f6855380268b99612545d892fc6fa65d992a5f0
MD5 f788f2bafbf3832c77a15c4347e6e05f
BLAKE2b-256 3959a6baf10db04175dfc365e1d746c407b9c753edbb35c0af2e53a0ca33dc06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27739e0dd0ccecbb01ade7a71f41132a6601b3c62f50e55d9edce79da109d161
MD5 b3d4366f007459456635111648984f28
BLAKE2b-256 9311c03b706ffe8e12ad74709d2b275ea1dc18829e6661149e68e91a1ddc8dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 352895c8a5d78150b937f4abf05f786e86438fb72625973e3fe52f7f45db2c2a
MD5 52ef37a04f4bad1ab1736e0e3dc7cce4
BLAKE2b-256 c0813482d113713cbf952c9fb4b8e3631633dd5cc211121c3ca0b3fbe02172c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7888e8768e3a3e3a59cae9ad522e186dba41d4f2150a28360af7dc2021525ada
MD5 4ae674d4695fd08d39867b2b6c577b9b
BLAKE2b-256 1a2d5ea98b0b044d87777131f57f06b3f002a73e08214c74209ece2649fe6bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33faba142a02985ae9208559b5741b4736aa1fa53cb1fce71304ce6b19c5b148
MD5 9c957a7ae83b8e3fcd0950062e50f3c9
BLAKE2b-256 d84f8fa398e0a1fc4212d11db772874b0e02bfee173384c97289e704a890dec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a28b5747e71e88944760afc04b637939e90bf2c439667994f055eec7afb3ef19
MD5 7555086bbd79e808f5d0dac75178c0a4
BLAKE2b-256 cdf5e2465f795e2ee7f90b4465526734bbf174c8e3f7921fe878a1acc4aba97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa3f35be20f35475ce5eb38155eb80bce881b41ad46a11404c9d37513d6a3a7f
MD5 da455d346ec33f387c255598bd0e73d1
BLAKE2b-256 9e569d5018106197c22e9296f32ee653a6fa219d8e927ed79999e35a72c80a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ae7fb3032caa2997b463900ede83462f6278a5276b2d998613bbd0b0f84e09d
MD5 f431014fd8b65a71eaf636785a594e6b
BLAKE2b-256 1387509010bc1ee28cafc54c6f22949d877016f692a2e492c5b093dee89185f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63f2e94698022f81ebae0989b4a5e44026e24786668a6ce576da0536427b85be
MD5 8a23455f0715d682c1c5aa1a176ab3b0
BLAKE2b-256 7d1a584a14a01eb1b5a15c0651abd026a2e04b34579b55fac9269716f18c8067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42fe5c1b888722470abc531c1e2765769d1688cf54a4c1fbb0620bec43c54ab5
MD5 a7a7ebea02ba920afc4ebba73b638899
BLAKE2b-256 e4cce7de6a29e39c7bb4402226533027c9f7a8cf0efc29e152f044128ec4da25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 444394fecc7d945293a198986c61aad616eb510b1a6438157d1974643530fe31
MD5 e0bb7803c04db353345946c73f7a4c1d
BLAKE2b-256 f7abb84946f33bed66641ed9836a7dfd3a9a9ad8ccb3c36df72893f28fc813cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd33504d0030bde328836631f9581170356679b21875bfd410c8fd18625fbc80
MD5 38b3da6b10f35f5fbf2aa76de7bb11b6
BLAKE2b-256 56408e36a1b843df3770e351547fc554cc236a95d26104663a8c9f0a238e3f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ccbd750b74a79b99e8808edaaee5f56813f8617de013ee68ac0a546fd6b1938b
MD5 c3327c08c3b8b05394c550fc71c8751b
BLAKE2b-256 905ea856eb47f2f7710bdc56370930b8ea8afc08a1e2e51c010df27342d150ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0729c39e8ddcbebb9ab176d7752a8a265f74a7cb23c5225631f4cec5c62747a7
MD5 d9b7082ee2c96d33b740713e2c0a6e16
BLAKE2b-256 fc0c7990a16a152854b4f8a385119966b9321329db61414622857635c79bd104

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3462a359680b3f3fca9ef5d8462288502f9d7f82e5064e3b049b3f248ae8da97
MD5 e4d5262e1b1a308a94db892268cbdc69
BLAKE2b-256 4941956040b5ab3bcdbd8d64b53c08b533fb14a19bef3e14aaec45178772eb28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8e46f1bc547da70d2e7fbd7dc0d816e8870252e2068030472f47a21b97321ac6
MD5 7f92c991193d8a0bac141d794d47d8ba
BLAKE2b-256 12dd80b319e7aca54573d3fb4879444167c7c822979db0cce3824f2835f23622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d12577baca5f7e4e65240516a82112eca394efc3ca4cf7885e4ae69a222ac2bb
MD5 08a8e7eb09fcbadd484a7bcc5b46ab5b
BLAKE2b-256 e4db17ca979321015dfe8bd720aa8b41d6cf373fed7d0c7bb273323fbfe73303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 187d46299236230144dc063ba08bb7329096c0369506ca4268842c40b1f9cdf6
MD5 bac12f8b3c9339c95994cfefdb905397
BLAKE2b-256 902141c6f67057d5b440a0ec40fa6351d3f5b0bdef5b76590245a271883b1ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 096d7252398a1a56803f026cf5b6f2a0a7330a2dc843b274442e4b3bf0009e0b
MD5 2da6d8564df9003f5608b0bb95394197
BLAKE2b-256 dd9209226e82d127fe8a5545710d8b8c9b7820d29582d63d188b21f1f22c3766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 760c122c26ab33f97aed51521730d20ac6b1d72166e3d8744677caf14d1266c0
MD5 e5748f1c0b807d8a1b279a9624981050
BLAKE2b-256 a4f994df0006d797d537460ecbde461e0805c6c3864985738073f15a55e33d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 916fa318804d8456b80c6968a1bf20892e78e23b9696edbebed9898695414bb8
MD5 200fa7c3785b969fb146788e1f20f077
BLAKE2b-256 525adb0b3387afa58bf524328689153d0b2fb494a60fd54c7416838eca8ab696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7d569560100c31b67ec53332a99531efb189400e04541ae00098a505f89f287
MD5 a0c9f538e0c10a96ea47244bd66cd2f8
BLAKE2b-256 22e9b140a265b6045c78cd027c252307206851d9624912f836a42949e2f89b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c708fd5cfa9f0064f96a0a60deec35807d910905eddc78a9accbd696f28bcef
MD5 733e8472946af2c8111915810b60646d
BLAKE2b-256 1e51213843c4de9a99d82b675b1290ee7dd849f28f1a7d44c7183fe451ddf71f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7438be6f86f1d88cbb65394838f5772889a1401ce411caa38fe05eeb4c1c259c
MD5 44c8e58cf408114b7955df3fb309c0b2
BLAKE2b-256 535ffcd9295efd17584710a9741f885b443a3e27b7c999dd586ad05e9928f153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec4963cf774440cbb4b427ba87f8cd19b29fe0dd2bb8e67edfe8ce9b56ccab00
MD5 9cf275d0fd291595e37b088d369d79e2
BLAKE2b-256 700dd44125d53b220615a39be3653dc16448304f8e50bbd1c0b67c1cabdc53e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f3c3df6424d1ed61c481dc5c5a546091fb9799e154ab0670e230c8cef4b2945
MD5 2b47dc3b6f36e0ca8f8696553bee5d6b
BLAKE2b-256 30ca53fa68b376cb2e10534df7c229b1a87b7f2a4a0ef1ac7b45474e3d7de473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-none-win32.whl
Algorithm Hash digest
SHA256 02aa5a01c3082b98a2ae72a340db130c3cf5bf7271a4bb8a0f4bffd027616da6
MD5 7e48a876d1833c1d4111ab109891b356
BLAKE2b-256 cbb8e2cc53c04ebd5bd8917b1164c6dc425f43cfbd6c7018d7cc4d4fdb401d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2c93de6cf5b55fa67113d98174cb50e4539e68023a251520df59d1a71392348
MD5 ace17f48894250ee9dab67ba1ccf053e
BLAKE2b-256 316628f75a2f6fa8ee52bcb2f89c453dad6978726f02a3d63a5fb2418fc36c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9486fe3b70883907fee6517f90214a169c914fc29289b096b619a2c7196655f5
MD5 3a240694d836f5c60702fbbe965718b1
BLAKE2b-256 8c4ef6085eda44312497f9981d0774839340dab2092ffcbe9a94f27dd226d405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2239327bd2a458857b9fe45226ff3286552d20d69ccc37635b175d02c8793d38
MD5 50d11a0bae4431da15f2a85359f75794
BLAKE2b-256 1cc97ed5d65b34e08189de3695057222a0291c2483c4aca13f6084798bdd7042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98735f1e78e25b7d6c865875f37af490400fa42cd77ba833bc91b9abe0343cc7
MD5 e60110f5d06143bb48b9de2ab191f8ae
BLAKE2b-256 fb7bd55ab5b3c35ae25dac3d5abbff6ab1e5191d02db86735c082c5181125778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b59898346b72a519502a7bc24a290789d702610fec2951a14f9e9e31eace773
MD5 86d2df8e628ec98f9332289d786da0b4
BLAKE2b-256 12d4d97852cadefc56962866aa3cd7a446497e73357d565d955a2d04ef5ee266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bf59325a48504436bd84687c3b637837f41a995206735410996f211a8f9d56f
MD5 4f1eaf4f6307e81b50c31a804589374f
BLAKE2b-256 98125e60d3969894a54783528aba08315c4d4fee8f38ed70fc1c4a26fe8f759b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db376111813a043064eb112f95532ac252f802cb2925b46fbae737ec98aee9f7
MD5 43b0ec127fdbdfbcd36d30ab9f3ed56e
BLAKE2b-256 de105dd09cd21bc0b24d7468fa72f93e13513fa39ee34982da14cabcd9106c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6ec6745665b130abc08d19cf8917b3147bf2e4ec0d580dbe9a4008cc5a6f084
MD5 f2fd7a5423a3547833a0b40cbc816391
BLAKE2b-256 d06213efe01a7b834bda808f4667f54b6c28fe1ab276f7a1b55e5db6d5e8a14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 925f1c415b504e936f109288f80cf8e513ec19af6a7992957c6c0d997aca3de8
MD5 4a65b12fcc56e576e23ac4187ada3ec0
BLAKE2b-256 e053d1826ee5f0b4e721c3f223f39bb013968eaa523919efcc139deabe212723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.13-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc5530c031f0aed3be5109ba18ab215770f0ea348393f80b7f703ce9104a5356
MD5 295e5bf248a711450e7532aba7adb7ce
BLAKE2b-256 e20ce84a7339b8d5e72da7bf38f01a5a997c415aa1984388ccda26c446159d0c

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