Skip to main content

gumpy re-implemented in Rust

Project description

grumpy - Re-implementation of gumpy in Rust for speed

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

Up to 100x faster than gumpy

Install

pip install bio-grumpy

Usage

import grumpy

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

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

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

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

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

Threads

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

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

Project details


Download files

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

Source Distribution

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

Uploaded Source

Built Distributions

bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (941.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (959.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (920.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (770.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (842.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (793.5 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (942.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (959.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (921.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (771.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (842.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (823.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (793.9 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (942.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (959.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (921.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (841.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (822.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (781.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp312-cp312-win_amd64.whl (621.9 kB view details)

Uploaded CPython 3.12Windows x86-64

bio_grumpy-1.0.1-cp312-cp312-win32.whl (577.2 kB view details)

Uploaded CPython 3.12Windows x86

bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (947.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_i686.whl (959.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (923.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (825.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (786.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (746.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (795.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-cp312-cp312-macosx_11_0_arm64.whl (706.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bio_grumpy-1.0.1-cp311-cp311-win_amd64.whl (622.9 kB view details)

Uploaded CPython 3.11Windows x86-64

bio_grumpy-1.0.1-cp311-cp311-win32.whl (581.6 kB view details)

Uploaded CPython 3.11Windows x86

bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (942.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_i686.whl (961.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (922.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (844.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (823.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (744.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (796.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-cp311-cp311-macosx_11_0_arm64.whl (701.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bio_grumpy-1.0.1-cp310-cp310-win_amd64.whl (622.9 kB view details)

Uploaded CPython 3.10Windows x86-64

bio_grumpy-1.0.1-cp310-cp310-win32.whl (582.3 kB view details)

Uploaded CPython 3.10Windows x86

bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (943.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_i686.whl (961.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (922.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (772.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (845.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (823.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (783.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (797.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-cp39-cp39-win_amd64.whl (622.9 kB view details)

Uploaded CPython 3.9Windows x86-64

bio_grumpy-1.0.1-cp39-cp39-win32.whl (582.4 kB view details)

Uploaded CPython 3.9Windows x86

bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (943.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_i686.whl (960.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (923.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (823.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (783.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (797.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (943.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_i686.whl (961.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (923.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (773.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (846.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (824.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (783.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bio_grumpy-1.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (798.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for bio_grumpy-1.0.1.tar.gz
Algorithm Hash digest
SHA256 65189bed431b444f4c0218f34b853badd7427a4ebfa8632e44f28c9ed1ad0ae2
MD5 9ccdd6b80c01bb7ec2b059b79c289612
BLAKE2b-256 c70cd8bbe34601a90b1040e57466e1365672d1167df83669b635bc14b8febbcc

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 811f0834cc5e7470dde94f1f9507e84c00c54c3a5bf76c34d16a495a2bd9472e
MD5 3a5d551eac6b9d0f327b67d923eb19c4
BLAKE2b-256 4f590081c977296895161e61c3dce92c8d414734f825323e952d9c06e15e9a4e

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21688e5ce300bb7fc1769493477af274cdb477b91d1d33da9a51aa84d9088d15
MD5 3a7d3a940e57b6d8576fd64b9d42cee3
BLAKE2b-256 6f7d1ece090fcf53f7a865873d3270453782e779977e794b70897ac5f2dccd22

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39f9bc85baab418e91ab10f9e6e0fbe50f08452a17112689636eb54d0dac32be
MD5 a848879ed704a1a2708d793f660a4e23
BLAKE2b-256 3d60f1415688db13ba8e911c7d16a0a35856b8a1cd65ef1282894726f167cf62

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abe6fe148a2246c46d0d40f5666c0c82ef1c080026bd42760c4a42680099e6d7
MD5 07cd005a9d5e35a5f06281c46bbb4e2c
BLAKE2b-256 cb4c477bb70582b70526008dc9e64d0700a48350cf55d30252177b3444fb971c

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da92c53ad015201367bacc2c189a860283ad5ed0b248802c773106f5bbec4289
MD5 5b3cfefd1ae7c675b135b7d0f117a95e
BLAKE2b-256 ca9a5576ca683766faf0465c95e3b89eacd84a1577f29b4f965b4af780bfcab0

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5560fe81b49656b39c747902f70b67a47134272724c366b8a41be1fc93477829
MD5 fdfe2f6c686e14f968aa3fdfc656716a
BLAKE2b-256 86023c0e3a643d5d90c95664eb473175ce05a3e5ec1ef72335e4ce75a2e5884f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7817c76137043a6bc8bb013d34d3f0c89d4e3708cf74846a560aa79faeb35dcf
MD5 57b3cd4abe14db7a5d5afa8b08741997
BLAKE2b-256 5f734a71acdfad628d74b1db6e7ba366bf82a247f74a336beab538f388b06312

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 861233fd0eec938515ea23222090d6a638eff895bd903c422aafdc76b4a4e7f4
MD5 fdb1a224910817be42a03bfd361c910d
BLAKE2b-256 ea6313ebc0f073d578bb6d058fdbab178dfc9495c0a9ce0de2de184965b27ed5

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 856928d1a612b139e677423702a970a37d7afcb139994b0a839cab685ca04456
MD5 782bee4b5e85faf13ce7d621f6350b33
BLAKE2b-256 053f5ca8bfd880524e2c6dbcbd65ffb865b687440b6ead4426bde5b2720afcfd

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b33f76a79736f30969b82366c1767c970f3e4abf89c92b974e3299f0b0d10c6d
MD5 2e4c255b7308cda394ff2b50d29277e6
BLAKE2b-256 5d964a9973a3d20f153c2bd513354b6c9bca282ec49e3c7928a0940f1b406bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 090cb03c40049a20636ed429767e3623b015f59c6b3c1f3ddd5264742341077f
MD5 8ab8dd7018399871f281a861ecf91501
BLAKE2b-256 2f6a8ddb4d3b7534dce38c8d00d59859186ac9df8fdc03e1fe8e76198f028ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee52745838b1569c0913c876d851b3b189f8827856dfb901345a8b34a697c196
MD5 cc1bec5c908223e0dcb243f618dcd5e1
BLAKE2b-256 6a3c34a755abfb5b34684c5c62ce39d4fc14185da65a3d45a06dbee6b5118946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1446969b619074ea05c5158be152a4b1ab9ce758189c322d4e8574fbad541324
MD5 18c3133f3862480aa694f55b3ae52feb
BLAKE2b-256 a6ab7a83337ef78a4d8cb8848543bc07306c3683f35fa84f14948efc5db0e1c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b3e73a95448a542f4ef972fd06ea41be837c1d81d924e3a7212f64b3d44ce5f
MD5 7fb0fb23840d105b2a3b0a51e150c5f3
BLAKE2b-256 777e5d8e449545a65c19d4cf234e86ddebd1cd86b50c2c52a91b6686aa5ed44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 877f4e0320ea0d32870717edca0bb3fc12c0f4729eccf806cfb9a2ef2dcac55b
MD5 51d6d5320d6c12abe4aec2c8a5b4f1fd
BLAKE2b-256 5260d2cf89caf00a342aea0304d9c6f90a40f78899cfbc30893a69ac4ce50006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47f83ee8d847ba1f036f3e44c2fdd7243f53812383648ab2f6e1f297ef237e42
MD5 5797ac564131ab1b736ba3b92d6a315a
BLAKE2b-256 df470b9f734b62b4c7e9fe0c77903aba4bb5250c9868343bf0b073f28ff36728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44e2f76f28c2ac8a87840f535c6fa3f1e5de23d10daf1f3287151e91ab4017e7
MD5 0ffae8a748a25c23272c80798321e9e8
BLAKE2b-256 59d997a6653b8b0d31f226d2cea06d677a26d9d5df540c04b4f1f6fcb0764da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ebf1f043294a3a6e079abad25f266494854bfddcd07e2473554924bea9376938
MD5 30d925f00143329c3c1b7b7bb1594214
BLAKE2b-256 6b361483a85441708f186d3ac316e799040c8d339b3d818e786ba55b710280d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66d2c5591075c02b9c9829a5fc666886753815576c3a22e2da3fee2e50e21388
MD5 d6452224353128b058f36eec22949258
BLAKE2b-256 24facc8d0db4ca6bd64eea187e32c3b2968b4afb4e66360d3fcbf1157a0e42b3

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 68caae687bc575215fe8324977ff2ac302cd1f484f4cbb4075dbce0a9431faba
MD5 c4bcfbd045c7cfb677b22517ecc60f9f
BLAKE2b-256 38d123a87e7f5744d0b186481d13d5b287b3e9a28ea1e15657f1a31c3ad11195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6c83c1c89a051762915a0b0eeafc58fc4b9f759f0b6c6a8a5015541ceb5c4d9
MD5 084dff743f626a66cd0ddefa67a7cf69
BLAKE2b-256 f24a02c551b95b35ba31c5c84e6fdd8b1e57872a56faa986fd26f01db15b1bbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca4c838b3dec04bcfdf76b98096599867d112cd6b705a888b02accc61f5a0561
MD5 2d0e9072610abe7f6358ec9b344ee0c0
BLAKE2b-256 f1929edcd6bccf366ca56e0436eb7829e9b032dfc0e2c5c7a049c4f7522cf7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 12c4efe9393966c005fe7797faac2099af6fa06e119e46575330e530210bf9c2
MD5 b64fb00460c54cc4b2672359f1cffc8e
BLAKE2b-256 b94ae27fe823f5019b4152f3a1700eef4720fafc325a3b29c87e861d9a088793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38f645c1b57411c9863c158f94da803574a5fd3e437e4621007ee56662e7adba
MD5 48abf316c38f3fc943522de1c0119bb8
BLAKE2b-256 eb81612b496dfe3023cf448bc3c6cfd4e1173446e5e132fbaf9db0e95755b4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df4622a0dafd83857b80bb4aef7e29879c0d63e83da7a3bb1d1a4837f75e7bb8
MD5 72ae4ade7e2651fda9f7f45b535e95be
BLAKE2b-256 029a3e4def5886abdf86b44677b7681b5f4bad6924a2714eadfba1235ecb2891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b82e8c885556f41dbb80b19efc725954247631f13ffb3a2cbe08278fe8e113e
MD5 218607eb683948d3f9cc876e2395689e
BLAKE2b-256 a234cc813b48c9579f42a0fe98e45504d804d7dd9127844df390b9898d9426d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9e1dbd566f390f3f0fd1a3a84fa4ef7ae426b6309d72c9fdef6ac9dd008622e
MD5 636968075b6870f157414c688aca7ea1
BLAKE2b-256 fdffdd760a2286c1eea6563b5f0a53ddc32fdfae1920e3c21e9d58a7a6f155ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5781f18b5d4cc9498984f707bd776378c9a4c10305625f8b59daaff5fd001ab
MD5 e4c76f1fadc67a796745a5bd6688a454
BLAKE2b-256 0cb9e6f34f89ce6449cd800c55c916592ff42d68404fe8cab1b79ea90f2a7e36

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d5202424f7ae8f03bf961a413c168423dc3597303f1aa56cbf4ce302deec5c47
MD5 24d79754af75b69aa91e8a98a735916b
BLAKE2b-256 fb1be485ff83f332ade57d5d335d67cfe7fdec8e4a0283fd375c9000f9c1fe99

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: bio_grumpy-1.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 577.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5728c1cd67c28b8695d7693aa6125feaec33e683f3fc3ab817dbcc70be62949a
MD5 fde4d92c54f0db9d71e7a1c89a393cc7
BLAKE2b-256 556eff02931ba653c0ad7374c2556989f4b31ba0eca9acee30c10e5f647654b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ae0752f2d8c60e62f958c1ffbdcface57a87c5bcf8975958475d34504d2faeb
MD5 a50b9d44c77a6eaf1083cd38bda8d29c
BLAKE2b-256 95a760c646c641ea2df75a27ba8d04b2dc4e11da4dc946ca7bacb751a6bb4bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6133c7978ff1080666709d41dd8c497da696fa2b427fa5ba15dd45034ccfa9a
MD5 d3daeee7c0602e8660485068c502df0c
BLAKE2b-256 0f075ee43d22cbc6092ef22c5f70b9ddb76b88db4468af59befef3fdc38a9ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72af393eea08b717addd9b9be1e261fd9aa20e627929f08eccd19231d21fdc07
MD5 a5056bc2aeff3c8316167e8e178b7a42
BLAKE2b-256 56afb7c1cb4e4bd71409c83993d0ee18c2a81e25d10aafbd5fb5c5000468b83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7fe8218d503b23f41077e86905ec18162d4db58f5e611a8d00b8414dacabbc00
MD5 f3dc654f82b2d364fecaf0e0b4c6d2c4
BLAKE2b-256 08fa619aa347390a194f22f08c8cfbbbec8d6048efffef17b890f2cc56448fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6305119477e6ec3858adb3bcc1b05afed122ca87bfeeefa7ad3e1dc458ff223b
MD5 0349ebb7daac648bd243d32f7150c1ce
BLAKE2b-256 3b6ed3bb956bf437bebceb838ed49fe015d61c5b526c0470805eece627815096

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b21edff2653895d10b7f8cc681e87cdfa13c4e5595662ddbacb0fd78bcf19b6
MD5 d8050e626fb00cb827cf1f1a118a35be
BLAKE2b-256 0752e41a50454a0accc75f83b30366b85da0d220f70b66b750bd11e8e7b910c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bdeb2f9a73eae1e17e7b30a5d8910bef58f04a4baab86acb4b5fb48824c9292
MD5 2547eed87fa96862bb9cf122feb46ced
BLAKE2b-256 d6e37c852aeb4caf464166a98f8a5e7811a558dfcb7bf216f629dc06764fb4f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ef0aa223dc50a38982bb391bf6133964a5ca333a4ad82842da5b1c7296b14a8
MD5 c5b3c721b15c376318b08017f1920efc
BLAKE2b-256 83fa6f76ffa4a6fb90f370a72c04efa82ca737ebcf2e1def94741d9875c108aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2bcc90275911d148fffb8c081fb3a3048ca2dda3a5253fdc40f8b227a29db9c
MD5 a5375ffd595269471bc8aaa6d3701576
BLAKE2b-256 9c931cd86a18924747307cea6dbe6cdc138865892a049069f4eb76b645fa6314

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2436b564a95d4c4f862150bfcb2f8e8d163c92fd9bff6af382949e391b12732b
MD5 00559cd185b847ae0283deaa690fe176
BLAKE2b-256 f29f5c29a3cffcaea59be0238b4fded506e1727508e5bc94ded6436d56381451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d7e786d130538efd4135416c2143169d9bba176bcf74121d0d23b60c9f1f637
MD5 885dac12e3339a65a3dc71f69d82bcd3
BLAKE2b-256 f45eadf2bedd7e07d2a53091655387ac55687a48c55d5a82cf901fff6d24097f

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c3fcd68232cb0c846ef58d2a90202fc3fd0010de67a19aae0bd3e72fdbdd6d56
MD5 26e1109616dac77c4ef87a520b077154
BLAKE2b-256 72d615be9a03db3556f31a2362fa1b91b2254e5483d0f0fc1ed2508bf8bb151e

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: bio_grumpy-1.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 581.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 da647ca033ade9983c1f645f7a8c3ca22337a1f215f1e6d351fc64522010a541
MD5 6f63d61b86345dffe8dc6638766d342d
BLAKE2b-256 97ef901f29b4bc8d84c99ed4d99152d409f3f68b94162b50f7ee23004bf27df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2791420658642e4f7f11e8e93317ffc37d8cf1b06f5f5d6bd538493ce4378cf0
MD5 a36e65d18a9c0c8872bee1a7bc55f7e9
BLAKE2b-256 a3c760b2ad49d7f011dd43bef0ea1c6da30c1a83b80666fc9e939d0b0a966db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 46f37f84bd59e6273cc1fca9099f7e72c88da7f59587430249b34c8826020536
MD5 aff165046e5168ffb6270b62f4d4432d
BLAKE2b-256 bc31cf5c8e0abd659f032bf2b935c20fc6188507a88854dc71fc22e356f11517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b9da277c635a0ea294623ce68101a5a8096b2bdfda9edc8ed6d933fa80da33f
MD5 dfce1785746db9b6fc8f62c6f70181c9
BLAKE2b-256 673fe0db13db3a896d25ee86605c357ba74dd56988e21324a75ad3dffb1c75e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06c1783e235d84f2bde33bb837df5b8a138a72b587405ff434b4b05baf81aa36
MD5 18148dc0ef8eb80868a17a1f5c1d8553
BLAKE2b-256 5ee21b73a016819b1ee32bfd303e27f894e649db3619a507c5deb13e3a1483a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 461b90ed690df4f1313b1de755f5a906eb4be11664bade50cbf4a671adad2e7a
MD5 71bdad72f09fcdcf01f1adebad88d4bb
BLAKE2b-256 2a9d5c7aa41219a799b0b39d3374d9ceafe32dc9e0b8fa5ee736fc569d5007d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e56f84726ff87dbc923d0244dafbaf7b97404360cbcd899b2beb6501fbddd99
MD5 8a4ac4f2b523955879c0b289915e5512
BLAKE2b-256 e443b63d15e26a134f0cd485d99433605709a7ba3f3dde7afe289fe817f1312f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be90de2512933faac145fbf9208b620bd76918cbb7056a8b9939a14fb318b8bc
MD5 76f463b5e56262104db0f9915919dae5
BLAKE2b-256 66cd0ae19810d1ed6ce865ad93e75964d05f28c7177722a43fea122cf58ef51f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2141aa9a76b697ac3ee35a2fa85ae00bb41482275ccf33eafa9378240d43ba2
MD5 0292e1b8f2900b8bf9959929309453a0
BLAKE2b-256 8b5c6a57c0278cbba190aa20d1025d58025beb066f494fa1ef2ca4245d413f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75e86623f8e038fe9a984c789a387f353701f443ec20345c0dabcf2cb22c22e1
MD5 1a343ef59ec12d5fbbb4b9f10ddee8d9
BLAKE2b-256 f0bf58f40167df98db40a6d3fe85689af54bf6e246b27410fcde96c7be16bffe

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b501bcacf90100fb83addee31da5a08f8f7312297d3066047f20f1a4d866bbb
MD5 843afcc6983730750cef7f5316633f3e
BLAKE2b-256 71d782f2a8663845a6b155e1550c85f92158ee00cab84e46f6dc0cefd22a2223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6797825abd72e141f90c21755682e421a2eb35c8dd1833b4c4b9449b3787875
MD5 0cacf24171e6980f7de4d95289f3efff
BLAKE2b-256 ffa97e0e3d4e70259a82d13bd9b08455390265e9ee50eb7b3c58da79ac9264eb

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 968a2a3f3b6fc25ea7a3f35925e0f4da27155137ff89c2ddb9ae78db95bf7b13
MD5 e6451b589469f2a3b09ae398d69357bf
BLAKE2b-256 2be414e86645d259352fa5c5dc453ef15f236cd3223a1e6a8a0db5b3a266db62

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: bio_grumpy-1.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 582.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.7

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fbd7e3ebf39f9b6f298d800c570ef8385d1e31b7467919c15a94c90022bda056
MD5 92403e2e482d3a3913578504ac195c4c
BLAKE2b-256 1ede2fdfaa7e1753cf1eb9fb83b6b42ecb4b02c3a6a7bb57ee46df57a026fc50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 82edddbad997b2748799965e5459c4ea69e9acbb2e31e03f21348bf7cd8a8594
MD5 edffdfba2c4d01eed976134c457683e5
BLAKE2b-256 72e795871545779141182a9d71bd4c1a3ccbc15bd4d9ec2c005f60cdc0b8c68e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e00d828e7e5cb72bf44e7f216c14baedd2a4997425138cb9911813463eafff5
MD5 29b2875a01921c88fb3390d3c2aa5d0c
BLAKE2b-256 a9284d1bf024bf35edab49264c2f877169225cc2ef4453a9843f94b369236709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f5f26c4ff90a65f42d8fd289e7da301e5e1eea2548e372e07d70a24f985352cf
MD5 f60599efa12023fe4e8843e6019cb539
BLAKE2b-256 ab29623b912409bdea2cebc8a698e1478227aafa3088939da29547b5d43e1053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 244ba127f560f6b6f06c598b0f66390dd1c95544e988f99e5030ae6ce62e4d05
MD5 9018322b59edc183ca11eb531e7565de
BLAKE2b-256 9f20292356240fab61968ab51ea3b6187c95442941bf5b46493c6d31c55ff072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d2f53c08ecb06dce4825a7e44978b8fc3ddd65e36486f8b4b07a914c598ea77
MD5 42bebe6b49377cbb33db26e70d08d7d1
BLAKE2b-256 29fb3f25663cd129e191a6e11b4f3d259e62ac4a009e2855ada950c3995df51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 955a0a67c3e1f2f1bb9159484369c012e4822a14b3e9d9060140245f17590957
MD5 918e99c8c2cbcf656af95a25b3bead0c
BLAKE2b-256 46d118d021b061f3abd4d0523709bbd19878c58a85f7481aa92f47ad4a14dc8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e59a6576ca84748c1e35a4ec52b62fae8b75b5392c2f327c510e69a0ebd1369
MD5 65ba54c5fc193d99aa0e6559e8d40839
BLAKE2b-256 aee685bd0792ada96de243d0cd68ddcf317dde1c3fe90d1de38ff421d373e586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a8cb1cee0e0e7e3f3d9eb8fb0a368c267ccc403526befadd0f3717270315858
MD5 fa69c46903a0c5b57f7f4f034ade1248
BLAKE2b-256 479f10c3968b62acf4d497c29a266540e9aefcc22e429e541ff86499f1750e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 283b5c3d284c75b4bb0de31bfc2652207e9a539a56310da53ce4c514fc971d4c
MD5 cfc2c89fa18002d4435ac89ea4c163a9
BLAKE2b-256 6c406a417f2f21efaf01a2e8efce823b3b980f74e13921a63da77394b4fda111

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 489f86b126a523878fcefa8909f2b7e0af480cde9ecf63913f3853873297489d
MD5 fad90b4c624b6470835e79c5766f13ac
BLAKE2b-256 d0c57e23ceba8de5fd9f62cde52f9bf78c9c7318f82517717d3aeae2fcfb6611

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4554487d48005ebdd8e2a4024fab31130c9bcad31e78810a3defa190efd7983e
MD5 0ddda8d60a83d09952d5b3b6eba1bea5
BLAKE2b-256 28ced2dad242f530f6e27b12e128046ae442e6c0c6ea5d727526fdd2f368cef5

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4fe1005b8ee8ef30776876342d93603ea0d516debe3dd527758d27723277812e
MD5 a5e40dcdf312a628332b571793522572
BLAKE2b-256 da46594362efdc7e952dbe56ee2c937a278bc6299f20d0a73f652f0837ab33be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66b8944a2d9dfa94a726b9eb74df197305ece4198bcac92c419a00eb321395bd
MD5 fa610e899cf1ffd24516e0f687a311a9
BLAKE2b-256 5b18927f9444cd8ed560c4007bf51b7570a4def1dcf7db033681abc248ae747d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53369dce6d8d7bb2b5e83c456d86d81193b32ed314e7993f3703661df52f50b6
MD5 9de61272087ba942c8f7536575e64506
BLAKE2b-256 4dca3c20a6453bd1ba274cbf89b25a3860b397667b1bc7599389af0a3f28f701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e333f6158ab038b78a446fc616abe4a10c6c04abc8f1a9cfc704a20c51d6c32b
MD5 65c29b9f7cb24438b6b0ce97283c6687
BLAKE2b-256 d384a95efd2bf159dea1c9d7551b3de630bce02be1c2531bab35a62c5ace1568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 705a06e72c9e275c01dab3939ae50b091bb31e82493b846ec1bcdc31737edc89
MD5 a3579dbbce669d229f8c48b6cb60e969
BLAKE2b-256 397ff66790c571a3f6e134a4c12e8e4dd724b07d164a9a5a9b289c0f40644560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33ca5de9b74de9001701813f259d5022c7562d3ceed92728c26f41e18f284bb8
MD5 95e668f69fb7a0372d328fd9de651b6f
BLAKE2b-256 74d8311d8defee791b6568537a48e6a56e804bab7cca27d1ccf40933250d775b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 658fa7dc18deb51c26120eaf9991e8c758d991ff5307eee53d76e4c22d4c885c
MD5 116e391629154bf78c15f3df4d5d4071
BLAKE2b-256 748f8a05d3e75a5eaeee59bf51577a37a5ebc4fec2a42ae014d58b7b21229d9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54fe45a41450861449afa78e1e85271e292d54fa6831e206020892aebbcc4cc9
MD5 a584029753595cd23c99d5343d536e1f
BLAKE2b-256 690ea0b44499a935e42de460580ccdfa693fe0d0ce5fab6bc9d6cc9adc65a734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f16586d7385ee0804c1cdede22ac0cc2f530d2c69e10a725ddd1a8c4317c8f89
MD5 87a8bfabe43c5422cebdbcc0bacda1dc
BLAKE2b-256 67187aa66a9fbb97d71d4f59925e63e26d7c1d2d7aef16e4ab95f853b9293569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6a3c8381b7338d0359b4ea1be99d00d3a295129a6df48997dff9a021135dca8
MD5 77b6a5903e8f89cb54eae257c21ad288
BLAKE2b-256 485c908ff63ecd7c2cc3c9c8378d32b425681557522eabdb93fccc247e874805

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a6302d1941669d32d8ded669a0de8cd8703e8227e9b706959f291f138fd55ac2
MD5 028d5506d02a3d09a2c6a81a679e1739
BLAKE2b-256 7cb060105c37837625a0f18d09870f98abcbc8c5ef845935834b15e881d608e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5776c34db4e8978e8155250eaf840266c3386c3604ef87bdfda132e6a3e5f643
MD5 4f317fdcfea1bfb2e25532a8c6d32a7c
BLAKE2b-256 2c159358b11620a4e262d9b16a5a497409a5c44b091b667e9b7757cca97c8a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d4489dccf13ac5efa8202cc8e232c8524d895213b093f2c74946b1269da247e9
MD5 2d01a546d64ca8926e58a59252d24c33
BLAKE2b-256 19a3b3742b4b98c96f5e92e0f464bfa76dadaeb4cc6f75fe34ee221fb9d346db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b317ab0cd7f3af3ecb0ff745ef5b5751b927d9ed79ec3d601d59f25e0bca21c8
MD5 0c0688342dad56b3a24bfcb971ab87e7
BLAKE2b-256 f109cc5f3d40bb5276072ca27bb854d6bbf0a7e2a35859545c06cb9123525da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 964f3cbd57262e5361f3bd33c8b94ec383470c05e93f768eeecf75c890c9740a
MD5 68b3a416bf4457fb7ef4764f7b0bd7d9
BLAKE2b-256 1b60234150d353c44f29a9a9c485507140bdc8188d976d82e6db2d3a5cd390a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96eeef15f3eddaf6995e1a2baaabb5404ce2295b6c04aa4ef1726452448ddca8
MD5 e26495a38f68ca5d0dd94ad34209c081
BLAKE2b-256 bb5606fab244746baa8f2f420dfa38540b1911ecc59c2d664cc58bdaf2b22bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a53e340fa33995a3d106cd89accde5dadbc5a0ddbe2f1280a6aa34dfeb13761c
MD5 ce521e9a79e6a2d651262269c694ae84
BLAKE2b-256 cbc0fad4a035b8649ef3316dff8c1f2fa9a65e566f8d6e240b265818799473ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2503df159b490b34efa7aa8990e5cef2e51c6f8f58b6e67268b77714d2b1a1d7
MD5 72ca266037d6309da8027bf82768682a
BLAKE2b-256 ed845322aae504a6eb8c5dda1000ae454b6a602a0a772658e023605cfd1f59c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecb0c5b25ba7fa0a56821d4ccbb8deb222a417e45ddab3556b8d5f58678f9487
MD5 cd3859e010ec71c54e7bae40b5946b10
BLAKE2b-256 3d5f602f9de2478281426f2eb40e314e65c4f327753ef9ab3f6c52bead892dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebff706330a401720bbe77ecf18553dfd2e5bae4e19c7bf7e4538c555e350901
MD5 2f329e2327ff9f23938ddc48ccc7debe
BLAKE2b-256 1ebf1a02fe61ad239ce6516ccb6bb8b63d25b6b499d3bb5dc60f17f669e20940

See more details on using hashes here.

File details

Details for the file bio_grumpy-1.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for bio_grumpy-1.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b8bbeee2196b04932e703db89d719e7386a8ecb0c2afdace6b9201ea8fb437b1
MD5 f93653b676c5a41aeb8e69701090e399
BLAKE2b-256 b2b6d8131c42c3402f095a0fcbf88341363b33acfb85e9ecf51d32abb9261f10

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page