Skip to main content

gumpy re-implemented in Rust

Project description

grumpy - Re-implementation of gumpy in Rust for speed

Does not implement the same interface, but rather the same premise.

Up to 100x faster than gumpy

Install

pip install bio-grumpy

Usage

import grumpy

# Parse a genbank file
ref = grumpy.Genome("some/path/to/a/genbank/file.gbk")

# Parse a VCF file, respecting filter fails with a MIN_DP of 3 reads to make a call
vcf = grumpy.VCFFile("some/path/to/a/vcf/file.vcf", False, 3)

# Apply the VCF's mutations to the genome
sample = grumpy.mutate(ref, vcf)

# Get the genome level differences
genome_diff = grumpy.GenomeDifference(ref, sample)
for variant in genome_diff.variants:
    print(variant.variant)
# And minor alleles
for variant in genome_diff.minor_variants:
    print(variant.variant)

# Get gene level differences for all genes with mutations
for gene_name in sample.genes_with_mutations:
    print(gene_name)
    gene_diff = grumpy.GeneDifference(
            ref.get_gene(gene_name),
            sample.get_gene(gene_name),
            grumpy.MinorType.COV,
        )
    for mutation in gene_diff.mutations:
        print(mutation.mutation)
    # And minor alleles
    for mutation in gene_diff.minor_mutations:
        print(mutation.mutation)

Threads

By default, VCF parsing will run with the same number of threads as CPU cores. This can give significant speed improvements for complex VCF files

To force single threading (or other number of threads), run grumpy.thread_setup(<thread count>). Note that should be run before any other function in this library, and should not be called more than once! Not following this will cause errors!

Project details


Download files

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

Source Distribution

bio_grumpy-0.2.0.tar.gz (3.1 MB view details)

Uploaded Source

Built Distributions

bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (894.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (925.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (989.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (901.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (723.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (848.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (774.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (725.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (895.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (926.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (991.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (903.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (724.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (849.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (775.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (729.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (727.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (895.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (927.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (990.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (904.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (850.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (784.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (729.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (726.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-cp312-none-win_amd64.whl (530.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.2.0-cp312-none-win32.whl (497.0 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (897.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (929.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (991.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (905.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (727.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (834.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (783.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (778.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (728.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (728.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (639.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (656.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.2.0-cp311-none-win_amd64.whl (529.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.2.0-cp311-none-win32.whl (494.2 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (893.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (922.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (986.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (902.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (722.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (771.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (724.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (724.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (635.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (654.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.2.0-cp310-none-win_amd64.whl (528.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.2.0-cp310-none-win32.whl (494.1 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (893.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (922.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (986.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (902.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (722.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (771.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (724.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (724.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (636.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.2.0-cp39-none-win_amd64.whl (529.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.2.0-cp39-none-win32.whl (494.4 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (894.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (923.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (987.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (903.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (723.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (849.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (772.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (724.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (725.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (638.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.2.0-cp38-none-win_amd64.whl (529.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.2.0-cp38-none-win32.whl (494.3 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (894.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (923.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (987.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (902.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (723.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (848.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (772.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (724.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (725.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.2.0.tar.gz
Algorithm Hash digest
SHA256 46b171fe8d2ec5a6f2b7613daa1a91898b825e3eb1915e1024aeafb98a39a0f8
MD5 31a371518b82edab0a0ecbd8aca25171
BLAKE2b-256 8542fbfe1f36d695bc181eb6fd6392bef9158682c98aed8ea6054a1be5c84f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c00298801788d3fb1e378bbd553c0a1c99ac57c9b3cd5ec73ebb50bc159bfe19
MD5 ee8256fa9474517310d3ddf1a6e68909
BLAKE2b-256 2ec3b55a9c60f04d519662e21c9263b7fe02c804c31acdd0d71e56221595703d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a42ca86ce0fa8f4500a2dd63596fa9e6a0222790a49dd77ce4c08cf1098b7bd
MD5 0232536f4d85a583eefcf869bdb39206
BLAKE2b-256 d0d8cde705fed9065ff9f7c29483cd26ed7252ce593491e0cdacf42e630f6cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ace3f886857c48f46980d6b274ad808eb6dac7b579fb26378b91da83f9a11c0
MD5 e994e1d29a5e56418abedf14d11f6cb6
BLAKE2b-256 195a7032ddbff0568411a54e7d8e792f4887e6f8e202d84af7285ab73d4cea5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f551ad1b2970863723cf99e534f1113ab2a2d5bd6a8ab7a33d251ca49d108ff3
MD5 3955292325ad0980634a661899aaf238
BLAKE2b-256 57918a68decbbee02ef153839e20405a00f27bb960741c3f4a0f3687ee55db7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b7eea315354fb1b79f276ea43b0236fd04a98fa379f3262d227ec90ead1deeb
MD5 ef56d667c5124f646b703bad152593c5
BLAKE2b-256 57c0b3011e5330b6be1886910756ee494596f069141c3c4c261e0e28a540f3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f3a2f8d1b5d26a6c6daa83782c10d8961b854a40374b9cb9eb76f9f83e6b696
MD5 135dfc599eb47462609522eb6c93bbfd
BLAKE2b-256 fe7a8a0bf2ae9ce11dd27a1c8470dd50b5a5ebc8abcba7d6ad6e9992ade68b4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91922fe57d31004cf47aacd9fb609611ef1044681d4e94728f3b2cdcee23e013
MD5 43cbe9280aa1a8fe450dc8b8331c5422
BLAKE2b-256 93e6ccff9389ec3ea746d568a9f4fdd63aa8d412cf1ba2108ce007d92d4b2a2d

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf633eb38b4732cc706a3a5cafb26a6a38158140aef518c4e2f0a4d13095d6c9
MD5 be95ac6ee2a781c61839525efaae7d41
BLAKE2b-256 f411a20d728fa1f55a07a4806af92abbba8129c4be2bdac5617aa07402c0acac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8295c2dd9c398be6a2819aec65795b677a9b3ac3566d289d3dd8b9d99f27f769
MD5 14fe916a4c1f39e340d5fdf8abb5e237
BLAKE2b-256 cb34faedbd33c92ebbcd8cd80a4f364c5615d34a600df591705499bc9ba65a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c81d63a37d4b1f7ed461c6035a630c3dcd3bf92b96cbf0f02dc5cbfe26356f09
MD5 4e12d7fd00cdc40a60795da6926c728c
BLAKE2b-256 a800fc9e7a77e27e05db04e8359acd6d009134a077e5848e44c0c08cfca9a557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c189aebe05df4c7ae7332d5957ca51d62d170c1da4ccb0cc9607466e035ad7ec
MD5 3eee21673fdd0caec317f9d9ee0ea97c
BLAKE2b-256 f57962a672df3a0b1aecc7877e2ca374c837d6affb2b78c0e0fb7e69b0320cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e7bc5ad47e396b082788803324866a8c854c57da19edbc3136a8da929c97523
MD5 8e515b4d8679051a9ac708888832ae74
BLAKE2b-256 7a3cb63ef542425e8fc794e45bb965ba016c104e91a8fd41c21a858aefb877fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 94a3c632d85e88940972b258421603e75a8b13c416bbce95e4d412c86e20d749
MD5 7f8b9e029ad66b546f45dc7d430274ea
BLAKE2b-256 452a46674ce99e999f6d436ab8370e81d9a6ff03ab83c479bb4030b1caad7ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b75ea9e6259731cff4158ef558ed6acc0cfbbc4b36e01cb7c821addea5d728a
MD5 ada08b3853eee02cf10a1f0e516ec2f6
BLAKE2b-256 1e2dd7abcefb1bc2cfbeeed477b9c060305c00d94a8a612def764263af4655aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ac1e14bb46d4507934a1183def0077e59344f4bd009ad9c1776639e1c09a7b3
MD5 68ccfcfec158ab11b9dce882be980591
BLAKE2b-256 4f15ccae57e8da5e01c5547fc312ec6e6c6c46e6b5bae4d41d6ebf898c768e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51d5e7a8f73c65fddeeaef6662a241ca62047771008811bbe6048807f80cd59f
MD5 5b0ed6efce01468188b3caa1b38b2806
BLAKE2b-256 7130ad3ada787f1a59d0357a60d898cfbeba4747eb4ed6f7b4efcdcdd63af9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d023755dffcc57e9596f901a87dd5fb9936e8a15ebe83f70c421aa0e72fde09
MD5 409c17b6baf355fd5e78b8052aa57cee
BLAKE2b-256 931c57fb8f80e2857050c5969e888ee92128bf93e21ab5646f889986a54732ad

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cec5be9e5015f8032cccbd00b82daa7588b9600c1812c5f73799790bb6d2cb99
MD5 8e90844341a2cb115b3dfaf63c4ebf27
BLAKE2b-256 80817497476155c52718a91932739111e2792b3042bd682f3d881573ed704942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 232482d8c495b249664e5ccc6898ef425dbc20d493b4757603ee43193efe963a
MD5 ab0526b6942dadafa143f9f8df146885
BLAKE2b-256 a254a501019bf99cc4d1f004dc5bf4e5626d23c38b023972083d1346e78b41d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42a05f7fdef9d9e2712e77903f416ec370f470ac1e14475f5ce2625236f1110c
MD5 2cb64f5d4d35fd926f8a8ed37261c67f
BLAKE2b-256 8a1561ee7bce9159ce37700d93bcf4c0971468e0ee8b6ce9e099eb83e357f691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfa47b4e838194aa0fbebc08c414fc99951cc89e08afd42a568845f561b8f493
MD5 a1bee540c17bc0782674b53a32a162c0
BLAKE2b-256 a5e5a7433ee00749809c91e88c9defec22e92c3675210f6093c1b5f35ef5cd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dbce33071dad46878a9c853a67e0883bbba995cbbbff9465dc290ed25f1f60d9
MD5 055a9016e1312d6bc30cfea1c21918ba
BLAKE2b-256 0377666546db15d3f05331a1ec46f5e4e6a54af1c3f8d6fb4c4fb8214f4aad18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 543fc9d2692763b7590f700d16449d1e5436afbcc1587023e98af89ee5bc69b2
MD5 bd4737e5b61f6707f563c237f022fd6b
BLAKE2b-256 5561c44255c21ff41395baebc2182baf2ba8b3b7b70facec045b5bdd0e9fb1c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1840f1aac07f4bc4b217f41d65d7838b685baced1ea5d9fc10f3455f7e3da8aa
MD5 e97a0099c798f2ea33af3332515bcddf
BLAKE2b-256 295d3e94ab8619135c5ede21c6941d5919952fda8914c54a0798f3123f74200c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2197cd4a2b10d31b71c6f1e8a20cacd901fbadacd704db13f0a8dd1c78a69225
MD5 b7b1c42483e6e34691bf2f7c12f40250
BLAKE2b-256 b2ae6bd6114d4a2ff4872090e437cfcaadcd49ab79f961be96c63b03fd1b1e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7c8e7007704fa92668069c1f838c1703514c4bfdecc65cb55b47a31e735940d
MD5 2608263b32695eaa9cc67af2e4480fbe
BLAKE2b-256 d8740ea8e67c6c86b831e531241ebeee43d23a392d8648ed0edab1c8efc95403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89b67f0c418c700b6d62414d096868405cff4daceaa50ab1bafbc29feed4e745
MD5 c189324ac5816d4d8522335fd19ea1ac
BLAKE2b-256 af76c5af91f167531903e579131f5ad9b6f7c9797b080338212fef702a707024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e3364abd8d053e257db54e4543451e943dc3fbe8d715afb21e5c795a32544f7
MD5 0eb1ad920dcdcd9d47e0e7ec39fb70df
BLAKE2b-256 b9b34b84a5b0eb46499a0beca608842d138464a1a4ef110e6fa44f934d41f6e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3391a9d777084911ed6ff8fe211246f6ff03b50086cb6d4d25dc61eb2ecf0075
MD5 78d0cfa5fcfdeeca809e8737e385369c
BLAKE2b-256 37bb5a343623ff52e6f5d71164953c7f1a14e4688b09b78c4087518c4b70f282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4a1e46bf74056e08411f245dcd344b0bfd6fd10a6755da1b6882458309bfd6c4
MD5 4296923219edb6cdb3b51d89f0adfb28
BLAKE2b-256 abcb1587de11cf089094fb61e932d40bd79fd9e716b8257f339fb454f49bb9f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ff5f7672b331bee4c4979f9ad675bbd1404431861a42110fba1bda54c397304
MD5 fc5401b76ea150a79aeb42261b4a9f28
BLAKE2b-256 afa0d0f7258d4f7d635fed0a99cf264d11a2fe64ccfeb083ac8d48220527b2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef939ef12aec7a7b45bf97fdcb091425a92cf12a68833639694b377effde367f
MD5 c95e4301d9477eba84802784d6e49f40
BLAKE2b-256 8271e07271edaaa79a5dd63082da6ca29d68165a0d55273998e7c9fcf57cf453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66ae689d866016496d7fe1642d5da15e256ab404dfb6348e0a04a153ab95f7c4
MD5 cf8ce9895046dea689c6e04ae5fb1cba
BLAKE2b-256 fb26ee41b87160bcef07b1f7039870db79d2420c1147fd42c6f568e39b16ad81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb1bbb79782ec87fc7b48b35d96b93884c2319071a62a5580033c9e08f40a563
MD5 10bea31cfb3ce213d4e267599428a4c3
BLAKE2b-256 c548feb232ae49c6c485e11663afe6a3be7fa84083916079f5ce78eca64892dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83097ba7fb7bb3d9d3593fbafa409c213d127838dbb8c7e8260348a60fcc4ac5
MD5 d6e33d682787486b365a4d9a5d2d3c12
BLAKE2b-256 23ab3cbac596f2bcde9d707cce21f41c5725e7b1c385d7443ec262a34dccaa01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d309d9f21596d4ac35d50031b49e4a57b043b84b757e82b7f6a14c483ec1838f
MD5 56bef115dcb2090fe8402b12fbd3310b
BLAKE2b-256 3ac4db85f848074994f1c69818918b2b36829c361fa7e6990b7292fde17736bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f592d06329e048813a5822286786ec400023cb633414fb1e589f4f90b4fcd572
MD5 2550b05ae83628d3fceae7b6e203a200
BLAKE2b-256 c81bdcc85f5899c73c659a071882ee2433aab5b15a6ddb5b6bdf2491282cbb3c

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a46016784c5d98cbba6e97c83380cd682b94045d5fa1fe02c84c5ede1bf85615
MD5 3beecec22d45b3d3c3484a2ec34cfd95
BLAKE2b-256 0966f75b478bc8aab99868f0850d3babe28229b6c09686173336fbefb4b78af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a26497ffc7da35562bb7c3d71f22b7d73e31ba231079f62c277273f5a0c7176
MD5 421744a61a2de78f999da77616883ed9
BLAKE2b-256 1a58f50039acdba4a3bdff99bab30c8234f606b09ccf3c48b1d623af9e5adc46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c632e9caaedb42b0b6c9883b38a5ca6f35becfbc9a1f53bd6333e0efb017a70
MD5 bd424d6343d1603a21818be553a54115
BLAKE2b-256 bd21a4035c35006dd03b5d20dbdacb9ecba2fa622b46d44bb323be100caac079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5c635993fe835e744049084db9b3308676edac8ed8f975a8a4e0f32a36c7e4d
MD5 33ca9730332421228853c1c798e2ada9
BLAKE2b-256 7c5556726c1d7ced2634a132767b959c2f0e9c30e47ddbfcad22a035853664be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07585816a54c1c94c69cc0a119303358b273a5649ae8574f091c91fa7800394c
MD5 66a527d37c1085ecbd45e76cadb9358e
BLAKE2b-256 7c330c3f14e8292f364ab69dcf6587b24be60102a1c1ac8318cd3a0cba432224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8bd874b5b8aa8fdcb60a402f2f8517513be0015d27e6e9d5fc7cdb8b57cf4e5d
MD5 f2d3fd5d748c97b8dacb2c537ff5a29f
BLAKE2b-256 cc3a2e5fe896e2b2c84ab5d1e4b9fe2b5c94369bd3685c0963b2bc4ecd2ec7a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1f01ce2951a9cb0e8106e86e97bf02aa3f26663046468111c14b56d294acc9a4
MD5 aac787acd46bdd9095b60517b44c6910
BLAKE2b-256 870c1998aad9992e6369034dd274c7b8212363984558d33a911b5ddbf9c3bc28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b49ff3df027aeacd79b67e46a46bf1183b37c7d474bc20ce8562bcb610ef1e4
MD5 877a69480f4274b9599c7201add84290
BLAKE2b-256 9015f3370aef28ccd3b3aeaca20d79c44ee797ee19f08a0dd4ed6e45ea6b0093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 27c84ffe2779527dc76b8ce5659bb114d7bd1889c31add28dae8e6e2450bd32f
MD5 f2a23a8dd3f719a3f974387ef8ccb4af
BLAKE2b-256 616d3a5ef7e16df21c1af968bb6a75769b1f798eb14d39374021f71e8cc3cf35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c99d905732ffaac67cb4aef51f62eb38ee453fba5cc12e9ab04c85e0513348a5
MD5 6263aab7979f2dafb137667446a12d53
BLAKE2b-256 f16db471b409c6f0dbb3764509e8bf00ed7841d00343e96906d898d00429a542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 483812c9b2ab738e49ed2b76f70d91f8cbfb239b1c2fd0aaca23633faf7dd707
MD5 2fa0c84721fb352fca97c1ca45876338
BLAKE2b-256 e20b0b18e92a5a686e9c7e3353c5824979f1e3d1b676242c66a8a3aa03990447

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efadcbe973ca76c19b32dc0161d1f945a9c602becdea1e8143c86251eb558b56
MD5 29c29186bf4872911e78c122cab8ea16
BLAKE2b-256 94a9a5dffdfb416b78bdc62f1d48387c5fd956a1a21754550d206d90976ba823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a4e4f7c2c12824d6495bf4b89e5ae8f5d546a96a94d162e9ff10c2629b783cb
MD5 080f6a414a9b01d17f09895ec92f08a2
BLAKE2b-256 6970647950195c08cd28285c24db57123052677df440909a402ea821cffda08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b7a51da1427d77fdb96423b3e438937c541cc2a10f4609e63c909f6fb3d03680
MD5 d17b29c0a90f1173cc1a76a0e3e7044c
BLAKE2b-256 ce67f2d182bd23294c7c3e85b1ee434ca17160e78fc89ad025da4fe1270881f7

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d33e4749399422d12938d749257dd8a7f84928ab6fb27bc99a14596ad419734
MD5 747a44310b9ed04cc16592e023b8980d
BLAKE2b-256 414b7b7003ff88ee8d6a9ae60e99044fb15c71828cdd7d249bd44967a05806c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4992a6dc4b7df5a4e3d35c2ffcce1d81a31fa7779c48fe4f0eb086ddcdb96883
MD5 77ae139551483ce6ca7daa1e96ce4002
BLAKE2b-256 e51537e69ba615498ff4d9b9c1218f4f8114b985d74136944354509369337685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a521581cacf0044e9f78f44ab68b37fcc90757ac6489b07a8d63a11f66db5b
MD5 6c4bd8eefcd7c2e6338c1b233fa04ad7
BLAKE2b-256 06d455e6f12817e7b260327f57704aad6f012e995de1c7b78b3876f1a854ab98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6296ede2c7677f8d01343490406cc369de86c125f46cc61f6ccedafb46d52d16
MD5 1622d80745be6ea283779c36b8736f9c
BLAKE2b-256 e7e7feac9a5ea2e23e9f53b52e29c5160e4c450792db7bb871e3626758229c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a195c71ee8e3212d7b6a4173003ec0dabe35d59ef08ae3b6c92bf704e3f6cbcf
MD5 732693f91d78767a1d4efebefa50eb82
BLAKE2b-256 cdbd04cb62bab843d15dbb92098a55e55b0f12ee940397e87875df6a36108e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bc228c6e3356f6359e2548eae8b1ad165360ec68501b50e4c838940fd01a1a5f
MD5 f974976ac8081cf345c4a70d05247b77
BLAKE2b-256 3e5ee1aa0e562ecb7f481782ea8d84d250b7ee04ad6c833e9ee0a0f659414eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8b19ace1d40bccf5c1023347fdfa7fdc3cabf8a8628960b44af0fb8704b77675
MD5 13f80b11ce458cb840f95132f7b94e54
BLAKE2b-256 2462ec18b19c826cae9005b9b8f6691d58b5a99342cebbd77493bfbab770446d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0cbc41459624a0879d583f751c9f4ebe0996568686816b9e51e8101d24e47ad
MD5 2a2d589cd56c9ce6f8394767170079d1
BLAKE2b-256 3ffe38a0ab846156a8a533288d19c064115631162312b5b08a47cea8e9ac4d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0a3359a108508b29d8543c8c7d5c20d05b83b7d16eddc1da0d6abca920fe2328
MD5 005b3575c69066336927ecf7bf53922a
BLAKE2b-256 553b6d4510be04f2065163c7f65aa3546bb5554e8b0bfd3d1d393956d899797f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f863f450e89a54d7f871dcbd71725e8bb861cdbdfdef293406103644fb3325bd
MD5 33b65e4c66c7ec2e1bdd5bb3164ead1f
BLAKE2b-256 8f53bafd13762ee143bdc2369dd2bbdeff6309dfdc74ac04feb0ea3c161ac277

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bab2a07e25de699ffce7183eadd2830228c56642e1f4c5df542cb378844caa9
MD5 e2dd765487e0c71e53a319d5cf7c9d1f
BLAKE2b-256 4d9dbaeedb8a7adf43b84685b388d772484e2554da43bead643abcaef7b66683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4062ab22f41925fe323c35904f0d2eb0c88a325d76c44a6384ea897f7d39f13
MD5 6ce7140d90a2079d449522df0402c5f5
BLAKE2b-256 a4031d2e9627f9c32216b4962d7e8e0d233b3eb9d80539f0c558d1d0298fbead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d46990cde3cd1a5b4ea09cb1f6c8933c81ebdd30c18bc7ff3fd9ee7a257f04cb
MD5 9ba15a290f6fa0b92c989b70be45ce4c
BLAKE2b-256 7f5a0f3822aa8eb5c94005ce48e32cb240ab34cc3f522050f58545952d0d3776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08f8ddcc4333b7604c7b5eacc1f24bb6f358de77855113362c7d1902406099d9
MD5 d2bbe7fcaf58b554418d295a1cef66b9
BLAKE2b-256 34d06e1bb6e0fda3f8f1d9f8b8e698facf24f18b01098731a839e969e19a656c

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c745815e1277376495db28c6540be83d282844402e044197f955b54fde1a6413
MD5 bf532c02c5ede1e43085ae85abede0de
BLAKE2b-256 3c0e77f6b8bbd78fa1aadfc8951d264634ee0e1ef8d5de9fc784a74f5770908b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8f0af4de93203f130f1b68427e87f89b6871ebec52161e01e35d693f6e3a6aa
MD5 91a6fb4211551883c29f37d509c33d31
BLAKE2b-256 469913d2b96fcb1e9816b4c7c49438ca90aba6715e20c904714b4447eb6564f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25fa6181ad520e6e293614b0519724c8ccd21624323cfb06ee471f0ffca94ae2
MD5 a2f1f19cdf2f805a6d9c6ceec7a54602
BLAKE2b-256 5e6b35155509d9fc968b982544514c612de84c925b2deba2a0b64b59b20485c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 140a045457e55028e11436674b7ab2ba533106655937c76d67beb2347e88a40a
MD5 419402f0670f1353710877d29845121b
BLAKE2b-256 c9c63b421029b3450c84418e0215e4a3b69b46620f47c97e5da5e1ce9c11097a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cd92244ad10b6ebe7881763967b4deee05ad60dc2036c7875216a55f5ecd54eb
MD5 0b9a7fb185664f5114033fa3ae657323
BLAKE2b-256 ca02643682577e056ccf8b0fdd8fac31674f0ba67f279fb03243201b8c8dfa39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 494.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for bio_grumpy-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d99843f5891773ac864618c80c587492b690b4c81bc35c97db6846373ba081de
MD5 50d55aad143318004158d786de12517c
BLAKE2b-256 d9750a5af695422e0dcc39d6ade654d473f65e37d5a0b86074686688137e7218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df7718ee24cd5b06b7eab11373647de1a1eb7583a259179e016a15296d1e7155
MD5 4380ef6e1f3b87240878a3f883e6dfc6
BLAKE2b-256 72c784506889d483dfb767adc453488e86410f5dc9d7341dcd2af028e06a118a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21cde99363954ebad67ba215b0a794dcd2d5700b08ae0abcefb3b54bce1ed948
MD5 84ef8b6ffbcb5b3a98c9b2055ea9729e
BLAKE2b-256 f6db216a14c3cda682964f281b03b8bc49938cc03a5c1ce613d9a8c68b9e2c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2940b3e0d8b4f5be3f04d349493ac85ea38732274f3111b2797d0582cd102d72
MD5 bc2f81963dee68542722289393ddc36c
BLAKE2b-256 b2e8da8edeb02566da301b79ab69751914ee7fba1e28ff75a883d7eb814955f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7948741271e61b68edc3439091c6b5e022c903936f13aebefb04c6d2e8d96ee8
MD5 e41ebe538f6c34216502bd629bbc29f1
BLAKE2b-256 2e8a84c6466ddf77e7d9bdad2f2c66105a3e636458cca0515d2700d226ce1f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e69d5e8e3f4d1780fc51e850b59b9073da4340882a405da0a274aec0b33780bc
MD5 a09617b18d8dcd0d7f9e79f086c3d604
BLAKE2b-256 e68ddc4003f2d581843e240d2dc9ce1ac802407f42c7d10e52ec2f8e3378f698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae1405f54a0f1c1a776e02258e338f3304460fe5f213b58e818f271e12f7f373
MD5 0338728e8bce64049450c2360e456aaa
BLAKE2b-256 5943043becfbc5b48f0bf66019bc034c832e24e24d79dd66bf311741435d5329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb770cf06cf49bcfd2c053433257ed121c13f51390e5c7227ec008cd5a012334
MD5 5f3560d833df60c0174e2b6a4798069e
BLAKE2b-256 73d6286f294f57011dcafacd844650698128eafa274a7de378d1db2152a9e9af

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dbec52b41bb9af96e36f6aed46fc4a760b95a87d8868701b9131f4479dbf3f3
MD5 aa8943648a7798d6e10fae7b03274209
BLAKE2b-256 8483f1121d1c7be19992049b865e967d49a419390e1386c12581995b1c314c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0745c078bd0929dc62e0f63a9d7ab72bc4705d2f459e1bb9b427ebb88159c27
MD5 6ab4d1f4fa7720ce16d5d15111bc18fa
BLAKE2b-256 2d206c2476ff09e760155f5497a90b6cd202660081290536231ad4c14dcf0905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c3bc37dd20374184ca5ed618c76e65fdff085b00c9780a4b29d7d2f92da4097
MD5 912b6a7f6a9816800d696865643b767e
BLAKE2b-256 f98861e28517f2fdf9957b4cce4a242e3c675ee47a9c2d9dd7aa36e9877d6ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55378e86e85c3d8804574cc23c7e1340dfc05334c211de3a4956c1fbc540f251
MD5 ed292d42b95b5d40a42f318d8ae96eb0
BLAKE2b-256 9a38a9e5b49251ccf91d21cca4be1cee31af00c9b1c4aeff90e3c958825730d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 55f256672319b20cd2260981a0c43d070b7f9ace0b601d61fb09d74729a47aa8
MD5 1922efca974e23571ea56cd44f6b88cc
BLAKE2b-256 4247b29eb57c2976a685a595b454355248bc400b48e769462164c0a3d345b19a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 494.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.1

File hashes

Hashes for bio_grumpy-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a4c6021e2d2b30297093b155d432e92f91096191ef0f20e26ebc5a9ffde547c5
MD5 56cd197c368eacf3ab1dd24820cb2d9d
BLAKE2b-256 486da4f887635d1508af029cf02021f483052a8c30a54ef779786be1d16eb64a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ab8505d9b0c0069a4d878eaa3225e7a72568f949a3067ac60398bba0bdae44c
MD5 611778c9ae95761c35e20f82913f9bba
BLAKE2b-256 3ddd0261f3a79c2387eb3de22d0abdb52892cc80aa2b1d86090269b1d0d6f729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7abd79811b87dfc6867e0d27d3cbcb81ea3e855acf116d598bedbf49794e5a88
MD5 5c28f7a707209cb888b39e631fceb4f9
BLAKE2b-256 f262270a9a9b54be9ce1454fa2b1fdc9c59b383664f1a37528f905b1f7e362e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0306604da5becb81edaf89edb8d2dac6750fe3d4eb260365c6495f0469a5c2a8
MD5 7b2dc4a037c2ff3bafbba315dea59bae
BLAKE2b-256 b0fa98c138139b1e12cf668034fb2a38cbb74d268137d5307d066e7516836e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0887088c227e8f26faf17a9ec8e6f39406bafdc65f5447fce7c87421943e1581
MD5 ca4bf31e879826b9ff685a8606e2278c
BLAKE2b-256 b00d19d8d7a5625a10e2fc40ab5d6c9a4172d6e592eb406f5e42160515d1d311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fde1ad2496f7da58545a61e544e4b2be6361526ae75b001cb4776b29536f160
MD5 cc7711957960a9e7e03255ad51783713
BLAKE2b-256 f5d6ed37e981f5c0a87afa272488f4531812fc39426350b142f1819f3e5b34ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 735e1580bb2ccef0ebe661fa1973cf2abc963c5d15a320a00230f992fbba5569
MD5 160730779cd84465deb19155412ef48d
BLAKE2b-256 ce1206130f35601602b09fbfe05415f7cf5bcb729fa2f52bf38e4e7433c9557a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9354866f6b446dc0849ee47ec5efa8df6d08232d2c7d2773a12a60829810fce2
MD5 cc1216ba69e95cbea82e8d510e6a4f41
BLAKE2b-256 3ac44476200701695e0f07cdf4453dad73838fa6b267e25b5f5051d26298e6dd

See more details on using hashes here.

File details

Details for the file bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d789ff1e73429a762b75e7b214d24bff84da149dd6d49cade290b102f8d2824
MD5 7f9990475aaa066f28bac9bdd6cc5869
BLAKE2b-256 1c46c3497e248741de31b8bb2bc9124ddc3429d0eda6e16572bbe24bd6536759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4195494c126b30bca13dedc394889396bba360649a22fab93c9e1a4781df4ccb
MD5 edffc92e52c2ec96eec08a69fa69267b
BLAKE2b-256 d829d6611faa915441e7928de89aa6f9426339e96c38dcf0e094a5e730f8edf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fee6cc8cd1fc50171183627aa71c9f6d0444e8588286592cc43a8624adfe894b
MD5 1b25e5e7f20214dd378184fe1ef8eedd
BLAKE2b-256 7162bc43994a2c8f6d0f55b66a3fd3d3fcaa2a4ccc49bee2e27789adcc92312d

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