Skip to main content

`gumpy` re-implementation 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(
            reference.get_gene(gene_name),
            sample.get_gene(gene_name),
            get_minority_population_type(resistanceCatalogue),
        )
    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.1.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (816.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (842.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (911.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (827.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (698.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (680.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (818.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (844.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (912.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (829.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (761.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (682.2 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (818.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (844.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (912.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (829.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (761.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp312-none-win_amd64.whl (470.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.1.1-cp312-none-win32.whl (442.0 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (819.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (845.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (915.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (828.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (652.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (683.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (569.6 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (587.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.1.1-cp311-none-win_amd64.whl (470.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.1-cp311-none-win32.whl (440.7 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (814.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (838.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (911.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (824.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (694.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (677.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (567.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (583.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.1-cp310-none-win_amd64.whl (470.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.1.1-cp310-none-win32.whl (440.4 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (814.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (838.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (910.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (824.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (676.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (567.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.1-cp39-none-win_amd64.whl (471.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.1.1-cp39-none-win32.whl (440.9 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (814.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (839.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (910.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (824.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (646.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (677.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (567.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.1-cp38-none-win_amd64.whl (470.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.1.1-cp38-none-win32.whl (439.8 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (813.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (839.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (910.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (824.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (644.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (647.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (677.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.1.1.tar.gz
Algorithm Hash digest
SHA256 e5dcf58f6273779a7dabc962a0d865a373f71ee62082eae3b18083be21befff8
MD5 b3243fbd30c268886ae2a2dab7847590
BLAKE2b-256 115c5e5ad199b10c156d7ccb3e475ad9a05035e679b719123ab59ae72660846d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da56b99f9adad592dca8d7d2f7c7a022cc6877deb52af7e2e8c6d364f8f4c665
MD5 71a3c65e4b50b5c4a0985beebcbf61f3
BLAKE2b-256 7a4faeda2c4c493468951276a36f286143769bde20968aba8edefe5bf88b72b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c286c087a64b4458832ca274b93cc2257289e9ff0a3f7db7fc4e22b796bd7fc
MD5 69a718025d0cb3d90397b9ff520461e8
BLAKE2b-256 7fddeb4e761c12059d3d5af4c1d887c7e77d5ce512532240ecb7fad658caeb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 01bc010922d01a47120e8da89b93a93b1db0b52d4fdaa42fe834999908f668e2
MD5 7c147281a9737663128d891368bc9a22
BLAKE2b-256 91456420b9357ae48484041517c497cca17a9d32a772d4b09b98dee3e8bac1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b5962e54b79ce1cf4204b35eb0f1226ec56726497e2e7360cf310b29a633ac2
MD5 e287a33d5a1df1b5f674509aabb1fa09
BLAKE2b-256 38788dfd2b21308ea32236f4bc87f24c06fea876ad46dfc5e3505653ff3c15c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f2b76107c3863ff3609a84794354ac83f2974b7a439ce51fa518013365b235b
MD5 2c9e51cef02fe2f7e9c7a6fdc69c882a
BLAKE2b-256 d1fd5d87701ee004f39dd89574bb58aad9c86e793051957fc055e207a7dab8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3f9521138a229c9189bf9fba4cb58cedf62a3a8bc1b6e10fbec59ad79636661
MD5 9afb7c63765d6b7d1edeccefde8d2b84
BLAKE2b-256 115d8fa9b9a734cd4ec3e7c36df86f380c9da0bf94350df947fed5c8dc955f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5ac2fb9ee88df6836ab10dc1afe67608da6a99539c8ddc960ade5990df1f252
MD5 afab70c401694d0d161fa09c1ba65084
BLAKE2b-256 cdc2ca4732adf81a205afb70aeac0d3d9e151c57ba1cf72a65f9f05d7e1cfd12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ede8b67b90316cb376280298e1529f30e1a9119866a1040bd269fbade0e43a90
MD5 4fb91d6cdd1c5aad8bb535ff028a2806
BLAKE2b-256 808203014ec625e79d6689ec1eac5998c849be33370450bce46e8fc05a8e1ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03c8230c89ac096a760c92950671758c1e605dd349ff933840f6917f014965a3
MD5 902b7801d20db6dcfb3266f7d921e4d0
BLAKE2b-256 0aae39d42b256887a8fe1c6324e0368b2f0c990880b67e0503a38728b18b9b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e3ba842cbcf815003be06f206ce7d70653a36ea7131e6b61161561e04ccde97
MD5 5db65da13f309fc5a77080b4e539a4f7
BLAKE2b-256 0bfba870fb153d4f4f40e44958bd750694b2bd7e62b5c526b2a1230ec7d4e14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39910b38aed44517d3a50c4c349c08633ad93853c209ea727e067fe7ff758950
MD5 7de98b9d4efbe91be42f4fe329b6eb05
BLAKE2b-256 bd40e25cf23125d7f63c0f6656829ff1c23bb5da4cb2a2e808adf93145074db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a36e5642eef98423be90d52c7c50c118d6e31504251ab39f87608388bb34960
MD5 9ef0d70ea6f4cd434b89d9cf1654daca
BLAKE2b-256 c2d87f97cbe9d11e68674e74be2b676a90e7c7c657368bc39b04edb04eec6441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b130318be8448d0d677b4daed22341c7c1a5f90b8c33c0ff16173efd2cee0c2
MD5 83ee706de738bd18213bae2604efb6fb
BLAKE2b-256 ac6d29e327d6ce05eee1a0f444e9a6c613a73c4b99ae8f88ed52d7dc1c08df30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8f1aecbe1f424473ba1db4884e0ff78726020567377bf9b9337f64a155df1032
MD5 ea6c9ae849581b084e68bd7ed1f5ca3c
BLAKE2b-256 5ad715a54b3eecbe152956b5b3713ac9289a8212f492a96373f7f6416573ba4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05a9321f980e9e393fb8e7d097bc5652486b9c7842e22c6ce348f812fe69df9e
MD5 705b48a4dc510491b74ae72648748158
BLAKE2b-256 983ca044d60e15e747afa4823d18bf329f7d4e961f1e58e6710d27ecb286914e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c68667b9209df3c05482b0c94c7c7428641bb02f8083036ecf35587d0a06c7e
MD5 2af6847b123c526c9980db41c0852162
BLAKE2b-256 c37c723f5483d3a8e4ed14d6aaaca816120e6948563ce50dbfd662a4fdc13807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da4461aaa81ccfe3493f0954dfe8b472348b2aec877edfddbad1bbcf26c763f5
MD5 9bc93d24bd4860ecb2e5d45a06eea69c
BLAKE2b-256 536d64a9044ea3ec9cecf573b2b991c52e5ff17e5b0e992af395d11a06f64d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b21977638705527fa556379d91e766046ff32648c7c5de0e940b565424c1376e
MD5 0c44e6ebbdd3cb09eab5684f1a7bbae5
BLAKE2b-256 6a5fb61af62016597d75b8d5e68e033fa468c45cbe2dddab27c33f34f0867bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179d5b1c414bcc77bff069296bc28054a05f4cb1508ebc4c13c2c3810dc8b77d
MD5 6a19cdbca8cf5c85c5653aad7faf4822
BLAKE2b-256 496ed18002c89e26a6499898dd161f38dfa651f8eea5b8c7f144da7ce94c7832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24e2e01203a3e74b63362116ecc3964e732a358d104a2a253148d2fd63dd5631
MD5 b621f8e4829ce4b3df46b488c75c4478
BLAKE2b-256 840e49ad6c06ade9105e34b11e8b39fd8ef6d0f4ecba8bc4b71a1a0d1eb2b242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f863879016594076a2d189724fe673784a5315d4a494b6aab483ca14c5e26b82
MD5 f59ff013393d1049f9225ac121d8320a
BLAKE2b-256 4c6dcdde14097a40e7c5029f4d22f421d86a89c9015b280ade863deb355c4c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6660dd542a341a4809d08110c8ca04c9c3181fe6cbbab37062e4503d61f527c4
MD5 0db74ee85d97793e8848ccbcd63eff9e
BLAKE2b-256 76097b77d21d23875281cf3526a69f8b55a421d08685c752ef3af0074e093905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f2c4c1e73327f07c8f09226616df289a61af67c22d4a037e0bf5bc313ff0e74
MD5 348d054a7ee2c8e2fa25e8313b976e3a
BLAKE2b-256 6c1fdf49db694f48aebddb9dd287dbe633a78cc45a597116cf3fa3ee5ca6be36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c09b1367a146678743bd31517b09a3f0a46420b3b126bad981551ef831fc93d6
MD5 73a5b920332206d7e0e07114ddc4fd90
BLAKE2b-256 307c030beef7df5a039441ca30cbf926e14c32fa338c595d62439cb2638c7d5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c935e07466bc13f52c1e85101d72978ec731c58960844a02a6f48d1ffcb2de4
MD5 65e6289475a336d8ae277ac3b8426aed
BLAKE2b-256 06b9464c666c2ddac1148eb6211b42ae02c97504ae559a659ae110aaac683e66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a51d09a5d2dfddc6d9775a9d4dd8f3193d96c1347590ce082ad4359dc6e9442d
MD5 5f1b34cd5d40278e232f0ce66f344cab
BLAKE2b-256 e564d34d402bdcc5171dacbbd6dcc444e696b4e26d809d9fc15bab884c920686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0c80a822e6c0459a90a22d08a4df908a6302ee1c0324110cb3fe8d1f8e28a937
MD5 ac1606bdac4a32ef1fbf0ca2facc6f89
BLAKE2b-256 527adc7e7d6fb6fe8bbf8a4f51e2491652d4cc441c112a56638c7f0489516fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a375fc6a87ccce7ea995065386df42d532859401877eb4a4affa2bc86902c12
MD5 29f3feecbb3f83ff0240eef63044dbe6
BLAKE2b-256 b004973853e8c6be51a0daf7a5210e7597a9146fe9105b886dde2c1cf2bd9e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b931966a7493c0df43735d08b08801ee4ce93cc269605006ff2d61e3ee8e027a
MD5 0d6a7d4161f7b0ed6799425fda8b912a
BLAKE2b-256 ef85804a87682b7bba525d078f7d43ee1767730e27bf96ed44df956c13addb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6f20a73e7ba359627159a8814cdf71a90a77078a448197ca4b69c2d66d72c1c1
MD5 4dd4211350571ac4367dcd402edc805a
BLAKE2b-256 917ded3fb0822cc90d742b0d3c09f4c35fb633ffdd3261e04ec6162f9f727574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e05507328c7309dc0c5e9c65ce994bb69976d2210405e2ce401f2a7b1c3dae1
MD5 082e5ca2e0bf163fa79f76c1634bb191
BLAKE2b-256 088547aba4a558bdb6bde67b6a0ef602d7cc4a7aebd23236667cd4da21c838ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb3ad3dffc18367995430e45f77b786e0db9bd8b8215046427a547dd72d750e8
MD5 f4437450484d82cb67021211cdaf4188
BLAKE2b-256 aee1cb3af034814b8c7868df9281e2deba655910b1839da8b6d5c8f719e2f750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0866b7460f2f5e2cfca3ceb9220e01e381f18dc6a832c740b9f030a1de6a2307
MD5 e7925052894bc89250b337c0d3cdf27a
BLAKE2b-256 139f9fb98f415060cd134f107774c1c77ba3f16bb27bccfe0cb3283b7d5c33f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 747fd4735ededba8d4278d8419138083cff0274ad37960db26766ddb20da6b84
MD5 b9ecb090bf3dca9bd37cb83a219b4441
BLAKE2b-256 26f4e2a8aeeb1784ee660ec9bb6011558a00039c14d8c9e8981356a206fffbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01659628d424d96400056335d2df064e2337a02baa5923b40d4e1df65c1f080c
MD5 4f1320bf2bd06f244c951f69ff6fba76
BLAKE2b-256 42907039f05e855a22321a880ca7b6e9520bcbdf22851de47131a3c0572aad67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1143c4aedaa7d41b33e0cec0f4fdf6147c7f00b7f3d52e716f46868dee4fa6db
MD5 3e715498ee52135323859b8676fb71e7
BLAKE2b-256 d42216628a2619237e461bf8e5a033571694a45845e8909b47982a2a6dab5f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3baa4d94567d872b5612bbe5380712644c2ddb6e29664d2d63ba4e80d37df5a
MD5 37de0703db290471bd83449b8bd3e5a6
BLAKE2b-256 46f958bf5f8981d907a6b3be57641ac8d9122f98d9710a5cd5a7126ccce92eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb7e1ec682554eca805ec2fb89896a81d58542614735a70ca6afd913a1fec878
MD5 37d863c78de0cccc874fb9ffaa70fb5c
BLAKE2b-256 49d60762678705aa2acb40c7ec1013125a94ae5c4dc919495770a2e2fd48a6d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23adb0af1aec87d17205f2f3d47ffea53f2f67987947f269b1dacb6cff1c357e
MD5 5819b6a3f9e71b93d0924d91c017388f
BLAKE2b-256 f781d5cc78c206d0421f842bd40dfe9b598b8f935e4e64cf76e32786e0980199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0203bcd09f0a520c4d293ac5d810a3fe8d5c2537dbe78059bb02aa51bf05067
MD5 38a3ca41cad7737c5b4186c2cfa5dd75
BLAKE2b-256 0cc1a42f75d757ba1f81d82dd7e9645af60fda808eae4ef356cf9d09fb0abacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45b0a1a14076ff9b8e672a57801888e9dda3d4ea810c2722f5928b9347facc6d
MD5 248d0fea3fe9531b487d047cb45f21a3
BLAKE2b-256 dc1dc6792c43e3c43d431071ed832f2360e2101147f78a33d5bdbcb17d1e984d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53bdffef8ed849b64d04e0a70a01125befeb76f6b28f49625761b75df450ef61
MD5 c1a87808dc27bf33dbb2ffd57e9707cf
BLAKE2b-256 08424fc667bbfae81343c135144b2e70bd5c18d2da97678ba8ec872516b5fb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 dbd7d32b94e6b764a0146df9bc08ba842dff4e7bd751da670bee1d7adff6d3e6
MD5 fe09c729d8b2d5bb14bfdc0eaff3fdd5
BLAKE2b-256 7cd5367d524ab21bdd7c51824d1af0eb54677b965ff00892261a5ff8d5eb75aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 29868d41510c3b17eec195be0be226f9fa289a24a1bf91fa3cc40f838da59d3d
MD5 885da5e304411bf347b8bedff0b7a21d
BLAKE2b-256 458602ad2897737f970114a9e5fda7d02ad2c093882d25b2bb0b1fdeaec393a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c665d1a0d5456af6e95b9248b444e740d2ad1f666a205b39cf5e41bde05828e
MD5 87042c77bf4181b5550d61823f8d3664
BLAKE2b-256 bf75d5b6271e1675c601aa407332e8f0352aa92bf05040a7cba5e234a2f39019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fcef3227bb9447490dcb160fd2ba2006a5f7275499e81c1a643d573ddc9043e
MD5 94a738d9502e0719314ba1f7cff8f11f
BLAKE2b-256 6531fd58bfd567fe23f197a0dcb8a307aa7c0c246761143765deb3ab41601ea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9f8ac03156b85004f4f954e7ff1fd59f95ec7dbc35f45bf0557bc85738f132d
MD5 f02e9ac33b3c7ffca55b308682e4dfe6
BLAKE2b-256 a000a5b601289babb0eacbd4ced5dea58a32622470a2ca3de1a985bd6a2d7408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f64e2fc4eeda5972b020d8dc5319dadd1eb9c6dfa133e6304832ab33789f82a9
MD5 e20396d83280f63438c28dcf8167a3c7
BLAKE2b-256 4a375b4e5e2eb2c32d27a42d269f15b3bf452aeeb0d17bd85e6246320a9a9bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c73353344ef1c61024ea10c55c268b35e296c55ca50aab4249af956b465a63f
MD5 32c40d5f017efc9b669113c31e5c3097
BLAKE2b-256 34fb63e3b46b22beeea9a4f7601ad6f40d646fcc818f07e0a089fdd2e3bd1e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a790eb9d6db4da1a7d17aa59c409a4b0bbf5c603a728afe81ffcea3bfbfa8add
MD5 380e48676b6e86e98e5c9c5c001eabba
BLAKE2b-256 0b219096e14e0970462975fd2b5a3166febb1f9fbf3f99a4badd7c8e4aef8008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74330d79d0bf6dbdc971336b9fd5f114e9f60b6484454a323478505327002206
MD5 9219eb4131492cd2358ceb0924d4768b
BLAKE2b-256 c1074ffe8127de48cca4ac4e3a2d8a2a65b352771810e79795ef8558e25e4f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47069bc8aa9d1f1f6ea5492df88118c9943d41f72dbfa647d1814d31386525da
MD5 aa008a7f31c575d8e4c1e5f097695130
BLAKE2b-256 1bacb0c85c001f2d9b74ad823c8c83717979974f1a131becc998d13223a447ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d60968a44694702e3ae0a3747259f6c90252e1fe5394143fc172ac5b8c51b90
MD5 f742d0f609e08aa3e83ba1e897036c16
BLAKE2b-256 1456c8b557062dd6820b28938afe2fae5e4826acd211b444fc5245fe39785814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 41580ba4648fae75f3e5afd630a84e84c4cf426af88ce9970b4ad8111b15775f
MD5 4322149f4a916018b52d9c7035d995f7
BLAKE2b-256 aa470aceb53c6332ee21bf8db53b5e998c65d74226568281df413b340ff21755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f78609bc1cbf4f95209056b21fceca694613699b47e71a8c530619db7b382345
MD5 9883e36b116559d1717c72272e90018b
BLAKE2b-256 ab19f6ddf20cfb42e47eb129b0a8a558a668cf8ac29582fd8156578834ec0b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 126e8adb914e615aa3fa41e7b70973870df8f9574e815912d05efbe4bf27a7fc
MD5 1db9b019861a6f36325ce8269db64b09
BLAKE2b-256 dbf3b9cb556403fbca5d0ffe36a3754272ef56c49931c81e6829517975e1c9e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 21023adc2fe590fc5fcf5134f58d3aad15021d5d9d6e6cc8b5f2d083b2d970e5
MD5 073cd021b3e79cbaeb7fca4d0b4fe8a0
BLAKE2b-256 7a7b1fafc88529fa56e5f1e38b3f506bf2498cdc8da9e4bf0c2ccfaaef7001c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0e1a947b58a8c8a136ad474b707c4f0eecbdd27a6ddebac28d301f81aeffac49
MD5 62998d0a8eaa5e803739b0d889aed7db
BLAKE2b-256 d0826b0d75422955d99a18f102b71c6e4c0262a95b39ff2b012d39628ea9779f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d033728067ad05a2472c2e708033a99605c633efd73e77b319b6d3388f6b229
MD5 611a8166168ed9fa5653ad942a9d826d
BLAKE2b-256 0ea67f524df12f708840c543a4a2bfa2a2e92f3318bf689eb19a3361a8e36f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4e388252fb3063b3fe05dc7f4a8728188a4f1d5bed0d488596b60aa2d1a6720
MD5 eeeaa97c71d41f109eb47166933cf412
BLAKE2b-256 ea5e7b455b1930f5dc6ec0af747937f3cd8aeb53a9da1540f4cfe6211e4ef8ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f0ce9373f76c40662c3e80ea1c2d85c719a48ec0e7113ac85b6bc07ad65d0f5
MD5 d86a8e0eb06bfcb4db62d795062698eb
BLAKE2b-256 b91c8f0884e44d040dadd1b6f15920ce530a1f457eba9cd97039637dfdb6b484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e2afe59d58bd3352f297ac3b964093e88bf318e7ed40c88bdfaf5869008f3c7
MD5 3dd6134a1da9dc353fab891d24c31c3b
BLAKE2b-256 8f39f8abf825d8b746303788282bc57f4cd256311db68dd4a6a7f7e116e3a61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 783729f1aeda2fb7d23f8e1e3b3c5bbc8c4fb9318669bc90ff6e02a0829a9af6
MD5 0e5a1e6f5b78d9318d8602edbc893b9f
BLAKE2b-256 d07cda891b7c157cd5c6ca43e8e5d1a9093ab6bdc95477bdb802733ea290fd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4292c201a949c72be5e446a0a787a760658100d9e279f389ce1a2270507f9785
MD5 001c0a379a2e68537405ab388c8487d2
BLAKE2b-256 0c0cfd727e314e4cc82afdc587540ac681705a3fb9464938274e95c2b935e100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 492bdafd80507fbb718243d484e35d9d7e7dff5e78c6bbdeac674dcae727819d
MD5 4e53f08788c46a4a1a4acd59cd9caac4
BLAKE2b-256 0576badac0c302674eacbab9e1f1d20e7369da1a3ea9a3a1ca5d0363a5404075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f683451ce34e9afc889dfc2d848620ba667567a5ddc6b8b991dcfaf51f6d1e64
MD5 3411c52cc6865db508293d56b77fd4df
BLAKE2b-256 fdfa2a89f3d6c3e296be253349af8b94c7ab0d5f37390bcd443c206c42f827f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585b982a150521a78a47f88209d8d937022836d8ba8ec5b6333dbcdbb277fe9f
MD5 a0fa4fefbe7ef784867a24afd2027910
BLAKE2b-256 584398f18bd96c5086e7025ce497c6e10e7996c7df20996cf74fdb9ec98e47e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f20af71b2b31fb13f0279b31eb2301e0941c13dea1aa0c32af9c3f5b9a0b796
MD5 2bd72877383f09dbcdb9713759e2e563
BLAKE2b-256 1325e260e5760606be55440a84f7f401f4e47f3654a3266f3fa1eb7595af4558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5762f4cdcd46495674c4c2253d277063642ce138cf4deba68fd1ea4cf682ec63
MD5 8dc74f8d7321e8237b52cba8f47478ba
BLAKE2b-256 2c440e67682bc49cf7e68fc81e8d41f56437501446a9105dbcf6d74e87d09d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7dbc383d438567f10b440dc5cffb1f4c72e8a7ec986cd126dd2187ca27963f8a
MD5 d544bca507753e645d91bd80acadded0
BLAKE2b-256 c5ae3b297f749d9e914709a2a3a5b70eb2ed39345b45cebf0584f32b8b6a4e79

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 63eec817ad7bfb353f1413a1ff09b1e3feb0bd28718c24aee5fb055a3b5e7691
MD5 601d5257ddf75e182153d5fb5b78bf1a
BLAKE2b-256 d583bc9df7ad75eb78734aa346b248ed1dca564dd20b741e9f3d192cb66eea10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a56118f63e7fb92d798baa50011fc776f9aa7c3f1332887d950ac0cd29089b4e
MD5 36589e4b8358a65f4bcbc41d28564124
BLAKE2b-256 36fd9041fdd9179da1bb6e30f0cbadd2024d4745d82dd9ddca235286b4b246e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 25eb79fdf7a8a60a8a27ebecb5911c5de2fec341f87ecd5ac3787baaef9e74a1
MD5 1c178cda0dbc77430e1edab1254e33e0
BLAKE2b-256 5816fbc56d63615e1ce5932137de4a0189989877bf0291433a37174611c74945

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96632ecbdcc71061e492c6016401034fad3e4437d91f38d7785d7e3f762927e6
MD5 32d08f54b6bdfab2ee47ec25f3ff6c92
BLAKE2b-256 ba3f5834bcd8c6db7fa5679d5dc3cdfe78a68cffd07b31c22db6b22dcf39dd5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 864e67b5ae988cf35056685b608dad9970f1a37d507603d060e9d3e72962e017
MD5 51dff4f84f5251d8bdbd114d1e25ef77
BLAKE2b-256 06abd549dee8c77fd5038b704c42e0933c4985e3f29367f4371cda038a1d8e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67304e66c60f2e4163e75cc205d078a4ba1fb7bb9b4b48fb8ae8e51884fb2c43
MD5 d76e97215298ac89a923fb5fcef0116b
BLAKE2b-256 6ba7a78046bb31e6db452585c19dee9ac3169da0a2ed6954851bb8ba9c6ecc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05b771d376b3213f8280f421565217b0d3ca310acc3f59718e6451a43d63427d
MD5 e8bf64b4019cfdf062c35c249c4ec7cf
BLAKE2b-256 9e97833a40ae9fbf62b0318c9e341cdccb3c516ec58d408e92dcd66809c0f3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a76e60359ecd99aac45c867f8325de1af60de88a037e70d12de799f4e4c2a90
MD5 0a47f77315714a5993f7e5a4be914936
BLAKE2b-256 0ddebb371a3fdbd5050229025e3278a51d038ecb471f0785fd21b1d64c2530a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd8dcee1b384971d6c952186679afee37b80cc7a929e3700315b0645f23538bd
MD5 359d9b0c6b7f2717ca99a0f9afe0a2ec
BLAKE2b-256 a2fce928d55a666bb828c6e04c14a0659d2512bedcf2423cd63c28c57927ef15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f774b5cb2b8910bcbb19205917f966ac092702037ddfc464c9a1019d194c3b3a
MD5 23b785ed0941897b784293f8805a1462
BLAKE2b-256 6f44113d0223bf1ca135070dd41cc68e51bf32df8c241e0dcac99cad00a1d45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d152a284bb5fe62485049c0dc9f53f51d99ec8a3b45773126ae1cdd5d9fcb95
MD5 261bf2c6f8099957dbb7211123875571
BLAKE2b-256 e1259b6a053fafe8e5088cefd53d17f354061179e5b9bc15b2fea80ddfbb5d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12880009fbc61ae6e1893b98a6cc2c346ab39695b31e6fea99bd600995bc607a
MD5 085045a1544dbd7a26d7f12e9ce185f6
BLAKE2b-256 2a747d3cc70842456df66316b08c91d51c3e4ba643e273dc16603d7202cb2a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d818d28e54da9c9ef6c3119eb3d3e7a65ea20d3ea7f5462dfec0e9ddd27f81a
MD5 ebb00ef57e5066039264714dc6acd6d4
BLAKE2b-256 86d8d38874dea938a16e61d61104202a1a97ca0d9f96540284ee06550c5ab9c3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9a0b75f1b7e3ba61a02eaf6487c5e3b2388e4d0a55cc28e98645128e68d60aaf
MD5 93ea11246c71b40f95e749c2e473688f
BLAKE2b-256 0602ae911ced0be360ca9ebf8b8221cd50e6feea3ecbfcbba077c310b888d826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7e96ac5d52ed17fecbd195a6b81f92bda13b44bedaa2e9e583940ca619afe69
MD5 e6cf78cf8959daec3cb1b10b93587ad3
BLAKE2b-256 0409c4376c6fbabd7995d19bb4bf5fecfde8a063833c8ffe7d10df448bec5821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a81dd60bd7f89d93409affd773b8bc85c9b6b08409238ae835b0852d838cc9b
MD5 0933eef364d4cfd0510bfd9f2618bf3c
BLAKE2b-256 a2686a288ac0d6dc87f5e1c9dd48b6a7d163c561794399a404868cb8625cb342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0895d9340d7ba4133f281453cdd747fefb3ace4c81c01665693243feee5b105
MD5 984d02611f94f960abc040cb2d2033d8
BLAKE2b-256 abe994aa9e493ad54890034bfe64a010e7a362978370e122dbfaa13e8a1d5b14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b33ac63ef88ae67053f567a069a3545597405591c39909c38cbd4902a44ea425
MD5 a2dae4d27a9ecfa3dae7e228c44eae3d
BLAKE2b-256 d0a32e48f7478cf5709db0da3f48469f1bd55c9ae91b051e1fd6c7a34b15edb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69eb8028c7d2bae0d523ab361af2e78cec13cfc6eaffdbed8e9f3ddb99f65f6c
MD5 bdd7eab51af27198774f0ccdb8438f66
BLAKE2b-256 c6da317293e586432f417c32f356b80caa2caca85e4c6c106ece17c5d849d4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 996ecce4ab3c8c542028ea91b3e91f0684622490367f352de6d6efab37723ffe
MD5 8ca222333810c2815b076949ab0727c9
BLAKE2b-256 83bde91777ccd3cdd21ef135ba9e3ebb81a4050d9ca8bfa13299262a61bb2169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28baaca93d7e8103f431aec972401f8fa7b54bbe4f4b1ed1a9155069be38cdb4
MD5 ed7a0984b11c972e47ac0f723ebcd50e
BLAKE2b-256 bcb7ccede4f197f5798cef89808823d42a78fe9a9b59bbc9a56a352d02afb544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0498e05a71014cdb041443c02fb898b72ac1fc70cb5fea83605ec83249c8b54
MD5 179560552801e7a5c0be421740d9d00f
BLAKE2b-256 17f6a22aad942b27c30a5bb6a5681c8e99acb68a06e9bd1706a6df5f74bcba08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b13ada040239365ef01c80cce57c578988c98da0cd8d6f4485acb7def0c0d34
MD5 5035e3fee350899ebef1f73bfe2179ad
BLAKE2b-256 e2c2b7f3318544b8e9ef0704d8c0ec4046055cb2903dd26ba709790dce8e6ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4c82c5997a6dc8eb5278fcd4ba629ee07dc63b1e52efd706b7068244f5caf24
MD5 1d908dc5d749e6f02e503fdee27d6b35
BLAKE2b-256 f43da89894df2df445e5febea8f6f276a3abc77418ec41b275067c3ecae2c5ac

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