Skip to main content

gumpy re-implemented in Rust

Project description

grumpy - Re-implementation of gumpy in Rust for speed

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

Up to 100x faster than gumpy

Install

pip install bio-grumpy

Usage

import grumpy

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

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

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

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

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

Project details


Download files

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

Source Distribution

bio_grumpy-0.1.9.tar.gz (3.0 MB view details)

Uploaded Source

Built Distributions

bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (818.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl (843.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (915.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (829.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (762.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (651.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (683.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (820.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl (845.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (915.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (829.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (763.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (702.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (651.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (685.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (821.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_i686.whl (845.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (915.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (830.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (763.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (703.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (654.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (652.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp312-none-win_amd64.whl (474.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.1.9-cp312-none-win32.whl (445.9 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (821.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (846.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (915.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-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.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (650.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (762.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (686.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (570.3 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (588.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.1.9-cp311-none-win_amd64.whl (480.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.9-cp311-none-win32.whl (444.4 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (817.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_i686.whl (839.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl (910.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (828.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (760.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (679.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (568.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (587.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.9-cp310-none-win_amd64.whl (480.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.1.9-cp310-none-win32.whl (444.0 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (818.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_i686.whl (840.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl (911.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (828.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (760.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (680.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-cp310-cp310-macosx_11_0_arm64.whl (568.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.9-cp39-none-win_amd64.whl (480.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.1.9-cp39-none-win32.whl (444.3 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (819.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_i686.whl (841.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl (912.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl (828.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (760.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (680.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.9-cp39-cp39-macosx_11_0_arm64.whl (569.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.9-cp38-none-win_amd64.whl (480.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.1.9-cp38-none-win32.whl (443.3 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl (819.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_i686.whl (840.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl (912.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl (828.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (761.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (697.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (680.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.9.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.9.tar.gz
Algorithm Hash digest
SHA256 1c2ec6e24ce6181cafdf4708b60af5a28a34a3e6440cb3cd16a04a4b4fb62214
MD5 52b04b80e38600867ccb0c292a7ec9c5
BLAKE2b-256 2e7c1fc45cd95b96e62c65912e09899bbaf034a52c4e080bf229534f66e785c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6cd6a9a9e3730d1b71acd7179c34e437e5896745bf1a89cc5febd014e69d1e30
MD5 aed24dbd9a8fdb7cb885838aaf9f051d
BLAKE2b-256 5449fea542318e540f385aa8bda40539d835e484b7d81cecbbd11512a2699dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 561e234951bc70b212c5bb984156595b13fca2a544b0b54f85feb2cae86f781d
MD5 a3389613266a1a471f056318311f0d2c
BLAKE2b-256 125bc9893c4c8046c80a92e60d291ba518d0491512e0e74c6b8878b66f575bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 150666644ec57981feec6864e092624e08bb996fccd48c614f67cd253883be77
MD5 e36ac70e49695a6f398f93bb802cd722
BLAKE2b-256 a9b72ab790adc6e4177b4977e1d804c4d3bfc1b0118fa75d2a953312ee09da25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47a8f3f1a43570706352dc7d21265da796a301f1a871fd0d76b77305f716b371
MD5 268c1aca9124ae78ec3ac630cf0e7e4a
BLAKE2b-256 a755283da38cb339c24bffdcbcadc87dda1a53ce979aea7042c795835cf20f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b77f6b9856e36a5b00c82af5b8048796868bde8a93962145e59b2fad6bedae92
MD5 29f3adcb3038e05211dea3b60a160725
BLAKE2b-256 5008cb780e9e983634cd0f4a7946c9a713596ea86356c1e6214e3f878cb9ada7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bb2e0f2432945d13d4741327ca35221012b074d8ae417ed2273f7acc2e1027d
MD5 51700ea502de059b0660e33fde67b3ee
BLAKE2b-256 1422283dd24244402aa636a152ffa071531d1d774f01bef030fdc7aa376aed27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e15efd507d6604fd1eb16cc119dfda24797d38da640922c36a79d9f14acfe55b
MD5 2b6ed807b4066f69d5cb597e26732bc7
BLAKE2b-256 7600a6ad3385648ae51db9eea537caad51ce9a69bc3c6a8c3e74990305c8c6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 641c200748adf42ce4d2f143f4b504a240456484461ea88550e3e489825b2c01
MD5 bf2737d67c321c93358ef756a54af049
BLAKE2b-256 21e80e1c1ebc949d373410f0d3b83df53f3b869a058ba11ee2c0749ccfcea07a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 541126abfb591f3dd3b34dc55b72ca26bcae40391cf7a31fed20ba13f2306179
MD5 1010aab3684822535015f0e44135f3b4
BLAKE2b-256 d8d76296114fce54c97744f0377737cf5d95fbb11b71d72eb19114b260a810b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44eb66166b748bf667204de2844a49aeb1ab350500a0dfe29f81fc4dd126e505
MD5 8ef4544e78586502c679ae71449c870c
BLAKE2b-256 f8186dec09d64595a58ff429cd56571b73148a3a523568a64feb645306b4c800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c480257ba8d55bb4540c6d499b9b32bdfe789cfe532bbb4278e8870cb6751463
MD5 f6bed2fc53436da006e0d4b86fa94bdd
BLAKE2b-256 73b40c99d594519b9ed2b32fb81032d68e96d7dda4bca6389b33c9ca029f9ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 404236be68cb714bc9b9afcf77bbe315e136238bf116e9cd5913be70a73fe0da
MD5 afae09807cac1e99db7acabcfbef61b8
BLAKE2b-256 d04bd9b9b132d5fe43003ce57de73094c8aa171fb5458d991d1dc32113ce2763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9121e9c7df8496970e73b26e2331c4f19cdf1cb3d6c89c6e7ddd3f7d6b370ddd
MD5 876910d0f9c836850bcc0a897c260ec5
BLAKE2b-256 326f8611cf7c56b0a13c269170c231fb7ae5b2c9b6cefd03d750d493d518f4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 108b59987613b6f23f551f75f5b587ea8982bf0cbf30b6147feccdbe1ea4d250
MD5 357d986097bb791022a11faee6674174
BLAKE2b-256 6a0a7e5c272ab1ffedbfc2303a187927da67a65460874baf2acfa0fa7a60626d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c57129230febff687391294099f138e36fc46e4b84dd705b63f9338a29927a16
MD5 197747bf6af5b69cb8208f75fcb365f6
BLAKE2b-256 1a05fe861906daa7518ecaa0844f646261129a5e286a1c859cfd7235c82435a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1ab12f75c1bb745fa5e07412243b5925974609a3c694b2d7605df95f525be097
MD5 35836456ed556af07ffa33452b6b65ef
BLAKE2b-256 975922308ee5c534b89d7be1d6eb3f6580014f2726f353b8b89b67a2ad449bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bd4b3673689c6eee14fc83eda288ffe5072c09cc9c530f032fd5962f6622396
MD5 2d3674c90510b3cb747ff4951afd393a
BLAKE2b-256 ec629de7d840020e76eed1d8c1684cf9cb48819ccb1a2240030333d8a38509a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67c860076288cd8b6f365b894dbec3d5424d4f031b5a2c34daa80567fba9c2ff
MD5 c726a2d03924ec640a6d34d7704fc18f
BLAKE2b-256 21ab6af90db867cdc70ff5b9852f9297c8b85fdee559d6059920804776a8672c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a19c151663d0e09f34701acb7d3a8c123f3c2467a3df31f25ca2d51f6903c90a
MD5 e65e4e19dc5065d0c153079232dd822b
BLAKE2b-256 aae4f03f157fcd31c269a7abc442844ce19413d6a72813586a521bc988039cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ce69b3d33e3d1df933d23c79bf522df46aacd9306346e8fd38f35ca14d33767
MD5 f5eecaf1b10fe868ff59d98fa9ad59a9
BLAKE2b-256 542aaed23483a88e54a3249835b77b3c99025e2e8b7f9201cc82a869ece07525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a92129587c4d17f0ed10b17d37e1c47429e47f80ba74980d33a6ab65f83b8efa
MD5 b46e426ed8fd0ce04318b19ec961eeb4
BLAKE2b-256 32592c0e98ad7d19d97dd8d253b298df77e2e909014bdc29d41f21ab54ba2453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37c49b1bf75108fa12d9e62b128321e90092fd595129f13b955e5317af41073d
MD5 9104c4b06c65b820cf90585916a8bd19
BLAKE2b-256 5fc1740df53a2f84decc856e94c3b3744d83e6941d28a2fd3305bf1be4554ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 30bb6cc5670a9dc934f78271a95f2a8de476c918e17a127d02bcec9d4003632d
MD5 2a2d2821d71a7cd444f0bec1ee5fe34c
BLAKE2b-256 c9be723ffbbfb6bd10a29776216771618ade08ad395071c1d9c4755374f9c75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 96f358036e931e64b0a4b65502b231210a46ce7600952a95186e08d1ac7811aa
MD5 480268633dd535864fbfac5c9e803e84
BLAKE2b-256 39bfa95959ca6fd03506c95dc073544d02a7caca05717ffc1137a48d20e8e0e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b776b591b66d68904a38dc18d961a3fd5a55afef250df51a7a1f3f0bbdf83919
MD5 e56ca91c72fc98150becf71b6a318e06
BLAKE2b-256 6c153ac935183a678cf3674b84bcf1ffa25e0cd985ba1d683ec77b9664c9fbda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f90f967978edea7e0a034433f908475c10757273c1ffab486235bdf0b5b76d5
MD5 ecd3a7c9b073eb09e88ab45c9bbd6d2f
BLAKE2b-256 accb632cafdc5f9b97d988ee8818075daef89c1853abc623de4a0acf8f90073c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9267b6a9ff756ae9c91d050210fff357cc1664da4a43b3743ce6e9078dfeb99d
MD5 30a3eb3fce77ca5d569f88364364de40
BLAKE2b-256 8b650f79da7e16c6dd2daee9497bface491a12b4b7f72799b7eb02abb6d5e440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caf13385c6a05e9a9b0344e7db727f92835d52206bae0de41b02715b829b7ce0
MD5 e2fb5b3a2dbc3ac0c4be8de7b7207df6
BLAKE2b-256 cacd1620418ae150cffcd4937f1ddb957116e350d7ad06f17b01ff65bf0c17a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 03b02d2f9e53c8cc95e4687753f1585aab880175798c89ce271cc13bc9b48f80
MD5 fc49c2f9bdc3d186f8e69c565ab22406
BLAKE2b-256 3248ff46f1603a19300f7e6e33cecf82b8bc80f0a64c2f1e2ed930bed06086b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b592944fb4ea6043c6d5fa638b073f1e5c9d17d5c48f88cc305c2065a8931991
MD5 d8ec09fdb632307d4b2239e562401b78
BLAKE2b-256 43048811867c3e70b68284bd546ac5c78a6019c2be3ba7001449b971d20ab5e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02365d46e5f5bfdd78170ec4ed0f76ffb59bceb86d329ed90dd8cda3c5035006
MD5 5b45c7f694f7b34ff68cf3ae64abeea7
BLAKE2b-256 214d26d2755d452c416e7e94d16006e36701fac5376598461b2bc436d69f200f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f09d9456b338127b47b21f8c24f6e355a57820a577e4cd92cff767f11f59cd17
MD5 7c33bd62a8fb425cd2b54ff52414a8eb
BLAKE2b-256 5baba827fc2429ceec5217891317c90c3a5af2b2f5d47c47a6111712a1b7fd60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a9b221fca74b3331a0974d9bfda774ce93f1347ed5c0b5bb62aee77ebcc7280
MD5 858d773554f1d9d8ac6f0192a0bb1ac9
BLAKE2b-256 1ea2bb7db9268e0e5ad849aae81b87483590157d8108fc1e080bc7ba82b1ab97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 390874c700deb98b60efa68616e4c7464b6365f7edcff85e552aa1a9f6a0ecd5
MD5 5601acf0a7c724ae21414d5cf8c4c929
BLAKE2b-256 7e36b53119b2cbe7adfd2590e893451c0b07aab16136331c965238e5ffd081f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7ffcd3072e9365ca313013a3c86a50ab77922e8746b424b12ad59f53d29167f
MD5 6a4ea0f474e326a0e506adb5930075f0
BLAKE2b-256 da9496c1a05567d35207bdb4351c816f5cdbd74e6d5075ab52b92c793638e066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb2482346d75eb961c8a769678eabcc2e680cd1fa2f5004c269b391ea4f753bd
MD5 4045d3f2858039250c35cfa1fec83913
BLAKE2b-256 8915e65dea091db078295331312ae1427478e430d4c1fc8f7f5ce76dc604ed5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94f2f318ef6edd408fcadf9357edf34ea0a191913b52a1f394080171c4805d7e
MD5 0575bd46465361a062718540bf4f6f57
BLAKE2b-256 1d53d30f060bdc571e452b27cd1b640386ea4d4a7775d8381f7112660c24c4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 89326877e3180b0cb02bd9f41187b949ea5f71706132f5e1310a516dc0ebab1d
MD5 93ba3bbb1aef1422291bd4ae33cd6878
BLAKE2b-256 b1aba1750500c57c70fa25aa7f31e60a204d1c1725e077db9685d4d4c0f4760f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cdce081ed33e13c78282b0824a4f3d6cd4a8e331cd41d1cffdb667abb336484
MD5 250a527f5e2f279921afc3afa201c65b
BLAKE2b-256 2c7442fb0aa837dbf5ee56cd84b3fd06b26869cdae3913a16137619f74d0750c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0bd722ed1cf3d55ca5c7fbb3128a2c833db3a9653b1e4262c2517220855bbb90
MD5 06d1ee99f413e534567b88fe2ac3302e
BLAKE2b-256 b57aaf93d792570c4667b72e15810f72ad329324d90c6dbb2a741a0393268441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a42025929b6a54d02663557746a19cde7a934ec36f4c110ae016cc6b62bf7817
MD5 090d246533a7674aab53e7cabaf2ce25
BLAKE2b-256 8215eec9735fde9e2833715ad8e319f2ad4381f661aaf270e2773e8ad6dada98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d44da36dfe7c05c7d910ad1a54174d064929cf011df692696887f674f746361
MD5 a250201f66003b2ca799d278f2e9d199
BLAKE2b-256 64107dfd307d64d9d94cd05a6f5df9ee36336cf54716893b65e13a65e1ba4478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ac18da23107650fa307c0941b59ea20e192df9334f6e137bfce5805b187b8e8f
MD5 369d40a78275f3274d478e10f3e5cee6
BLAKE2b-256 8b80f2f7815cccb7b44615ff962aa34d8a552f59e0d84f517ff33573978480b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-none-win32.whl
Algorithm Hash digest
SHA256 968697d3077be29b7e0886b6efe5992d8f5e4a1a62d13d010a9073fc2258c40d
MD5 0d72ccbb6e4dba0d06be7735fcded40e
BLAKE2b-256 a3f7014fe9e4b486d676ce6ba493a698a9cef133e1c26466626f1281a9d3833c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b28f3af3dd3807382a7559439a2cb8eb7ced587a4fa2713cc711105a62d5b2c
MD5 54d7034f9029f4639ad133958b3db640
BLAKE2b-256 5ce6a775ebca24e2870038807405db6c8041ad75f14713d6c4edf6fca4765776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af12412d580787066843aa052ee4a11fceb12fc3ff542ed503d0a22c59d5a3f7
MD5 42a66dbc4c8dc61c3c82717e63f86949
BLAKE2b-256 188006366369d5ebaa602490bf140793d440ed6f2b22a7cb373b8ebf6298b7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9eed9e1e41e548e85836075a8fb6b9c3ab4f85cd652e4c198e192c51455ea67e
MD5 cef7d198000af974b102445e2fedaf4e
BLAKE2b-256 c345d5f7aa3586058462205eab543fc240d07e807963874025c0d3f5ae92e98b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bed3db143051e8484888e327eb5d1b61873f282f810e62cb04b1c37e918435ab
MD5 ae1a56189ebf19ac116338d7ab0f1346
BLAKE2b-256 3975fa80fc7987656ea92c86f01ac34edc150c6d60c64bd072f3e96b2de6917e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5b8c62521eb6160e12a736b8ac7e9434ec7167dc60d05d02826c5ba36923d98
MD5 cd52d35bdfeede68da791b82c065e09d
BLAKE2b-256 8cd6c09f4c05a4085387fecea6a54389c536e6b85b301131402bae08b250aee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f433d8dc25f6e8c1131bfd5979c01ceebc277fd6f054bd9a0d9cdfdf2c03bdd
MD5 3394b05a52734875fca7ac1959b39a9d
BLAKE2b-256 16320e0901e34282ed35877624ea2caa4976a65cb7d0eff785b2087cd651f2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee8f50be661aa65ae12cf0e05064d7e12702e01bdca7b91536afc7baa1390148
MD5 132030ee982bf0da979f7045a24054c3
BLAKE2b-256 d2e561e382c5875c2241ca4adfc573463065f929b576a214aa5e829711b53ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 360f54456a0db259228b186dab5dbd6e17d89f7635170f2e8141fc6a4d15cd7d
MD5 6c23eff6dae4ef9d60511f8c402022d5
BLAKE2b-256 8714c3a0a42c1b6399c786d86934de740cac64d44d40bbf7b96a51188d133fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02589bb021369a11308a4f9e716b84878aec52cabd0a526a381779614f08d827
MD5 434d945f39f477c597f9446897c23aef
BLAKE2b-256 b74d70c8aadb9ad4a4dd31e44e28d2eea45b1c377e3f9d51f517b1ae8a6e297e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aa4610bbfe82c63377ea568c930288d9f7a502165f888686d639a6f0274c29a
MD5 ca6fdfd5268214dfee2b64d32801dd9b
BLAKE2b-256 103d62ea7f2ea46455da8a1f2dfdb4919e56127bbd409ea6d04e3696773448cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e6dc42afb16ba3742ca1e743ea514b7bad749d3edc3cf1bd090ac5ee0d89799
MD5 0529115a2a4c9029b4b12b89cbb2273c
BLAKE2b-256 02aa33d6c2734e479d96e29a1f116f021ad5c34ca2e4f39e184211235f4b7724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 592678a7a6dd1bde9c8546d42a740c503f33e550a4bdae221d0fa26648e44339
MD5 2b3c452faf97035c901f9a99758ab4fb
BLAKE2b-256 aa6e1274c59bc22d68c5c7eb03062c427a09a3f962e82bafa209a8b30dab9401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 32d33c82c303aee560e4b15e6e561a05876f668ce776a2ac92c5f9a9920fcc50
MD5 364d1167f7372344b9d9660c1cbbaed3
BLAKE2b-256 6119be2b7bb9273d7cf804c4300605e7c799d067d92f55dd4fda7b277ef299b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ab7e2e0412f5d37442bb5e59ca60c4c1d2e008409753b66749ea457c3988b582
MD5 21d99dd6c84f648c0573e24ef66b704b
BLAKE2b-256 ceac6249d7d7afc915b064609f5c2d5038db2d1b7a5be4d02bb5023c7f32da18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6efbebfcd481615912514ecb2ca7bda6dd870eb8a9168f5cdc447fc58d6337ca
MD5 3e4509e09aed91c1463e09ad0b86564f
BLAKE2b-256 e22387955dbf6bf12c542a9dcd0d7928614795002ff947acc302bdf81b3f0600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf50fcaf1250327e0a16b42f698963a03b63be5a1c1a3ab5e1724d294d270a91
MD5 aa01533f950056a5607aa9e98a2297e4
BLAKE2b-256 d45ca7f634d65218378e87eada65ef882732d40c381e68020be3bc3c29225fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 109ee27dc78b8d420c0fabef6038c0c3239b448872067ce4714aff22d879a608
MD5 5042a33ea3539a9115d2e4dda6c7cebc
BLAKE2b-256 4228ed2e00aff07736e8acce0f8c71228ec6264b9154937881af7b75c19cfd5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 242eb4ed81710afa91beb79bf54e6b1b551b0fbced0b15f49dcf0d6d4508d167
MD5 7305e973f7f7ee94438713159fb837d7
BLAKE2b-256 3bab73033be0e421eab55c764d20efbe5a2b75c875761a4370dbc5974ff24f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b48da429931e43a84ee9982d075cbe6cc51fe2868695a8d5bf0f225901903e0
MD5 3ff1683c8a3dd4d62b4581de3c0706f7
BLAKE2b-256 1da82ae50d61fed00c3ae913aeab6f0a316a3e5fcd49316d88a2da1465cb3a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8a5cbc5c45d7213c6e022de3da5be0d5c67ebb9f5aada7c0b40f95c464b06ef
MD5 55cc2cac4fa909d9de4b65f3c0dc095e
BLAKE2b-256 d421ad4350932ab74a2b595ac77b552d8c41c9114af6540c150301c344b31dca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f8ca8734bdacb31702e6c5b333d07ec2259f2d01defa3279a06cdc55d0ae789
MD5 4d4c838e77d52d4966b5841e113baef8
BLAKE2b-256 8a18e719fa79a446ec5c05a2d8c872200e9f450ff0da1f8dd03ad6e5737033eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf9ff3c1a59832b18238d181768588340e8c01c86e652c1d02be0cad2b66a433
MD5 94bdf0ea9e04688bb7b60d886155cb0b
BLAKE2b-256 e3f83298ddde62c29d13ffeb18e0a23ce3236bec57008b58cd23f611a944b3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91d511bdcfad40c7297838e34fa0a06cf73796072ea6ce62c288d0dd9f466040
MD5 a844466f41d94762234136e126245fbd
BLAKE2b-256 8a500a33c5cf334a7959c8cc4dc3047e88bf4a6ba2acc523f860360e1f94f4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67838e4bdfc667b55b48be02b971f80db10065fac1c4326a3a8c4c4a5aa5f862
MD5 d662b27df5e80392fe00e5f9f50d38df
BLAKE2b-256 7932f95c123c632f3c07f0dd28f52428e2620ac880407c9e4a06d6626397707f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2745defb0abac8520055f564c873cce30f89d2ab6c8937a26288cd0ac3e41e6
MD5 fc3a6419803a823a3e8f90abcea6d2e5
BLAKE2b-256 56604d117124dff4cbda8190fc55f6a02a140699c9923e4a78ae3bea246a99f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 360691b47b1e4a517757cf99b7d03355221ec6186ce5c34937ea93e5b7f7cf55
MD5 8c52880ded57c1951aa24de61e8b7e9e
BLAKE2b-256 19e153d9847c3f785d30cd216ec4af52f27e0d63736de8807d794eeb6d04933b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.9-cp39-none-win32.whl
  • Upload date:
  • Size: 444.3 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.9-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d12feda41f7b08eb69812d1a545a1e2785db03ea8c3db870f2d041bb141e546d
MD5 706dbd03aa64b6fa54bab26c3771af63
BLAKE2b-256 937330439c10244e1e8add09d9bb7042498d13dae3ae7f0ff6e5975f0c5ab80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1db27525a172b5c2b08f38be171656054316219596fcc60a06ef51a5b3b23214
MD5 5544857cc029f95dea07127b7e6e12b9
BLAKE2b-256 024c7d7e751ac06b77dda6e187b15c1b887ec17ba75200cf760d7dbe5f78920d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8067a9057111bf4190f0dc1f450993e671f714df5f06e885e78bad4e2c3ae55e
MD5 ea2cb64ca94d96c3336e4ab9cbdbbd35
BLAKE2b-256 ff9bbac8e2021dc9bcaa837b3ddb35a366fcef127cbb59f71b53c9d142276001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2805a7e97f8edb716415afb7e495218b1071abb6866bdc122671f93272d558da
MD5 ab21ad9e2891038bd42b0b76a9b4917a
BLAKE2b-256 06bfb564c26a5adf6849aada6bb647769642135fb10dde52fcfd56b64c314448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ce8150388ff0d4c7610add7649230f2d39e0efbe231391ad3ee1f00d76da8a0
MD5 3b7ffd1ca0632f81af901a4f4388c3f9
BLAKE2b-256 67f5e8281cddaf6e28affb1709b4e47b6d17a18fd29c8dedc1410c13f077998e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4b21f031d92f61548b78d47969243b48b00a8bae7c35f100c89189835191b61
MD5 3c73ac200e3175e97b7c9e6dc1db0268
BLAKE2b-256 f1153d1dd0999feffcf6eec069758b4bde203118202fd3b300bd33c7f9784be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06de985dbe42d348c87ae603d2dc5b16c285bf51d3243ee251b14e88f3933868
MD5 8b2b4306d4e5732dbf96e43b86acc9ce
BLAKE2b-256 16c87b3706d2baead2770d568629f185053c0fc2ee4d8ab374370802308021ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8502a8d227ca4d895dc8340ce983d129f9a4f14f4ad1e8ba3e60b93bcf58c87
MD5 3969b2352652c7fd5c06a22b7f24f9d9
BLAKE2b-256 1031ad422c191c2911482302c83cc55433e9d92d5abb8a84859a4d2011a45f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bc4ec5f1849dfd14c06419c1253de3caacf9fe8911b4e17f45720475c3f5c18
MD5 c74ca5d78b4bdb7f806753352fda8d3d
BLAKE2b-256 884532af7de65d3ad9c46afa5b7d489ebc6e5a3a8a33a73220a86eb68bf97293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 860f27768d0e26e29b574b0eee7f23225dd2f90aedd2893243b9c5b33e778665
MD5 6e6ad1a651ef2f794dfb510b0f777239
BLAKE2b-256 f56dbe1239ff215394f20be6c58f73c0a0dd2f2cbd6f6604533c0d1857c4df3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e081aab12d0c765ec3c8b67744daafbaad5cd3d8fe82e37f099fde8b9933ba21
MD5 9e4fe18025ee2abecc57e4553613d143
BLAKE2b-256 a88da809bb2f125e4285024b165d6cc0ad12f78af3c8ef44e7f154bc6002038a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae8835c5c19a42c746b97417ac8f5675f385256dec83bbca2f05e60a1a97c5d9
MD5 810894ac5c5a2dc4d2a830a0a32f9169
BLAKE2b-256 5b66d15309ad859b80e4493a7edfb19e33b2486b245cb240a750bd44e5d26096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8e63fc710d4318a173bc01aa056b96834006a2cc0ea4d5746893089abd8493c
MD5 58e4479946f6b2aa1e52a06666c12512
BLAKE2b-256 41c14b893fda0bcdfc5086a107716fcdec6b2914ce3a6e1adba609084a5fcb92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.9-cp38-none-win32.whl
  • Upload date:
  • Size: 443.3 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.9-cp38-none-win32.whl
Algorithm Hash digest
SHA256 46107e1ccee5feb3d83622dfa45028ae10a98636bb3a852ef921e2a26b86f12b
MD5 7d5c08850ad56c37fe2b56f3f4497006
BLAKE2b-256 7e01635caa5292b3b6e9cf551528cb75f241bef2cbbf9c381a2364c03ffff80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e69dd09392bd812640b480a01621bc51137fa05443c18e37af21989b311b0d04
MD5 f1be475caed164e59150500b4850b730
BLAKE2b-256 63b638b8fab891e9581d830759082c86eb52a56f28c0071b3e098a62a10c9c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c42fd75ee9bdc2d04bcab6f7d8462ba342d327a980edf53bd32e74d5e89187f
MD5 eb2ab6f6a7098e0d38c0861e273dc9c5
BLAKE2b-256 b6d833dd3e6c1d2d52f1d4506fb6399408ccc6cdc0caca9bd561999adfc168f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87886f6380143b5c17c014070f7d19457882c494b9b89095e78bd44af3dd19fc
MD5 f17d4f77faedc712085d3dfabbab646b
BLAKE2b-256 0b5bdab6ecda6859cae4dcd5160b6a4dba9e7d06b6283816dccc2a70d90b3bff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f14fd939882a22d59ff6929d2bffdaa3770011a4172cb6c2575bc752050c733
MD5 914b4b6bc6ecbb93e3a77f3f7529d1de
BLAKE2b-256 395174d250a9ec80b52a4763c11098833a99d13be4cccd16476c80d8a2bec5fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e2063a801496f098d24e12fea07b1e243d74f9c6292980627099bfd3b1b24c0
MD5 40501f9da3417438376fd2e3cd8ec4c2
BLAKE2b-256 03f3d077244bc4109c4e3c2228605368823dbaf7f53deb420d855bd1bea4597f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 381b4fda2c6e5e40203cd9dda2be94925c527d19ff9df15e4c4f672fc57af79b
MD5 3c4eefb84766fff35dda23864aa465ff
BLAKE2b-256 31166ab0808c4063cabe45272f85e88ca4e858a06621a8c72a905c93db4b9163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e11823418efefdf18742293b351e629a4aad3a3d4a83dc7716661ad637f050c
MD5 a6e429820ec1f661640fc6b186aca26f
BLAKE2b-256 8c8ff81d8a169ea2dc311247efac861d6b452ee786487029548322f1d891f586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7015986775162b4d7b4eb8547739bbe344bbf60d178b0139a450ea38ba625429
MD5 c22e872daf3c2ea6478b219e7dfcb9b6
BLAKE2b-256 745fc40f240841ed12247c403d820ed3656427457a58f10a0d833c0dcd766dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bec6ab0ed30eae5c32bdf7de7139073c25b11d2d2e2d7b02797e25a939c26f4f
MD5 6fc8e90110003d2bedfb001c5a880314
BLAKE2b-256 1d9f2252f2c350adb4d214d00ceda58439d7f588308e4b92630df0845548ce74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.9-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bfa6d7d8e1860111fa2e403cc15742b80de2abc266a41c8647512c1c69100edf
MD5 52bc17f7327bd73e10b8ba3ba495881e
BLAKE2b-256 9444bb964c3ae817e8574c1c345127afe83e23007af6573e72a2e953a671bf29

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