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

Uploaded Source

Built Distributions

bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (818.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (843.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (914.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (829.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (648.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (760.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (700.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (650.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (681.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (820.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (845.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (914.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (762.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (701.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (652.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (651.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (683.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-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.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl (845.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (914.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (830.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (761.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (702.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (654.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (652.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-cp312-none-win_amd64.whl (474.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.1.6-cp312-none-win32.whl (444.9 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (820.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (844.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (915.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (828.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (649.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-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.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (683.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (569.2 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.6-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.6-cp311-none-win_amd64.whl (479.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.6-cp311-none-win32.whl (443.5 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (817.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (838.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (909.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (827.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (678.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (567.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (586.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.6-cp310-none-win_amd64.whl (480.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

bio_grumpy-0.1.6-cp310-none-win32.whl (443.3 kB view details)

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (816.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (839.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl (910.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (827.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (695.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (648.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (678.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-cp310-cp310-macosx_11_0_arm64.whl (567.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.6-cp39-none-win_amd64.whl (480.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

bio_grumpy-0.1.6-cp39-none-win32.whl (443.7 kB view details)

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (817.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (839.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl (911.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl (827.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (678.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.6-cp39-cp39-macosx_11_0_arm64.whl (568.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.6-cp38-none-win_amd64.whl (480.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

bio_grumpy-0.1.6-cp38-none-win32.whl (442.5 kB view details)

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl (816.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_i686.whl (838.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl (911.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl (828.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (647.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (759.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (696.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (649.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (678.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 6c60dbf80faf92ff72e91be7f5e6e9bbd6bf2c23b40df787cb7d09f82b8e6797
MD5 7578b1bd2070cb53496b16d8bb125960
BLAKE2b-256 b8e578eb9fd020a5723bbbd6adb29149a24f7286f947b7c03faa9a713392cf4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5faee4d14b42367253dd2620814851bda6fdb92ac7f9bec873d7853933551030
MD5 c3b1599848292c713dbba77ddd09a72f
BLAKE2b-256 6d6ba1b519d0b18b1e841acf33b99558c614133f27b10e1bc3ec798d400079ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba6487891ee0aa45db7e86552a26ee8f811bda884d937f355f7217cec979cf44
MD5 5908ab0f79ae0921edff9b9b031cb88c
BLAKE2b-256 108df99c7ee408c398e038e7bc489f434ce47e275017f8ef64a2d809d5dff6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8da10d522c8c581423ada82c9f1191cc23c8bc158cf2f73593111e065523bbe
MD5 4d35bb231a844fd4b7d131eaab3a1e48
BLAKE2b-256 b15c59487a6aa75565f6f94bfb83bd37c913254b399c9b448a1d917355c33cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 052b0368e1c1674ffa6f0a2d02d9ac54bfc78d5583cf329ff19fc565aa58b394
MD5 d62d751e3ecd3434260f748d77b413dc
BLAKE2b-256 ea0dc79f98f65eefa937e7533690f871583d01df06ddb276315c87f95e3c5e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6645ab4c4c2264376a2eb4250c6bbba289b11568cdaefec326a907608435ca6e
MD5 4873038b1d51d48f8a3d476fd9edaba6
BLAKE2b-256 eb1b096b5d58c855881273eadf8daa757e86cc255006424fc1727f0869053433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f715b75855594b30701b7eeb5c1402fbf0574fa7616a1633339fa3c774a9cf73
MD5 da79c8a091ba127087bf208edd64101a
BLAKE2b-256 05b6afb28138b7b0c048275c07508622c19b842092e8f498245f4e6e284ad7f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19a803b8b9e188d18ac281d4300bae92958b3dd08ea75e5ad0dc5773be945f49
MD5 5c94548e2030b3961088fa06e1ff68fb
BLAKE2b-256 e95693d3a820f95d58ebe98a086678c4ab4bca57f037080e2badc12bd5c509d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b532a9359c2f3e9a9c86af4d721b096d99dee21a843bf1ff391ae435ccfbcf5
MD5 a7a743d67915375005a8a02c766eb8e2
BLAKE2b-256 c8d99931c404478812cd269939a9efaa9fce96c136b8cf40a81327526cf88c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35648787056bae0c5f1523e3cba37bda459b995bb41e89fd23e4647d1ad97cf5
MD5 142e62769c8897fcb10531115e4c704b
BLAKE2b-256 3a943a97d8dd572ed0f9688991d3358f0368a31432ff713272a8e163530244c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d8d2172a9923ee9c98b599c256543088e934f44d0709a6af86f742a6520ee7f
MD5 d63f83cbf4c21122e3a9354d70aa46d7
BLAKE2b-256 ca7755fa2d11b4ce600b8fafd11286124468f15c05c65e4b5f4771b37c95f1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5dbc960a342a4dbd2285aa924e15dd7e395790d099a02ae928a5a8945b61ec4
MD5 db649cd6ade1def90b2c648b179fb0a7
BLAKE2b-256 e9606cb4fef31cef03ba49c5336b2a074a0544b794e8cb9d138bc676ecf0ba21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7cbda48031f5e19d51ef3ae92e37249aead7b9226e5310d0c7d0e1855fe4e862
MD5 b9bb3656679f4e2b76098464efc215fc
BLAKE2b-256 c74c29676c6f4f392c008007ce2d3a81485f16f2c83915e8c38c3f4ce267b702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d52d191daa14a340493bd11f408079c39636f15172af169f5ea8336d62ff901
MD5 02c6fcc638be55d0a405424dd2bb0919
BLAKE2b-256 06ec9c013495f4e1fe3d922237b24ac0c01eff96f5e0af875bc06ef43356a864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c1954389101568a10713d6b63598366070c0afadf66f4b15c48abbde869c0285
MD5 9fffd67f7d42a6cb716f6ff63fb9a438
BLAKE2b-256 5006ac8ef6f161962b3316106645bc3dcabcc18233a63d7ee10e65d2b497b3be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d4b45a9b9ec3f0a0f96fdfb78099912a7344a56775b81fd8a70df2222250aab
MD5 8fbc1a4ce27c9819c0c4bb63a1b8ae46
BLAKE2b-256 d05ffa2eb5f5be249b648c623ff6c600368d8af955e58f1decb147490e75a142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a1ecea6c35299e17e44af1b7804d97c737ff72d0044281682db7104b8599458
MD5 9d60ae9262f0f2506e21b328b94c9695
BLAKE2b-256 df0b90f75d0132e14d9d6dc14d8d77aeadd7b76729504c032cf408dbf1a9c7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8661d663eb00de79d92d832732d22787b6f73ce098e5e9b565a628c801ddcadd
MD5 59b1b3e3a8d2326801cd46cfe4876c95
BLAKE2b-256 c1f71a575716f52827ae942d1be9444543a9e5a390ae6234e125bd96c046676a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b114b67642503b5a56016c77f3f25e6f9610589b286b091a3c7ecd3ec47840bb
MD5 358b2ade11b62b4305cf206cae45810b
BLAKE2b-256 fb0fbd39f344ffe8bb0ec72518a5f56d41decc749935c2f58756906996cb2313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 96e4cecf39445a4e97d818d40270826ee3388e7432283565e58c744a4033625a
MD5 f8f3e3156a1e5c10398db1841a78eba6
BLAKE2b-256 6428c3d5515855974ebeb14e2c49831691c7a8f1b973cd913dc0c9eb28cd8ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab23368c359aad575f8a42516c9d8c82031a7dd19ad0ad769542d968b7d50504
MD5 41db6deba7278bd7b76c1b9686bae8db
BLAKE2b-256 69b063938c51eaf9a61646ef7614e1ac30888266db5eb39e57da8e292fab9e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7e86ed4bbcec1aec3ad2105419107841330c7a7449283ad6fa6a7ad52b8a1df
MD5 2ffa77575238e19c71e613d5b17511f3
BLAKE2b-256 40cea714301d7cb23baa75cbd73760618942948495ee246d22864689a639d6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 681ecdbee9af5bf529b053be330bdf3beb5bf0864122d51a188ceb14b6225590
MD5 fb5f44d2825ca3bf2523d48befce326e
BLAKE2b-256 9588275918495a5de268867d871b5976c49a1060e4e2e463156ae0b53e2c3785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd1e071fe5e66e9971c6cc1fb15a9694ee94f15536309e7c556248481d03d058
MD5 0c72e4c9b60f1e2f0613640dba1b1ca7
BLAKE2b-256 205b0b6e7f6c23569d5e5706d51d3daa6db433eb57ed4c0f77f7fa59ab09b8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7698251267252c49943f11e5b1349bf18672bb70301f000ef8ccf358a82dc5a0
MD5 54b5897855f65c9767aafee8a3dd5a55
BLAKE2b-256 1edd5dbec192fe751af21a42315852c0ab47e49de56d0843ecef3d0adb1458bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b09c977f2a7973fe77fb5f641d94f49184e8c5c49a7ab2fcb6607b8262c2dec3
MD5 3b091aed9c734d49b6e68bd15100a6c5
BLAKE2b-256 fb9ad76e0d6f647eaed7b07dc8036ad7e21307f035ac5533d79ca8f62e4b73d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d92fe50666865dc440adb252221da60cdc3742282f6cd1976ca7445212451bd
MD5 45fab64ac46e258ef6954378d136be38
BLAKE2b-256 d0f72a7b7c375a52686bb35044f90fd22bedca02484ec673b973382a0e72fcb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e21203d0386854de1a1d1675120cb7f1afc08678eb3b54f2cbf5967712cbcdc
MD5 db54fc7894bc04d6511b44329a1a4c8a
BLAKE2b-256 83c04b9f7e67f4639335f202675d592a16236c348d0f8f640da22867d5dfae0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c07e848613ac9166aafe9e282947a88404b538a0e5f121ac9ce7ae998ec63c43
MD5 f8d55a73dafbd4dedbdb88f9e90a7cb3
BLAKE2b-256 2ca99c7950e823988bd7d66ac36109c4496522b7ac12cd964b10eefa1afa9c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4cba0225a83730370f169a50499a14ba4846320d0f568fb993b91c03ee93589
MD5 726080a845840935563f967fa5d63dab
BLAKE2b-256 b6103ba2843fad59f5df91bf58a6ac7bce1586c9c3b1c3c0eeb02ada61f4ae36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8c3b7a46b1bc6c963924c921c8fd82ead6452438a80ac148a80ebdf28a33e589
MD5 28cacf2c852751b717161b8a0c6a4488
BLAKE2b-256 02c578322fd9e6c4d13fc34ec82de217ade2c4c3835ab7608fcfa2bb64c13b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c532cb4eeae1a13f24e363245eb1cac584b2fcf01ceea2582ceee94ac82dbddd
MD5 9af94ae2c1cc012bfbe1dda489f7220b
BLAKE2b-256 fa7aeda50cb9e0dc86f68bdfdad163bec8e960e4d51ff57e46652a5e67149fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fff886b240884309377c8db215f12f6d7c5b30368ceb24b534e67321d0a35b9
MD5 944fa1c83f160abd76f914c02f9ab3de
BLAKE2b-256 b04dca26cfb0b33fe66ee0a57df87629a904e724d503669e87a44142d3603a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9ec532ae5c8dc4e604ea35c1a428b4c3fcc362d9f25afbe92655c3429512fbc
MD5 ce9bdf6f6a530fb2d360afc058776734
BLAKE2b-256 6f0cc3c49ca9f29dd8fcd23ea8ff4487f701a32413341bb5868caf2bfcf24d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60b73effe068078ee2b4c3f2ea81da2efa868b65c1f5967e5b34cb32e86e8b98
MD5 2d5419290fad66462fb494f10e87bea8
BLAKE2b-256 32b1512a84c80f05255071f52683eb494f0525c54a7e01ab5e4a2141729e7c47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1562f03a19d1700af42f2911aec30ed6c32dc1275c4aedbd0b80e5e7035bda84
MD5 49a7a19ac397f03113b289aa770c8901
BLAKE2b-256 9706265cde98f080af02fdeeea2c31f22a064d450df0fe5d1851063399e16122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 121cf111f043536a58b88d050fa8faa234721cd92ff04fb0931e41c52425fb96
MD5 921dc2138d11642ce3a0f9abcd0ca81a
BLAKE2b-256 1ef031fea856a812750dfd6357e6e03b3c62db442a8d5447d2c71b5433857a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5c0ff2db93f748ebfad5102ce01ac83bd2eed05bca6101b519bfdac214b3e9b
MD5 a99426e7d5b085ee925ba59668c61b8d
BLAKE2b-256 9f4444b9c356f266c9d754da0a5056ef1754bcab9cf193604cdbeb0af5f23bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 295b76f86694dc30034e99ca0669c98794f9c3eaa40693a23c05e8fd432a48b6
MD5 92043f05e527e80e0aaf267911d8dc71
BLAKE2b-256 81ee97991b37aaafb823793cfc6865ab98aa090c5eb83348df78f8f9c196dc64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24cfb237d73e822a8ae0aef61df4b00adfc81ed1d74ec5a9cf3935b2de7c55e4
MD5 0fbbe73bf6cea489acbb0f530c84e545
BLAKE2b-256 569e80bd7cbf1a5b61a0dba5f79172bd3ddecc0b01a99c099e4a594272dc836a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5fe7222a5467365e9bb86f43d8817b66da0fac9b2a677227e1dc28dd9db73ac6
MD5 3120ce53130bce41ca3ee9a972201314
BLAKE2b-256 c26c7e09cbb2dfaf45afe290739f817eefb39c0c7f6d28a46343c5a01d38cb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b3dd0a5c450f5b42a407031244094b601e41f68711e35bf42cefb207b8528e
MD5 f5996226f91571d3b9540b9812593ae5
BLAKE2b-256 7b1d88614f94d392b521b0e4e80c8df7bf5e2c3d39f06e5cda3ea73ad4a49106

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 977a56bab8e2a96149b6c250212292edc9ad89c9e73c19dd18ab541ccb6c9109
MD5 b6c7a87b3c7c10ff9c648df652bc6f52
BLAKE2b-256 30bca97dd70daee70ae494c2696b2058df70ddbb268e66938c6ff99e125798f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b32e21405954c623f98c3489ec0e1a8b3f04f9154c20ad1c614b32c652166264
MD5 3e6034937a88ac5b3da27979e7af3e5c
BLAKE2b-256 b8409dc4d9864c6bf245c7201fbd9f54ee1ab12528e9947945145297c1fdcce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9118928635881e12f449c88217fbad10f4be496a1c7c81d7321d918990d9fac1
MD5 d6ffe74cce05bcc420840ed535df6132
BLAKE2b-256 e6af51852e50a90dd4aa55a2519b95371ac8945d88a66bdafe71fb1cef2febf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d470e8a765eac8a647df9c05048d47aa7fedaea8383c75ff8481e9ba2df4192
MD5 bc10530b7e4b0108a207eb60344da3ca
BLAKE2b-256 00f13255a9c59864d6ab164852fc1d1a276a0ae8da53d3faba793e07c568f942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb845034dfb9dd2a177cabef46e8f12718b1b28b1aed88cccaab37e919a9aaed
MD5 0e1892f46202aca89de4c79bd5c796d9
BLAKE2b-256 ecf0c7f7083e8dacfae6ea80e241c9b2850902405f380731acbcbc3d6b4727e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42e81eea9ffd572a10e468d9c70f6e65319fb986449aa591438d6cef4337d1d7
MD5 9db9e2a9748e0d2e19f378f2e75924d7
BLAKE2b-256 2a70444a761aad7f9cba5ab00b9652efb0bfb501cba01cdafab73990dcf72a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80c5e7ec7f258e796c897fc34cda4b3da905d956ed4a71800e21ff10657f40f0
MD5 5005bc6e4f56a196bd5083c46ca6fb6b
BLAKE2b-256 97b90704374120ae8bc74b44aec86093bc804fd68389fa075053c431da4da6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 492348fdc9a48002fd5672d9971e57a5d2ddb6a8af997eda76be702f1e106fae
MD5 53d0d9ceed105a54be51b9fba633afb5
BLAKE2b-256 d56107662f5ca4da1adc361b11775383858fb9ad2aca210060907d5a10cb4470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9762d391a4c6fd9395c4ed9a81f4c6c191600c8816859c020bb57941165d27d2
MD5 d7805caa05ce4378f9b8436b7631e857
BLAKE2b-256 9d530906f0636c88b0b41543d0611fd494f2fc0c6c2bd04ce43dc179c113342a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 927721cb9d029fcf1c97445245a7b65239d3de1dedfbbf9855baadb3a98e84c4
MD5 6cc32188b36a8884ec28d4edda26483b
BLAKE2b-256 fd4237cdf11471acbd5930f0c4656e67325d758b0ca5fcfc630bd7a1d4921305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91c2d6abb4eaaff4ca14b880b787e8deef96f761435aa7489bc4b38062511b39
MD5 99ed8756b3d69e127d84e22fc0454dc1
BLAKE2b-256 f3b576a974c7dfd5cdaaf52ebaef389773054846e28c58f524f34ac3ba340678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21030cc4132368f6366120df5e08d3be8aede138f6fda1e94b985c70790d787b
MD5 01aac710a3bc6c9f2ee0ec0b548c9546
BLAKE2b-256 1ffc8e26710b94ac6d60645abaebc9b4f05545f83c55ef271fb4e556790efa29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07086cb84dc6a941a16036d26431e2f7c023dce892407512009e9cb18c72e780
MD5 d66e245b95cad1ac4de34572ba430c91
BLAKE2b-256 a9bf8760b1a8a0fa517e5621c9d6166201739fe6bae0df35e07f40d5c75e32f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82321d483f50a142114a14b91e1b99aad9f5ca22ce6f7130c6663d12dd28218c
MD5 e2053ba83852a0166e9c03702b9368fc
BLAKE2b-256 7f75804760a526e028e226964f6008e6e3ef73e6f7bc763ae6bb2249a47347f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 832d4c7b7ad19af5206391d084fd19d2abb582b11bc3f35ed210fa60c2d0b2c6
MD5 c666e66014a5fa91738786a465e5d20d
BLAKE2b-256 cec9c5468751419ee9c6b3dee7c9e3a288df6f4a885a62e33ee77d1244c8e899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b0aa80b17500b2e0f59a62b3ceab6220c2c8675358e60422edcbd032c77cad4b
MD5 e5c1afd7597e9fc0395e53e8a486c715
BLAKE2b-256 82451ec2b71acb470141e99cfd824e72482a47c091a584e6e31b9b539d08e986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 032ffa3f3a5e4924ffa6ea04b95781a080645e3d60dae6bc4da944228373d350
MD5 cf2eb5dca7f7e5536cfa87d22e86999f
BLAKE2b-256 aacbd54999763c3d4456a0b8b5e305b525d7063cef6a8229f5adb0885077cfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7035699f44f32019f70c962a99da9b1938667d11952d68168254d249f20eb19f
MD5 30db1c19a1ac7fee499bec32ee94515a
BLAKE2b-256 25a293a7c85b3efbcabee1c41626a70341968f8ed288e726ec9ece31fa60a7cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a246f6c1f7ddbe2924a4f2ad003d2573ad5af0464ba38ad631b8cf34569897d
MD5 8539dba81b9d4cc1bd1831cba579fbcf
BLAKE2b-256 a165272f06e3544aec5643a944e3853d88d1853338ca0d028c7e611cd9a67d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80fc1c47112d5e6b474f387749114878b594ef3d01e90f3cf0058f2ebb0756b4
MD5 7418beb61d717e577ecebde8550f412b
BLAKE2b-256 9712894cde39b727139e3f5277a7e06cc613c52b343eb72ec7a34219c381c331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 140798436806dd19a85a94e2a105b7952a2bf12f6a7d8009a38a7755b57e04a7
MD5 8f3cc8d2469786a35e0d766c622d9511
BLAKE2b-256 23242e1ae964e0471e5eeb7a16ba56ba782b4ac81664c9c6620fe43d7128ba2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0326124c46df574e02b4f496e8865c3d67fe54caf79ca0bf416f9016e267a595
MD5 9edd20f7488ca460b880ee125eabb8e6
BLAKE2b-256 fb71c783a00c31aab70445441a34afe7cb400196852509b2c83ecdd08f9a94cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9773404f0ce80b49e6c708b5d7f295f356ec711c79471d1f8f91b7bb562f382
MD5 edca4bc185b3dd4860d547297e400bf4
BLAKE2b-256 b09d3de69da3df023721d89ac325b545e46dc8df4943bf7ec928951120430099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ce5ea4618eae8883680a42ea653223a111bce0f36046743f604ddd4131e0f55
MD5 61cf40c142f6bc5ca74c645a6b4980f2
BLAKE2b-256 96e34ae6a9f488e52dc04fdf8997b0d1977aa98b687f8d19ff76e485ad09e598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65b040078cd267104473151ade4143cfe001e4ed24de4a0bdf2a801633252a5c
MD5 bb9f26ca48f5075d8deaef05a5187e66
BLAKE2b-256 2014701106fa8b97f537ed0a2f6e414e18816b04dea9ae3b7c2e74cae5ddd40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3a8976ffac116bcc63c3b1a20115a1b2ab0703c05607addc3f0e9d121a11074
MD5 3a97011b2aab30b6580afefd9cb98400
BLAKE2b-256 833f93f962f51afda72034fb41a9be936acd6794f78a1ecb6b7fe5c1f00e72d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2edaed3146c4b37c6916d0759e072fe482cc22fb1f731b1b48c437de93cc4f3e
MD5 d8b8c71d1d24923311db6f4a6b90d67e
BLAKE2b-256 a985ec7c324fce77b4db824bb2cd40f0722465befabe13254993a159e60d7a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff47e094e595b426c5a66d02b7b1e44cf085de467a2855ccfae2c0157701f534
MD5 e93ad498124684c5aac9d406707090f4
BLAKE2b-256 eb47a596b61a42dc88ab5c316f73cbdebf723b709ac1ac82ec5876b4178c6f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 175a2fcb99d3f3cb521185ca6fb413b3ad6056607ef219adfbbca7e4fbc6249f
MD5 2e0222951fe8916f5abc3d06ac675b6d
BLAKE2b-256 13a9a718e5068799c5d5baf8355c269d96a2a25721596b9afdfc5663b2bf4a05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.6-cp39-none-win32.whl
  • Upload date:
  • Size: 443.7 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.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6ee95a745aaa01bca0229797d0cb2a26e480dd3bd8e482db4d5771349687b27d
MD5 44a27b4e5c107f01c734aa35ef10abe6
BLAKE2b-256 aa494fd5e175f13e4560f945fb96be9a6e6d34c57604ead00746bb65844539e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b3c8abc37eaf9e88bebac11fed83d6dfe6deb5cc9d5dbf5a129eb6c9ffb34cd2
MD5 edddfdbd265a7e9085dfa9457af42af8
BLAKE2b-256 81b86c1d6dcc8201d9ec54c7a0caeecfe1abc2f11a64bc9e73f7ec7659c2713a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38e8c48cf4c150a13cc286c0db6ef0ae33521bed1d174deae7108e58cd5f46f2
MD5 5d2f4074ce7ec2cf075a00dfd6da8d84
BLAKE2b-256 29b6e3a4027cb0e134552d1a80f455623004b4f2fac3bfc6c655f66a9c4691c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8543dd9d881278ff68d0d007c83713d15687e0f1522c095b595c650465a70b0c
MD5 68f14c6da7950888c790e3f9c28a0ca5
BLAKE2b-256 73c2731d38b52beccfce082787b0941915fac142d17c56a3f8c8b1a05d87bda8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60f087d0ab26b55bc385635070a66527605b82315a0c28fcdba2e07ca1c90cf8
MD5 85836e0fd097c07e7e49cfe4f6be223d
BLAKE2b-256 c8021184dc2feb04cb365ceff224b4b13c1bc5589be1aefcc2bfb9addeb24a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 396d8789e4e2e0f37f7ddbb1a493e628ea57ffe654401ef70483bc31ebce8fef
MD5 9f22876f35060ec1e352526267faeead
BLAKE2b-256 928b1bda1be562f232040db38686b36a195f031e9b4be04938dbea11bbb85a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30e3ab33d93b6169d979054bdd72e6b2b20df81b47e8a9b1c68964362023f9da
MD5 ac7a2f2e31d3a8584bd3235552a89805
BLAKE2b-256 8def4d33c6ef1e1aa7543c97ba7ccdd6e7502537d67d1047e44f097309f3a45f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33e32182b8dd08155086c783c8a1f2bdd0fcc0ae0600a6ef4b850bdd3e8a1328
MD5 3fe3681874eea4d43ae49c1fcd8cfd2d
BLAKE2b-256 ac8a14c1851d9fd1c44e681904098a7b01d9e5b9afaf558613eebbb16b6f5e2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 287b278ada14ef343888245a954365fe3308ff69478e1a4c7835764bf9aef4e8
MD5 d5810d2b64975ca9162f491f80dfc305
BLAKE2b-256 afcbe53b2613bbd07641c3a477fbfafcd8e726a0d474b3e97f19153bb4517581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f241e7897cf3d15032f3875dc41fee036ce516d6ec90c65d6bdff803448fe096
MD5 2631fbd8b79390ee63f0750c7adcde15
BLAKE2b-256 e7d7d46e04013e55d4b7b47fd1db2fe497a8a02d3f5efb8e87fa3c65c920eb4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 596d9f6826565b340be544f0b0b53c8922c04908e64062787dd0172b5a9efc4c
MD5 8028454404984f5efcf360117ece028b
BLAKE2b-256 8a3c8a80b541773b29eb06f0c97bd9a16da03187ad0785ccaae9e837f992687a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30bbb55f57d41b486d6569518e5e8663f0920040605019bdea43f0add4d39cf6
MD5 54c13e6ad3baaa0b657788264d1c5d7a
BLAKE2b-256 6b8564a963956dd056b48f1826f531628b6e0758cd824714f82486008b59a566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 589aca5e842cfa2dffcec39ea41da2a168fc636ea353dd970b592c4bdb05da02
MD5 3bf97c49dec366e14204806d8b0a32c2
BLAKE2b-256 397d7e888a12b12b61b1b50bc45bc19868634972279805211eec16e7080beb00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.6-cp38-none-win32.whl
  • Upload date:
  • Size: 442.5 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.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 aba4afe23f3e0f685f7beab1298ea32890803c18e52e0395c98ecc60cd17c528
MD5 762ee81346b9344ed81732a408c638f0
BLAKE2b-256 1eba7ad74d227ac7d516130da8d3a9b6b3ff7000867224eb737bcbbe11a71d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 86722851c90a9af0031f049a2678c98d83c050cf3fde36a9c7305750cbf79339
MD5 9a23b41e1b2f6fd5d0ae63143af57e31
BLAKE2b-256 f063d0ea067a99c58b30ee95e00681bb7d774189cd6663bd2b30314ddfe624a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5a2bd5e2285c2d2ffd3d18eec14cdaf87e6de5a481288c551839cd45efe3c21
MD5 bc5de04463d37d8aa3138741f253ec18
BLAKE2b-256 dd584f246b3a2b65610f5151be9e4f228887015ed65570c055ec4c58b6c5d674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c17f386db8331e975cc76d41feb91e354611bf6ee790d3fd9a8f65e770565099
MD5 bb92519a3b4ee2678aaba203ca28565f
BLAKE2b-256 2a8e768092fd66f30381b34be5c426b7d79739c6c622fa20440b9a32b5ac6174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 074ef19d83032fc0d1f08c1209a891f3de987f8923866e46e98c3b64fdbfad01
MD5 0da136df9a86a5e482986b473e724338
BLAKE2b-256 f0ad39de03aa709e0b918a4b18d70d707b2624889e504fce765f68801fe00cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcad59d202ecbbb89cf08fb8133466c50b90cb32856990ecc00ce0fe3dccd732
MD5 b59e5c7199df119e3b33d570a73cb3fc
BLAKE2b-256 eda9a3be02dbe241501170a7214b0db36a9d266c0d131fe3c25873a40b1fa5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcc0101b80ca856367ea9ece293cd8ea7e12a3cc7c0ea75066eb906672507586
MD5 e7f6e119c681180bdeeb1e6e35952bcd
BLAKE2b-256 3765d4d65f76d2ec103b8b0837c6eea6489163083ec8733cde970a4e80db42e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bad17be4db32096576940e2b7e62aa80920205fd69ba8f69b95d9a9273c912af
MD5 7adfa0abf6c078c80d801658a200cda5
BLAKE2b-256 82d3802adef168ba6ae814a1dd2472aadaf996b0b47eb1f2b670755f97f0b4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eee1a614a09d520519281d83e5ae2153397ccaa32e13dbdd99602be7640b0b6b
MD5 716ae68500ac763b5b3e12fe1656010d
BLAKE2b-256 f248c0e4a8519d1ed6b7a56f7773f33ff26523d0354f784f09660809ca3b988b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f936ca276716b8c4aee9cd9563e864d207086e153ae912e81cac29098e5cb404
MD5 3b55338a242f22a04817e16792e5e2b3
BLAKE2b-256 72b306dcf9c917915d5ac465a61d58e10d0907478fcbe98012452d59af6225bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 660724d6cc0bccf6c396459ecd08eb922bf3579e6c0298fbd33abaddae7f8269
MD5 fefca2b52b4cf1509ad9ab8288b40b06
BLAKE2b-256 3c31d2c46c676345f1e4d32b06fb16c313ae4c682689661c1421c7ada96c7538

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