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

Uploaded Source

Built Distributions

bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (818.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl (844.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (915.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (829.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (756.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (649.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (644.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (682.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (820.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl (845.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (915.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (830.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (642.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (694.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (683.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (821.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_i686.whl (845.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (915.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (830.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (758.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (694.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (650.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-cp312-none-win_amd64.whl (474.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

bio_grumpy-0.1.10-cp312-none-win32.whl (446.0 kB view details)

Uploaded CPython 3.12 Windows x86

bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl (821.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_i686.whl (846.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_armv7l.whl (916.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl (829.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (643.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (757.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (693.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (651.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (645.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (687.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.10-cp312-cp312-macosx_11_0_arm64.whl (570.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

bio_grumpy-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl (588.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

bio_grumpy-0.1.10-cp311-none-win_amd64.whl (480.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

bio_grumpy-0.1.10-cp311-none-win32.whl (444.2 kB view details)

Uploaded CPython 3.11 Windows x86

bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl (818.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_i686.whl (839.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_armv7l.whl (910.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl (828.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (756.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (691.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (641.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (679.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.10-cp311-cp311-macosx_11_0_arm64.whl (568.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bio_grumpy-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl (587.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

bio_grumpy-0.1.10-cp310-none-win_amd64.whl (479.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl (819.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_i686.whl (841.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_armv7l.whl (912.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl (828.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (638.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (756.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (691.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (647.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (641.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (680.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

bio_grumpy-0.1.10-cp310-cp310-macosx_11_0_arm64.whl (568.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bio_grumpy-0.1.10-cp39-none-win_amd64.whl (480.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_x86_64.whl (819.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_i686.whl (841.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_armv7l.whl (912.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_aarch64.whl (828.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (757.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (643.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-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.10-cp39-cp39-macosx_11_0_arm64.whl (569.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bio_grumpy-0.1.10-cp38-none-win_amd64.whl (480.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_x86_64.whl (819.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_i686.whl (840.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_armv7l.whl (912.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_aarch64.whl (829.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (640.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (757.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (648.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (643.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bio_grumpy-0.1.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (680.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: bio_grumpy-0.1.10.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.10.tar.gz
Algorithm Hash digest
SHA256 bd36b5d34f063a68f352a12e98b514a67c7f859b2b1c4e577442375ea9e547f8
MD5 9eadaac7f472790dca86eb681fe7e429
BLAKE2b-256 0e51a297adbf4073b96f69ecf0e170c9810ce5dbd0582e55b772297bd8b3bc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7060718a0493b32cdeac923c3c190307dce1cff5f8c3e318dfebf593c7e2fab
MD5 0f4ab6b2539c3fdfc5da1aa867427a6c
BLAKE2b-256 b1625039b8b5c1bec3374b99c8849cb0f11046b5f90606cb60869f9eeac188fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d77f0917d04c564cb8da7d1e8008e2bd6ec0fc96caf80887b1e26804a9139773
MD5 4627c060129ad52f783e4f9ddb045851
BLAKE2b-256 9fc1f154a198667e0116add6fd04b9943ccbb1dfc3f20bb6eaa5e5aade1be314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a89fb6f76b0542db0ab5d8b67cbccf3c983dc249cb4b5b23805e6844c90a04c8
MD5 92155cbb4c56b18e58d61e7b20b44439
BLAKE2b-256 a638ac8d528e85130c982edbd8053944c746512c410957df25c6912dd8dd53da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4b48da0c65b5110ed81b2b780e0b9e1f626237131c23e88fe1840a9dab56961
MD5 af0f5457d208632dd4c43bb1b266bbe3
BLAKE2b-256 a88055dc49757e11e5efe739aa6bcb11f6843e5536507b7ddbccb7296ac96bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2232214c32ddef243ad7a63b6f3dcec6c98fa19d2f28430a708757b9d70cba3c
MD5 76433d203efcd9e5d16ad64d6f3faa53
BLAKE2b-256 9dd2e0bcd34c61653cd8d17d388edb47cbf6ecc918e13ec12ead00ac18ae7eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd2fba791811d5d5607924762506066fdaf40f8c8d4ba3add62c5d4f65706fe5
MD5 daad4673430279e9de2f9a648e5f97db
BLAKE2b-256 d4343fb36c3b352520c412dba52317d022869b572b852a4e5738e161f7bb4b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e568ad1a8d7ca8184c17c64681c5b500a9f8906a91b05e5740962e2bb11ec3ed
MD5 5fd2b883b26c7240b3d993b8b9512baf
BLAKE2b-256 50f7b06044640152c297febc911e8d51fb4fa6d5a60ca21472fe1b41d92b8029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f7b70855e4cff8baca2d3bd7f5a4b5efab55ad2312f1650ce4adcf8c61d6b52
MD5 a5618e3979945b3a0c6c3a703538f653
BLAKE2b-256 dc95c9fe14a46d3a76cb7e9f87666ed400922157c5c3aac94a88b405901fe2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80b1abc8affa4902f11d8a9136393d86243881aca3442698976270a4ff52dd7b
MD5 6e95cda4551dac6c709e691545b7d31d
BLAKE2b-256 fed749c44fa0312d06343bdaeca05527223f9841ef2b75c5629388be5bac0799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 987c902ba271e90c0f87fd233b855fd3367a9edae755039f95e88831f7668b76
MD5 83d6827f17057522d5ba4edf244ee9d6
BLAKE2b-256 3c3b44ebbc580122da2947ee3a5230738e9570e6ac969f3d22de20ca75532f66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e5b8529ae8548f11428cd50df10a41fd3bb1066fd8c49e017a5d0882bbb6d70
MD5 778f412903e7b4c66f11e8ffc8b73e37
BLAKE2b-256 6b2cecb9d4cd81a6281ccb9554691ed04643cb8c6f7c2591be089d1da7c7f7ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98df23010824346107d9a69cf007eef54f4abe7275049d647173af20f2e251b9
MD5 b16a1285e980c88b106de59c93219a04
BLAKE2b-256 89daf77a2d3c5aa4fa0f4f5f0cb3dacbd8da2201a4c8a92c9703bb8e1d6a5ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1443bf72509e7f4e1c7daba35cf08dea3be189a903bd8d38ae406cfad215ffdd
MD5 a585bc85629b5b14d54d112c8bf0a719
BLAKE2b-256 e54a18456fe38aa78e57fa6f4a4f4f6b2a0dcd79b2311e8416c6d7a42c1a4930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ca384291d3b578bfdf1390fba74806a1db898fb32cb8e00ed6f92d9f99d79ba
MD5 f93b5da066d8325a50e4dac9669b7183
BLAKE2b-256 afdd4db214f2af7d9f64d04e3bd698f9e4de11557d7ad9f14b820c04a88416a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4069c7d0628358902ced44bdc0093a6e636fd2af228f571eca0719dfe5f3731f
MD5 6034aee0ee77f86714b59b20b9d76d1c
BLAKE2b-256 43eb013adb68e9ea9fac2f83811e5b3119448927f6915157d2df9530aaf8fddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 832e623a6f4121869cc86aae9e144b43629f3f626de4657252cc8bfdbafde7c5
MD5 41e0aa93310bf5d27672eb046d7a1e4b
BLAKE2b-256 69891575a5f78ef1c14f9b315cbf386285574b2b631277dbc804bff27ba06984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a0351c61be195e12fc1e95d6b8a8c8701ab0eb2ed141844ef363c9e52d85bf6
MD5 0a6a6eb2f3fcff0077c8f09e8afe0eda
BLAKE2b-256 3c40f25af7fda1380a37196a667e4800d1b02283fcfc6f3ea809a89d993a54ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23800e349c603cef70d409db6cc8fb7dd8df170a8b74a2c87678dce93b6f6664
MD5 b9bccd50f0a8d86f5b77038a229eabbd
BLAKE2b-256 3a518aa92ce9656ea62d80abc9ca9ecddddf7f756258c26b77be385fd3ddfbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a15c48b820938e37846371b852649ec405a7e9c33b364d09c24d3b22f1653b29
MD5 2df66ef7cee44a1f6dd2764490b169ce
BLAKE2b-256 8d3273d39330058473b207b809b709d1dd446d35667f8faa988e73b6446873e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 137ef2ead04da7c6e8c353181b5067c080aeb75e274e9ec4895521f3dd6e6894
MD5 8c6de205598e53574b6bf09024a4102e
BLAKE2b-256 82571e651f4da95afbd1a46396b6ea3f0ae9528cd52340df5baaa955b56040c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ab1dd9894d1eb44a333c709a66fbc3cbb1932cf28ff00baeaac71584fdfb86d
MD5 435918a9e59574f05ac1f9a92348cea7
BLAKE2b-256 6affcadd5e0ee64e0853f21bc91b7d9dba89786c2bbea6e774f15e834fb6385d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d794566fa53fac1f908dd7d6b5682b685a61dc150523b69f989f2384d5249098
MD5 b0051710ee999b6b668fe88cd2167fb4
BLAKE2b-256 c420fc005f8e2926a941f4fabee21816c8296a13c5bf3887df876fb03ebae081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86c17f55783dc2d9c1ea36483822e2cd6a8aa26e802e02f969dcd633eb77ce8a
MD5 54c6517d66dd2f0d461a06abca665bc6
BLAKE2b-256 0fad7c01bff28d7bb532782219d1a7c824b44171d9c3b4944779aa3f3db11ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7de9ea3233e8dbac932d5d2debcf7ffeb990279faeb0058824ae521ae8c9fe65
MD5 bb0f692144354070a7e8dc66caddc7a6
BLAKE2b-256 4326d1ae4a88033ec1b20a5921f7c7e42c0cbb984641b8a6d56dc48676d5df19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0064c6114a4ff0f18cc44455da2585400b531af70bc83f4f8a2b6147b0454e2a
MD5 4912836f5ddadb606686cd61ddf65be3
BLAKE2b-256 b9e06b2104462fc066273473354f75222a37fb6a50bcb69711069ffe4cfdaeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 719dca6b7da36700fd8d3cba311ebfd1a8f8d4d98135b1122175ec2095e4b784
MD5 c3878600a1be04fcc2cf28a40b3e7c59
BLAKE2b-256 84a5300266395af6508e006e3de14dad041ffdeb1aa386ca09a7a31c2508e43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cd7b24259341c4677d507fc1f9fd221bc6b2141d27fb97333d7dcfc9005e981
MD5 d4275fb730b726c411cee02b760f6a89
BLAKE2b-256 b889fdf29199810751491f5b4fa6279a4fbfc2aba707fc24cd87cf3914d78594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df2403d8e44be8a03d6ffe25690a35fbbba379b9478fb7bb47ecf18f16a00398
MD5 434145d3ffbea1f390395c77ef5c5397
BLAKE2b-256 3c7250b11dc7820cc98743651a360f149d6c6fe76bf6f6cdbcbf2c398741eadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 479304a129d6581cb1069a30f66c8f6a21c4d0073b8144d26dbdf73565ce0546
MD5 176a3d8014af8d97f6940b29e058f401
BLAKE2b-256 0aff6fc18dbe06612e925a8d4be3f375152d905137199d6882a3380d7b4ccc1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3f7e88bf2dfb768c3ec73c0759d53a6090af64c3604d3b44b978edd0636d8753
MD5 2486359102bf098350c735a9a3133a89
BLAKE2b-256 3150928123a6bebd11227e0d80d06a28b97024fca87abcb206a33ac7684af087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b4b563061ac54e36610d6a939312f92c56e0bca206fc05e6d51c3708103369d
MD5 b7e8c22acccf6f1888c03d9fc527579b
BLAKE2b-256 2e93c647fa1327b7d3f0147b59f6b207fcefa61790a9d38f0898520c042f64d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eade15a9b433c8af35726a44b9fa9cda50390cd67995e58e7e9c1afda9143803
MD5 6878b995a40cfe4cd55be603b85144a9
BLAKE2b-256 9c50be0f0accf98ab197e45f8fff22efb7b4bc7b9c051067306d622ddbb71096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0a92fa38b432f211e765ddfd07948fe06302315778c7fd8048e7f22f6fe44aea
MD5 005c52f1a25abb4f42557b03e48e50bb
BLAKE2b-256 e9c48fff729e3cc0c419159d27c60a2bac482520625dc5bf8dc213b879df5979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23ead096072f37bd775054a3f9e18210236d09860a8f0225d965cd771c2659ac
MD5 0c132c33a601880b3cd3e1b146f62b79
BLAKE2b-256 f2f132ee1a0de9b9dacb3461515fa5e984a950482c09987123f7c769374a873d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0963890dd777bb74ae942e5b1705156a4df80b612c94d68e9db86a17665372b
MD5 441eb036267c6c695a267ca802975977
BLAKE2b-256 01978b58130f4403bbc908371b789f725af61d05cc938381767424842f3a4ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9fe6dde226a2fe0df02598eddc059cec775f14e665d9d0a14ec8b1f487e850a4
MD5 ead2d801eaaddb38d599b4cdd049d9fe
BLAKE2b-256 8adc5e719d6f3c95952c457b5aa41c41603f75bdbecfd1a51abc9bcec198cc65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5dabb6e627e4bb546303226f9f6e5df2b6a69525b864f3f9bd835934df384187
MD5 a9cf6c277ea9965339627251d0ac243c
BLAKE2b-256 0c62bd4741dd3c868ef295198ad40d059193f1fca70820e03ac1fdb7afe846e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ad9dd43a698d40a79a974101a6481714f0e06e06b0139769b38cbe4e76a5827
MD5 ad861840a853f6781c6e9c142ea811cc
BLAKE2b-256 d9aee1892c92bdfdd901a75efbbe4abccf1c424406e6e3875be058afa8ee50d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4b08f2c444e1cebaa567ec5bd84a58af49f1df4d5c23efbbb2526bb9c36eed5
MD5 85436ae63277c58ac0875d86bae1a926
BLAKE2b-256 3395e98a81ecdad098d9b8e1d9d97daedb5ff7e48bf5bba6578b03fcd7b84785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c63d786793f48cd86887254feeae350de830c007a0d1b851edd8c6fe5bb2c0c
MD5 ad466715a34b499efcc78e75b1a49b15
BLAKE2b-256 58ce9a5331392e42038e9b97a161c7e7be380a34015af7675972d77e78eb526c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1295ddfd7f92c859eb5b1e7a08c8494d1953d6b8833865be449a81b52c928ca9
MD5 8d85dc5e22dbe52d6a253bdc02626812
BLAKE2b-256 1d682b6ae5588871401a1202bab612ac0bfc1499924ff8c3043348dad66c250e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5ad76a17d7a41264bc672cb7a859c7f02a71f8277ef4a52c131e347882af24b
MD5 1d5633b5c97d37fede2366fa8fc0d4da
BLAKE2b-256 975d6b23dd0ef42e092e3cb24c92e299e00a4fadaa9ec1f0a4d2cac5f29ecf9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 34ac46f03320d3e0c1aa49dd7312afad19bf0e20e618677281a17623e754dbbc
MD5 645e3f7bd4e796fa72da7344d36f5ee9
BLAKE2b-256 3aa3bea3db006fed4fda63729bf8a4f70bd89b6561a4a856afb1ec6ed548a74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3348418ba796dad7abf4fa760ec53727ae9369e7ca471c5171bb777a636a436b
MD5 780080e98b994f04f2c7d9a3d528199e
BLAKE2b-256 1210b74248bc06ecfbba7bf169ad2f1020240468af8717cb1485f94a63ccd6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efc3d447a0b75dfb0027762f0d357d150bff81da69503eedf2fc06e2a8b9c51f
MD5 d6ced9f94f311365c4e80e53522f59b9
BLAKE2b-256 f4a5b8a0cb64067a81cd321058fe50f2598f3650af469a4db02c59a5428a7b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 224311d46e5ed3d3d646d26d9a7c52cff3b5bb1ca333f0d9baaab8cb9cae5fd1
MD5 d782b8ee94f8f57bddcf878e6caf4ab2
BLAKE2b-256 f4708602802ecb3493992788e340c387456f0af9658b660bf6a438cc34b93d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6b465f5f84a3524015875b4c5b858a774b8a74c21c976b473a01f49cc1ae67e9
MD5 167adf8ed1028057dad32caa2624aedd
BLAKE2b-256 c451f76059a132f8b851320c1b65d88112b1e96b6cc1c23e11cdc39a0253a22c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e3b03bdc747ca86a0ac5f8c5fd99b3a0e11a2df9e5252d814a4d1023211a796
MD5 e9d349a599149c622cb9a85bc639e9da
BLAKE2b-256 08277c1db7c0da4730d5c79b0eccb4c3f101802e4aaac88ec3317324fd1c23f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a38bb0b05d8e01290192e7f4838bc2b01a53c91c33beda05eacb27623c2b9e0
MD5 5842a3be0418f9a007ad3b1a636599ca
BLAKE2b-256 611b0c67d4a1ba31d7e63e533815d23266877af08c7b6cbbf1b6d8ccebaa1940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a92bda54454575315c35e9ac63801307ccb21fd9925eee78eaf77c8f31a2ec3
MD5 27822c55b2133c3e35997b1ece00688c
BLAKE2b-256 dedc6e1bb7e41142c9c4db4db180d43e4bb5f084cf85df153b632ee6a10e3d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a1172e569482a1f7c0c291339f22454a314c5dae3f46bbfd490eff48cece380
MD5 5fec4e48fb323e6d24c4960de6dec51d
BLAKE2b-256 12dd72f4f2b6b045c0fd7d8c459ffca9044447f2db2080f762827fca4f5cc4c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f12cfeb76e8bb4148e86870ed582fd097bb20c5a62fd9dd66bf3db7d329a19a
MD5 f3fd5b13572678ee96f3983e1fd639c0
BLAKE2b-256 47b2448a32aa45f24aadebe852197b448ed2e9c5fc1bdd2caebe2b35f2eaae29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2e0ca86add3b20965920ef9919bf949f4d3a40448ced9061b380f38c7ae45fc
MD5 766187d12d6c8db9f37fed303a979be1
BLAKE2b-256 6b35e776ff4b6428b170dfbf33b0a4ac3f60ab1ecd15f4eb89030aedd1b8ad89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0bc0c50a7b9eb4bc579b507d68692601c7890475e23daf3fcb47c11a912d47fc
MD5 94599128202735f3f3906b271446ffb1
BLAKE2b-256 04a70d13a6e3e4e063bf3435b64d0e0a2b651067be342347dcdd3d06c82e884d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4713a9c39f572f5e7186e94f4ee9d38e92c9bb9367d961bd7e5ce61f420d9c1e
MD5 941c470d183f564b51a029664ef918ef
BLAKE2b-256 6bb407d35d9175e1e1a0fc3e0afc14b6b50aa1c3c465a81bb3ee6bf213817ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 deb7e4bc2a6e6825493d3b9c57e00f68587e43039b1bf15b5876b36569085670
MD5 1a9288669ada20c8673d704cc3930ff8
BLAKE2b-256 1a0360ce56ec937be2f6a9d6abc8b653578d8a7c76c914e09f72594748574b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1b4a1148a82f7a6f4ea04d4d79aae9290166f59c325f40d75428504889f9407f
MD5 04443031374e334d28b6a46790762d6f
BLAKE2b-256 afdede69d048edcde9d7e44d3a167887a1b6ab9303d78e6a3ed9399a4bfb3639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-none-win32.whl
Algorithm Hash digest
SHA256 76a43c6cab32f819f7d451473ba2955c61cccf2169529bfd5eab471907646cca
MD5 52510dfe0755569fdd5eff51ed49397d
BLAKE2b-256 a6e22877705c3a51479ce1c793f01a7ec470b41dc866b7eb7a6617d470f45c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aa4be341d4ab1fe6631c9b0e91c7f7d466f86d8ca886262203cd4f12d06f985b
MD5 fa87340a3c5fc077a575de77e51d8f4e
BLAKE2b-256 5a80a0b1eb4199b4cad356d35b49d7dc421e955fd0dbfaa130a796ccdb9806f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 562fa12f6bef73233ad2e74e0d7e708024a7f4386bcfa6e34a71c6a4a961746c
MD5 291a997ce970d95a24f7347e46a32eab
BLAKE2b-256 18c243960c65a9c530d9c848e90291e116db178a17fb48d241be4bcab3e419c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8272819cfa7155c3113c138776f4e718e210fbf8ef3f51d962e215541cd1561d
MD5 6f64673b1af7bd34c156daaabe311d84
BLAKE2b-256 be302432b589ed8777bd4029abbcb55301b01cf48c861df878d3d70a354bba72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab21dbb65ce78761517e7b1d8112943135cea2073017b844d722197733847274
MD5 da9a4a1c32a28e1d6bb7ac4a4e403444
BLAKE2b-256 69149c5e971d64edfc4879b110c9d58da4e525c163937bc2bcb0286dda139cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc7737f76d3cba90e2a91125eb0ca4ee097724acf2c7b4cb9d7ef9fd04a4c3a
MD5 65c7dee4e24115af900eb01ef18b3b5e
BLAKE2b-256 c4f8de8cc1cdf10d4fe41441106cf74e90ac97bcdcd37209fd577b37b05bd474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a32979955e878a703a80cbd45cc251c7b1ed4881a922c1e5d4e2d0f8fbc9ad08
MD5 607bcbbd95e30c07cf2fc20031f4ae54
BLAKE2b-256 353978a5718414f5fd2461d806dc4c03c9b82de11c1a7475e61080438c6a7b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7d4cf0018f8ef1d93a9e8ca2f2d5d795eb46a426c9f81a6b3789332d1dc838c
MD5 7531c93ef4ebf35d8df667703ce26a84
BLAKE2b-256 e0e81292f07ed9363d22359982bd9d8fd0a9c3f2bf89d0b1812a1c9c6f362fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ae4437fda901700c7405422b286c6010a31a6ae25a5746164e9d5a85a5a4715
MD5 03ff11f27db31ff96c816d2de9480876
BLAKE2b-256 261fcdffd5777e9d199c864ac8a8e251b8d5d9a9247593d75bc175a815b31035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92e6794c6002dcbceb3dbd9f26b7341ea3e1e2b8ba6d5704da66dfd100cc0fd2
MD5 8cba196f40202c1f14a457451d0030b1
BLAKE2b-256 6ef3a373743a066a1aa6ecc7190abc2f16729ab95d20c3553990282b02c6cda4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d9b879a76ba96e00274f52adc985e643ec55367ca235f964f259dc3dc2ff980a
MD5 94a1ba9a886869216bb0e88b0946cd19
BLAKE2b-256 dedc72e00aabf13cdabbf0f21de2e795c04d1fa81df0723eee50e50fa2a54618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2763e6e3f5212f773f414b37122f098f2d3c2fa978ecb9e8acc2dcc520f90293
MD5 3d903c79d768245a135e1be61b94c081
BLAKE2b-256 4b9cd0a39d845a5dc376ee538a63b57ab8e381ef638fb347e0f6c4e705b9d2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 193cf6b45256b0c8ca6f9abffccdf124c800a634a002e36e283fc258a001fcce
MD5 67f96aad8d27f51ddaccdaeac72cfb43
BLAKE2b-256 3d1c3c869859fbc34cb54a105589c6bb0d2c753b47ebf19a72eacb8dff459023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1d51c59dfe78ed847e3c10fad9f46d84423a0879432525318225f6d1534f8bef
MD5 49f816c15d406acc0f9b76da3c20dd12
BLAKE2b-256 e9d9c27b10d77c7bfaa56f4f7070a4a1fc9d9da0c281063a7e0fc41886840010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 985bbd4c0b7f2af245140f8f1cc41089f9a2dd644bbe7a3d830f5975617b8db9
MD5 f60ed1a08cf36df7d38d567f97afff44
BLAKE2b-256 624ac2682a22284f47cf6a033714413a6e072e2223021ca1d48d073a99e11aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db5fbff056cd4f8db4ee00edc8924b4b5eb35f7eebcc39b1216a13dcd55ef3a6
MD5 d3367b2a3485374d29b8a5fa413a8a8f
BLAKE2b-256 234353b74e9ddb6157dcc4352323593801e15cf3825bb1b7c461e9d3346cba85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 febb6c7de47b5a10373dff36c5756e1ac83b89a09300d97398f564d36f9c6c25
MD5 d5916336613fa25135e5a31e8f40a501
BLAKE2b-256 3266f728c80d71ffe04fff91ce7087ad5d0ef36fa393485814937caae06f6de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 99dc84e1a73b6b453b8ffac2a1dfe2f9f2a59ebac30dfb1e7ee2c3ae45b58cb3
MD5 cba1b504e5c0989f4eab84878cc56591
BLAKE2b-256 fa7d652688540cdd2632be4b1ca2fb1a522c5925f0ed0c0bca3dd52fb5079cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f345002bf9ceea99d12ff9a8697f0c35eaf5a8da9a433a14d6d2cabca846e95
MD5 e5f856ed1100e41f3b3a73e523fc2c5b
BLAKE2b-256 12fce9f384bbbc7bf8b0ea457e21570a7b1cb9b4fc5bca3a3f64756badaeb08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc49e7208a2e4dfc39912126b410cfffd2ac6132a7870605b1f453fc3c9abf7a
MD5 dbfcc040b2c135d9ef5e33d0b4472cf2
BLAKE2b-256 6cf1eb0eafd4c9b6390d5e8e2bf1666bbb3bef5e91d952cf6a797637e8fdd62c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c80599dfc1aabb469f56bdae4769852964fdec2437de18c925ec2f093aebe9f3
MD5 0797142e2934f4106a54265bbeeb1d9e
BLAKE2b-256 d2a93bcd33c8b2d593d2d126fbd6a3b5756ec35eeddb4c360e8cadfc89404c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de49b2708f3b5f916514d40c83262f7711ab8d1b27d7b7d16b347180cf8f3a44
MD5 234826a90baac5506b13479ff9f08f01
BLAKE2b-256 02c691520f77165c800d7be30f2df9e514a985fa4f88271be0e0e97bc5307f02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24049a7cdd91fee58123bee1ba209a56d71a9a7c9e79ea480c57429dc0ceb965
MD5 ea69a23afbc7fe92a16bad352fa07357
BLAKE2b-256 fac86635d44c1ca3c13c8d449dbe5d0256ec498ea47099c7da133e890f40ad14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be7578992c662e67869d0bf06c2c292283616ecebf40c921f8ceb1abc812107b
MD5 dbfa7ad89bda26b4eb81024fea0e9fc4
BLAKE2b-256 5a4311b93fd5c90a3656f4ed5256e208b1aa7af905d3264b25175625922a1f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ff387182ff2df2e6850aebfe1ad6693dab3ba74659887497f0e861c68f588e8
MD5 ceea269480f0635a01173d4654c936fa
BLAKE2b-256 7c98af66040b23d286cef4cf6610c0863de00c0cfdf7477c38fe0f9fcfe910aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 409a5f6a2cd9ae6969f7fc958cfe4a1b103522b1472de1dc68af6a131e463bc7
MD5 972e7922cc41fe54b222d30ec5768f8b
BLAKE2b-256 20cce53f75b31e024444546f096c013973a8cab20ed0252fe338c5fff367cb78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8fcf761e236a7fbd01f636d180267b0c42435e582c1eae19db5230ad48c87972
MD5 fde65b1d84663eff71f1ed3dfb530002
BLAKE2b-256 bf20795cfd307cbdf443476eea33ca843eab1a4a6da8bf0fea1d332760fb37c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7088a6fbbd4acf79987380195f2c78fcaf7dff691a31f70ad4a57c20a386055
MD5 a06d96c376e10aff2dec1c875524bc3d
BLAKE2b-256 9d6750da39fcddc864d8af8df0771f3870d512bc01b9845d5c6f3556eda87a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a894393ce6157de04eef21f1e96385a9552d32f53dd532dee788ddcfca1f6fca
MD5 74eb4a15764575ae76305f2465daac8b
BLAKE2b-256 acd8ee913862d8e5bdcda980ed19c0f4a3a06dcf8710200ae6785f9035afacba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2ae03038c399744fde3506f82247e5a2014261dc9a209f5f8a0c74d190b38ea1
MD5 31f7ae94b63072027ac3a1bfd18d9148
BLAKE2b-256 3a6e380a8d2d5d9f98b47474552f6cc0842a647f6cc0f59f45ec4ec7ea6b8cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae82100410d616ee97781ce5d2bddb5c55b70191252d6d2a9a0148c5a1c28e5f
MD5 8beacc73bcef5f56b313b17180f489a5
BLAKE2b-256 6179c7cfe4cb0ce094a59c6c1a015afd6e57a685e37f8a5e00061d1c54da6b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3920bf8a38d7a209f9c29cb5a39b152fe9e0e360ff0938bad6912f06ad21086
MD5 f2856c124665874f1ed753bea606d7c1
BLAKE2b-256 2b3a2c7a3307c5ce4cd95de956a4814bd6aa38a49d1f20b2b7cc4894b7da45e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3037fbdba81efe55a46adf9d240a2b54a43314e1f448a9f89be3a0ff122a8a01
MD5 6fce3983b77e5f4227ee91667177f648
BLAKE2b-256 1bcde3fccdc7e60f115d85129ce2c6937f814b7a8dd6cc2cd6dc5fe562284fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26aa8ac54271f2f5964e2f2a770faecc42303844a299e741149a26b9a755fadf
MD5 6771dfa3afa53dad9cc78351a7770509
BLAKE2b-256 4567eb1fb454368a259c9aec4e745745a2f0c014a0e70a8a6fadb0bdb15e8017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7404cc6d35fac5dffd53cf80cac36d131f94664b8c0e45c593b1bebdaf1e954b
MD5 f719655149367e0173351892a4bca18f
BLAKE2b-256 20015bffeb4187754329bfa9d9711d723e579f2051ef8fca6a8a6d019e238611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d05c9626f19c25589696330a43684fbc559581c71c0c33dc128cd061e9ec8be5
MD5 77ef78a014816cd642a78dab68ad9c69
BLAKE2b-256 0e30c0cf825abe5af58f4467ebf5a92c559fdee9199437b8ae459688dfebca7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-0.1.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8750331e96ec20c9f1146b90430872be3efeed9b09cd4823b35f8e2d194f8f2e
MD5 a28f9b9b75630fb096fd9e2292334bf5
BLAKE2b-256 b27ff5efcd5bc1da89a9f887bb0bcb0e1aa0daaa7caacbad4c8cbdb2ac2dd4d9

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