Skip to main content

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!

Release files for bio-grumpy 1.1.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bio-grumpy 1.1.4
File Size Uploaded
bio_grumpy-1.1.4.tar.gz 6.8 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for bio-grumpy 1.1.4
File
bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.12+ x86-32 Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.12+ x86-32 Details
bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.12+ x86-32 Details
bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.12+ x86-32 Details
bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.12+ x86-32 Details
bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.12+ x86-32 Details

Total release size: 74.4 MB

Release files / bio_grumpy-1.1.4.tar.gz

Download URL bio_grumpy-1.1.4.tar.gz
Size 6.8 MB
Tags Source
SHA-256 checksum
How to use checksums
a75864588c89b4022401e8a254d73dcda4d985bc5635fddbf3a25f6c908f8530
BLAKE2b-256 checksum
How to use checksums
beb717d99cd1db1632e90e92f9eb5aa96ea49e0e5b21769473dd2dbba9b0ba0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 979.2 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e5dd7bac5ddbd6ec86638fc1a64a225e1d7fd44fe09090a1ca360a81a99f6255
BLAKE2b-256 checksum
How to use checksums
7a881c5ca5d40fc0a5da4da45ca97c33ae76ef69cb66793e4b3239c08682be6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 990.8 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
e1f66eff2f9757441b52bb6b4b1e89d672714efde75da11b6990d04a212e215a
BLAKE2b-256 checksum
How to use checksums
cadfe2af5579be72dbf476b590c795ab9ccc77ae04ab4ac11a8e879ce4b57e2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 1.0 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5038be82297d558788f11d05e0a7404b6c80d68ae851339e638362230123064a
BLAKE2b-256 checksum
How to use checksums
3e0dc8c7c46cd5b57c23e35e1cd863cfd4395ae0361484411839ec4bcd49443f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 919.7 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
3f96f177bc5792a8240cc07116d5aa6eef2266dd264d7e2c553c2f06865cd08b
BLAKE2b-256 checksum
How to use checksums
a9d09848c4129297d18fcc1521816eda1f0bb3a09bfc8d281654bb33f91aab9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 766.6 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5e6a8926033bac66684dbc66e009970fbc9800d00f5561c5dc5bf84b6178b121
BLAKE2b-256 checksum
How to use checksums
59c79273ba7cc6793e3466a3f1f056d1880def105b69da0f7724d8808a823e70
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 814.2 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ba5ffea0374a6093d556cb9433ab3aa1c3a1243325b54ca7a2cc2390b916e427
BLAKE2b-256 checksum
How to use checksums
079b8fa14effb77d30fdbeaef075297ba5d3c967758e0827ecbb9536a8476853
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 816.9 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a35759fa6f1d6accd10da80589d50925b41af55053e4a64a94562cd9660453ed
BLAKE2b-256 checksum
How to use checksums
51cd1bf06d421f4fbb5a310cec0751549a2c20d38cfad4a2c2d112eaa69e4f02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 771.7 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
1df00e2e5cc344eeaf893a5a787e2ee7823d2477938f2ae696001d0ebca68b3f
BLAKE2b-256 checksum
How to use checksums
1250bc3cc7344939fa86088c564ac1f56996c72e0300764288b3401631e703a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 741.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
caeecb3b0e3afea4c2b45387c2d55ba1a8a76deeb3db2fe69903d61186fffdcb
BLAKE2b-256 checksum
How to use checksums
8bba4f2abf118ca528234cbbd88fbe8c7dae221f5c75bbc1053cfd3eff83940c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Size 782.8 kB
Tags Linux glibc 2.12+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
c6d6422a840cea5ef16a74b113b3edac1afa18a0101485949375bfbffe4a4d69
BLAKE2b-256 checksum
How to use checksums
12076c77145ab79d216d998e37366cd8db62a0d6c4bd95b435959d7e78c1c8da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Size 979.2 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
d5924a0005f25a69091a48437c66752a0794b469307960c4a8c3ed19d618d049
BLAKE2b-256 checksum
How to use checksums
0e547734f2ce8aea3baec2ccba5f7e39cedf74115e5878689ce2ea79343231e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Size 990.8 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
91a68786c28f1aa147bce38f93424a62d5a67990589150aebcff6dced51c1c3a
BLAKE2b-256 checksum
How to use checksums
5823ebf5640301e966dd92db79216d3cb9bf04a8922c0f29691bc3b4735fc429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Size 1.0 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
2c0124c3a3062934680e6b71b660bf1b953f8e0684c7edd30c9ce778be19f81e
BLAKE2b-256 checksum
How to use checksums
8b3e3f1e75125e0d5551edbc61f78689e7d7efae473d365f50a411116269b0fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Size 919.9 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
da86e0a6081ec22c1d80f0c39c65f0335ead0fa2882d079a03f869ca0bf250fa
BLAKE2b-256 checksum
How to use checksums
7151f0bdc0a8dbdd6913fd10ff476f0cf93d5514b02eab91b3c01f37c6147aeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 814.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
9991aea155d1a2e3fbe0b66b54132ed60bab90cd9a3d1dfaa033a116fca43aa2
BLAKE2b-256 checksum
How to use checksums
1dfeb4815e8512e40ac9ef5e559c4728d5b93765e2f1f1e6cbb4a5512d1e2d30
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 816.9 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
a38292eef7e3ff1c11e84337e30d7db0335d79084473a472c11dd11ac83f5610
BLAKE2b-256 checksum
How to use checksums
850b2c0634e6f18606dc7e04c42aa009d2c1995b4d5ce33402f6d6292a134204
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 772.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
5078321f7ef0eaed77045aa5359a956f7f638f1b9f1f19698ee03981b52c0217
BLAKE2b-256 checksum
How to use checksums
3bd6840710168a1c76aab06955bc5cfe676f772da1ccaa8da47bb87eef679a6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 742.1 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c88f1a8ba3d5b37a70f7df1d42eee4d3e0d205b20e9ad897abaf0d115873c9f7
BLAKE2b-256 checksum
How to use checksums
fc3978f253bc579ede7cde009ea5bc5b7fde3ae4dad59b89de54dc453d8a8299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Size 979.2 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
6c5f606c5d2b86385c81b6ccdacf9f6ccdefc9e218025c0e5c57ba011f6a3680
BLAKE2b-256 checksum
How to use checksums
bf54025e26f9b621513911e1f67dfaf217a069a89c98a0f5216c54a8541306d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Size 990.3 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
805d801911ce349c76a4d433e1173659f2667bb658beafafa7fe5e412708aaa3
BLAKE2b-256 checksum
How to use checksums
50653a638f8c7ccabdfe586be4cf38f121ee0c63a63e019cb52c11287beefb0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Size 1.0 MB
Tags Linux musl 1.2+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
c08269114f2be8be21acb4f971de5a47cc99ba08c1a726c160aa7e6499d74982
BLAKE2b-256 checksum
How to use checksums
7c595a527fccffb10ac8c45de348c2798c0fa3cc25f7316430cb0534b199919f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Size 919.5 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
0fe95974bed3909d7261c7de86530cc6159967b53814baa719add44f8b2946b5
BLAKE2b-256 checksum
How to use checksums
410df0ba74715409b7107dbccf6cfa8d623faa70640cb3dafdf757075cc7e3dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 814.1 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a38ae53c2813fb096b11f866ec2302250bba5a85ccd0ab105256609befa493a1
BLAKE2b-256 checksum
How to use checksums
592c97e3396f7aa02ef97e4fa508a7e48de8143565e41fa835ded0e2c2c76f3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 815.7 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
cd6f7b75cc813caf777479d59b710bc603a626fcfd3c1ab416c87a62742c5457
BLAKE2b-256 checksum
How to use checksums
c145e96fd613f55db57c07643f61e105cee2c59a26c4dabd04456f6dbe0ad3d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 773.8 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
484d7a8abcd4de3284e5e8030eecb241f263725db1abde16c65f3f4296f34fa0
BLAKE2b-256 checksum
How to use checksums
d47975122b58aa905e5f988829aa7705eec58d1e8c0e87d6687ad76891ae5983
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 741.5 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
60a6ef54f4af20eea1746ff63472955f219607322c1fdee922c024d823966bf4
BLAKE2b-256 checksum
How to use checksums
b345d96f60e00a2c896349cab0f9276735a3247d1f5fd39de1cfd4abc4ce4ee8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 984.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f1ebe7d604240886712ff894545f774f7e7d17047081bc9e942e1ff00c603cb
BLAKE2b-256 checksum
How to use checksums
986be60cee7a72bdbbe64e315afc2625c8cfcfda089b315a2eb1cd529252e54d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_i686.whl
Size 1000.0 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
11467ce2737ddc1b6c7b8e910a0edb6e171bec89b5ee74a873864d21f203fe3c
BLAKE2b-256 checksum
How to use checksums
26857022070446a98072315e7f11238e70a969715cfbe691df9e504daf18d4f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Size 1.1 MB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a9e1f28d7bdf070bab10f3e1fa4cc457ac33a53f2450452f93deac033f77bd17
BLAKE2b-256 checksum
How to use checksums
236e83aeee059eae2e2769aea1911d84569ef51c115a1b6c35e4b212429017e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Size 925.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
38ac3d53db98e4a570fea5839f52a2b796dad6e7e2246f84f23f042e31969b3e
BLAKE2b-256 checksum
How to use checksums
b67288fe2e571169dba9ec78c26f8434da5fc65b6ff084af82a2fd2bdab8e5be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 771.7 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ff84c73f38913027dd6caf379c2d9fadf5b1c5cdd3a2eb611b995d579e2efd1b
BLAKE2b-256 checksum
How to use checksums
fa6a0e09286ecd98537c10b28cd09ea30a2d6a9a8ffa25b702ea67852586357f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 817.7 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
728d2c80c80ab9721b982c4bde1f4c2103b80ae65049ec70c6a8f74e1de96a01
BLAKE2b-256 checksum
How to use checksums
830073ac04b9430575a1c7e97e5ac1352dc718e0b6ff125727e8e7fa185de358
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 821.5 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
93f1cc21f3a4dbae093c7313f1fa8d23c5d16fdf13744b5fe62c3e81c1457b79
BLAKE2b-256 checksum
How to use checksums
014cacd4d8eb0ab26dd615890430bbbac8cbf154386d472a3d6e86e589e9f6d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 782.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
8400d935eb73df83961ae7e6afa8f1edf2dc044ffce40d6761b4066e1ecdd996
BLAKE2b-256 checksum
How to use checksums
18eb5d3301f6c771b0d34d3174c98d6ba8c59bd5c0179305b41aaed681e5c0ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 748.1 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
bc3ae681931fac7bde744ae114917ce6f4d64467ab3ed111d3d6d337dbc5faba
BLAKE2b-256 checksum
How to use checksums
6af2f630904f63343936156f78084e6e2d06b503f86b015649059b9909614ae7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Size 792.3 kB
Tags CPython 3.12 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
cc92c87f7d3a66832d3a10838e5f4828be39f59b14c1bf59bacd39a1102fafff
BLAKE2b-256 checksum
How to use checksums
5c4f705aaa3e521f5a6b8a15cd70e838e5df2db9d2addf7767778f8ba9e1755f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL bio_grumpy-1.1.4-cp312-cp312-macosx_11_0_arm64.whl
Size 707.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3e1fa10e24eb364e603374a2d20e92a79d15b231489f2dfd87968d3fc6f9ebc1
BLAKE2b-256 checksum
How to use checksums
26a372231e630cfa57df8f8ab18d1d7d0d356a5bd38caebaa72558c793264aca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 981.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2c6601d661ba7aa4450ff11adab6c8601e2cee5a0bbd6741424ef61ebf4bda04
BLAKE2b-256 checksum
How to use checksums
93607f0f8402001efa5e6559876e3e36c64b9c637ccb191699f2f21be28e4c7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_i686.whl
Size 998.1 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
10d4a489afdd2a14409853bee3dc6e74c904cea6d085926add4287c4952eca2a
BLAKE2b-256 checksum
How to use checksums
cfda41918c178f99accbe405fd82e85f5b5c7471d27122bec32c75a66c3c0697
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
75fe6827f17c46f8077b9f3245d0e57369736ac6ac8ec22f56e30af41bfc416f
BLAKE2b-256 checksum
How to use checksums
524e0f230046db5840ebde0e22fb01d15193db7dcdbab36291dc11e09cd33451
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Size 922.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
87d50724ddb3d7c04188937f928edb1b798f350ba22bcf19febcaef95d9563ad
BLAKE2b-256 checksum
How to use checksums
a8a4bc752c976ba994cb1662cdba18bf253d2c98fafa0a429bf4ea6ee67ad115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 769.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a0fe17649284e36abb3bb10b91941fe4602d9f4a0d5a1824b1c1e494ee8af468
BLAKE2b-256 checksum
How to use checksums
3a41c07b6ac926366357f8d08c8370bf125873636b46dff65f24430476373152
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 816.5 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
cca6a6292f196411cd241896e2776dd8181430f2259df3d34ed238775b2e2199
BLAKE2b-256 checksum
How to use checksums
6dc223b892f6a23698514453a521fc13751cca2f37a9fefb413c04f904242115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 822.9 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
602f950f4591eb8a056ec84429a7a2a908f351a308c98171a893e694493c8cc6
BLAKE2b-256 checksum
How to use checksums
2f76bf9c3a2926f3c0bca0034e401035f886955c317ed6e42d8e26d0122439f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 778.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
56a26ff793ba0222612ea7e554954751bd7110f13c8d9b2b2899b520f9552c8a
BLAKE2b-256 checksum
How to use checksums
9520c52cdf401b127e4ef8fd7902f5911b48e5a3166719534e54639b4ab68664
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 745.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
58f0d850fb88265698b7544b5747fa680cb23c9315b001438b527e3213dcc8cd
BLAKE2b-256 checksum
How to use checksums
30c8d614d0db3bba46df0efc889f8e5c99240e5f2377e39b0b7f5c4e00affb4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Size 790.4 kB
Tags CPython 3.11 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
8106d6c06bb8f9e64c24c99640ff6a5d4f4b4e7afce90d3f21eebb0b70d9fd92
BLAKE2b-256 checksum
How to use checksums
f849276ae60df94bda150486e8ca8cb9c6f63a542c5f8c0c88b45afa9c0eb8c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL bio_grumpy-1.1.4-cp311-cp311-macosx_11_0_arm64.whl
Size 707.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1643dd18c94070079743aaac0871433941187bbdd9a8483a1f2fcf3d38f1d355
BLAKE2b-256 checksum
How to use checksums
badeee326094390b3489210acad43d157f35efd3ae0e077b280818ccecf4c355
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 982.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a61f62deae6da56b59c7b62326247e90d4bd1e89765b869ee22f7a99fb689fb1
BLAKE2b-256 checksum
How to use checksums
99131e8dbee00b650d82065478e46b48fa6c72f01f568e058152d6fceb07c16b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_i686.whl
Size 998.2 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
25a6b15deb95d186731009eac4345d51c08f533c733f8deb8dcebd880a923951
BLAKE2b-256 checksum
How to use checksums
735a5a8f18ff5115338350d146fbf12f6e400bf8b43d73460717ba658d7174e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
5d8abce81562befce5f87decce1e8d4abcafef67fde87520ed3813fa78be53df
BLAKE2b-256 checksum
How to use checksums
6728c66359205e1644e0eb54f17a5205c8dcda5a032ec86f3c2a20ab844cbbfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Size 923.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5778a22ff00b7a06a95f69c9c7c78081743f92f6299e9702d34d6fa240333eff
BLAKE2b-256 checksum
How to use checksums
b520f66831c4c9ef430ee8f0e8d8e1fcc059d35db84ff8259f130510dec11d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 769.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
53f9c2f873c17a3e282222fc6952af7369127081c8463b12494df88426290940
BLAKE2b-256 checksum
How to use checksums
eeec5b11148372b97750a8dabc422708bf0af47e47bfe40a9aef6314fb745166
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 816.3 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
4c386c3381cc8077500ecad2c15b13ae3171ae8e0ea734ea44ffb2ca9b275e0c
BLAKE2b-256 checksum
How to use checksums
36652d518f8f029e76f90094c459182fd797ef639a2bc5d261c69f4fd96750f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 822.4 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5deb00b206d360238d0d8ae7671802086a7641d5f5d83f379da1a016cdc91d5b
BLAKE2b-256 checksum
How to use checksums
6cb8a43410b6491e9c4bafcbe029ea170ba44636738e7e647caabe5c3b6fef50
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 779.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
af5f1ef19a6f848adde5f68abf6ec81093a04b2a7ae93e014b939278c8a058a7
BLAKE2b-256 checksum
How to use checksums
0a325ccc98458772318791e94b8f333489d5b3a9bd972b755c260196c83a2e3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 746.1 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
97071dd789b9a2bfc4820d1453c0f13da20d3aca6229426cb3c2d274d104ba5f
BLAKE2b-256 checksum
How to use checksums
64a52ebf64f0a1974da4c5e826c66ea2ab312b2fc6c8cc0bca17cb0de113328a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Size 790.6 kB
Tags CPython 3.10 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
b12ba974ad823cab94dadfa33e398ca801f15e134bf55aec42533bd0ed3c8fef
BLAKE2b-256 checksum
How to use checksums
cb1469cb7f59b10585aabfc77af18637bf69e54333364b71d36f33beeddba83d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Size 982.3 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f72f784d5e3d085bd2c807dd99a1340976663562d56240b06ba8c2a89c278768
BLAKE2b-256 checksum
How to use checksums
55fcb4f247590e5c30ce57bf88a0abee6a9061e3d4de4a3e48838158a494e78c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_i686.whl
Size 999.4 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b059230add13337d32c20d7d1fd0c40bca5ca73c6e017927321582f376efdead
BLAKE2b-256 checksum
How to use checksums
8b36631ad9da114a44814253ac6acc1e2726b0ad30bedfa37000140f1576fc2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
7d84fc56129c655e94f7471a1da078d5a5c470b73fc486b9a3612fdecbc80ae5
BLAKE2b-256 checksum
How to use checksums
322cdfe1116cf35d4555e0a3be3b77061edb87e983fc87f7f3411d2bd900ffd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Size 923.6 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
108551271d91fd6ad1a098299e1e1a17535e4edd567293f889a8acc0fac8ecab
BLAKE2b-256 checksum
How to use checksums
9cb4843275a72389732457942929eec221a0ed66fa5c250ab0ca3a51e7c7d63a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 769.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7a6ee7a726622032120a07275d2c94bd15bc2e8bfe6d431ae16c8c241d0c28ff
BLAKE2b-256 checksum
How to use checksums
3f6d01b3e5900922a571cf7a26b754ad2921975fb92ff5445bfa8cfcd194ad45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 818.1 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5a70d1b20466843cf8f2a3cbf11fb85848c9c084f3cd0e06301b649eff633ad8
BLAKE2b-256 checksum
How to use checksums
9ce640ba99d31f768fe922e5911407b52ea2b372903facdb395f18591b7ea648
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 822.2 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d96b7a4e59d5f53f566059e4987324c1f8433c2ddc93e7e030e30421aa0e7183
BLAKE2b-256 checksum
How to use checksums
b5196df59f1a2e5bd87487fba025305e458e273c75fdd838941ea7f8ef1d8d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 779.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
7275922ac496eb9195ee01dc5a6443a99441e6805556cad8b245a7f1875a1a92
BLAKE2b-256 checksum
How to use checksums
d25bb57ff473d40ce4d2b8a23639ee30235eb663d36631da3043b56205e0f804
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 746.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
aa237464779afd740108cc1d558755ac41d5aebcd66bcb684c02fd110e1bdb72
BLAKE2b-256 checksum
How to use checksums
ef50b8a9aec9b52f8808b9a6d2c7e9cf706aff237e27df192f071f3c331fca64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Size 790.7 kB
Tags CPython 3.9 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
b5809c16c1f8765d0205fd5bf9081bb6dab8e343b525316ae7c63d41cd6434ae
BLAKE2b-256 checksum
How to use checksums
7a768decfff3597c3bfc9935ff1266b183fa74b9fa73c761efe38fdcfefe4471
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Size 982.5 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
398231bce697105d9d4e45ff7790385ecd1dccd04c499b24c46ce78a287324e3
BLAKE2b-256 checksum
How to use checksums
4ec768ff90cf86f0bf57a76484596efc546e1f9835e5536263178e562748507b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_i686.whl
Size 997.8 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
29637e86c897429398f62b75f40e02d45a2ca56fe56c1fd96257d053ea0eac0f
BLAKE2b-256 checksum
How to use checksums
8a308994f25ced8064d0fa06d86f143bbedfeae4a76579f44b389f5f73fddf2f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a3010a150798fe074f1ee0cf266dd61aa4b25264202a95c702ee00a1370466fe
BLAKE2b-256 checksum
How to use checksums
15d6a86c52f9db4b5dd954ae27e45ff92998a32a668425e2694def930d3b8e8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Size 923.1 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
8076d93798ca92824399b2d6459430b5fc9548098bf5e3e907c9b49bdfa21460
BLAKE2b-256 checksum
How to use checksums
886aca13a26740f2f2a6b1d0986b3b09c495b51e3ba18d09b6a1c79b8fb19ed2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 770.2 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ce150fec97ba22de313fbbfd99871cfae90baa5e1155e50c2be06ee43e33b170
BLAKE2b-256 checksum
How to use checksums
f02fda8d1d2e2d405796e4a2c13bcacb5f7b5e176b7bdf663f084c7a2a4840c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 818.7 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2b4765a43669fd404710be3f2e894f1edc742dfbe871cc6e5c52f737013b2de9
BLAKE2b-256 checksum
How to use checksums
8596f33f5f3a16f4fc1fd0196b149d8d45852b989ba65eebaeac1b1fb43dddd9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 822.8 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
37bcff2dd981dc8e13c21779ba5c463231a733c0e6f14b413240560d2ac2ab31
BLAKE2b-256 checksum
How to use checksums
f56a1378267e16fb1853b775844ca1fa87d31db10335238d834f1fbd7a1b8450
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 780.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
0cae088515d9300c5d0fcdece0f65f770489cd274f7c94f1118dcf6a86c1ecaf
BLAKE2b-256 checksum
How to use checksums
5c2d20be6627ffb036bdd67849bd1361b3a89e540537c8a329c6a738ca0b9154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 746.2 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
0eff5a9ba6d9def010714b141f23d351a1f033805e0e60fd68107dff099b5b38
BLAKE2b-256 checksum
How to use checksums
4bd124a79a3894d0fcb96ca60dc021dfdb9193f5e8ec58407872a4385a3195ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release files / bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl

Download URL bio_grumpy-1.1.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Size 789.4 kB
Tags CPython 3.8 Linux glibc 2.12+ x86-32
SHA-256 checksum
How to use checksums
0dcf83cf7a1d7eff746aba5a81c22124200ca325f770d7afaff38f6e72f093d5
BLAKE2b-256 checksum
How to use checksums
c2ec39a9b2070d8114e31ef6563f662a2c72c6a51ee8e5209223cc3f3483274d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.12.6

Release history Release notifications | RSS feed

This release

1.1.4 This release

79 release files

1.1.3

79 release files

1.1.2

79 release files

1.0.1

89 release files

0.2.7

91 release files

0.2.5

89 release files

0.2.4

89 release files

0.2.0

95 release files

0.1.9

95 release files

0.1.8

95 release files

0.1.7

95 release files

0.1.6

95 release files

0.1.5

95 release files

0.1.4

95 release files

0.1.3

95 release files

0.1.2

95 release files

0.1.1

95 release files

0.1.0

95 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page