Skip to main content

Blazingly fast SBS matrix generator library

Project description

SBSGenerator

Actions Status Actions Status PyPI PyPI License: MIT

SBSGenerator is a comprehensive Python package designed for bioinformaticians and researchers working in the field of genomics. This package offers a robust set of tools for generating, analyzing, and interpreting single base substitutions (SBS) mutations from Variant Call Format (VCF) files. With a focus on ease of use, efficiency, and scalability, SBSGenerator facilitates the detailed study of genomic mutations, aiding in the understanding of their roles in various biological processes and diseases. Uniquely developed using a hybrid of Python and Rust, SBSGenerator leverages the PyO3 library for seamless integration between Python's flexible programming capabilities and Rust's unparalleled performance. This innovative approach ensures that SBSGenerator is not only user-friendly but also incredibly efficient and capable of handling large-scale genomic data with ease.

Installation

$ pip install sbsgenerator

Usage

The SBSGenerator package is designed to facilitate the generation and analysis of SBS mutation data from VCF files across different genomic contexts. Depending on the specified context size, it can create comprehensive dataframes listing all possible SBS mutations, ranging from simple 3-nucleotide contexts to more complex 7-nucleotide contexts, with the potential number of mutation combinations exponentially increasing with context size.

  • Context 3: The dataframe contains all of the following the pyrimidine single nucleotide variants, N[{C > A, G, or T} or {T > A, G, or C}]N. 4 possible starting nucleotides x 6 pyrimidine variants x 4 ending nucleotides = 96 total combinations.

  • Context 5: The dataframe contains all of the following the pyrimidine single nucleotide variants, NN[{C > A, G, or T} or {T > A, G, or C}]NN. 16 (4x4) possible starting nucleotides x 6 pyrimidine variants x 16 (4x4) possible ending nucleotides = 1536 total combinations.

  • Context 7: The dataframe contains all of the following the pyrimidine single nucleotide variants, NNN[{C > A, G, or T} or {T > A, G, or C}]NNN. 64 (4x4x4) nucleotides x 6 pyrimidine variants x 64 (4x4x4) possible ending dinucleotides = 24576 total combinations.

VCF INPUT FILE FORMAT

This tool currently only supports vcf formats. The user must provide variant data adhering to the format. The input VCF (Variant Call Format) file should adhere to the following format:

Name Fullname Datatypes
Type Represents the type of mutation. str
Gene Indicates the specific gene associated with the mutation. str
PMID Refers to the PubMed ID of the associated research paper. str
Genome Specifies the genome version used for mapping. str
Mutation Type Describes the type of mutation. str
Chromosome Represents the chromosome number where the mutation occurs. str
Start Position Indicates the starting position of the mutation on the chromosome. str
End Position Represents the ending position of the mutation on the chromosome. str
Reference Allele Denotes the original allele at the mutation site. str
Mutant Allele Represents the altered allele resulting from the mutation. str
Method Describes the method used for mutation detection. str
from sbsgenerator import generator
# Context number (must be larger than 3 and uneven)
context_size = 7
# List with all the vcf files
vcf_files = ["data/test.vcf"]
# Where the ref genomes will be downloaded to
ref_genome = "temp/ref_genomes"
sbsgen = generator.SBSGenerator(
    context=context_size,
    vcf_files=vcf_files,
    ref_genome=ref_genome
)
sbsgen.count_mutations()
# The attribute count_samples holds the sbs matrix
sbsgen.count_samples

Contributing

I welcome contributions to SBSGenerator! If you have suggestions for improvements or bug fixes, please open an issue or submit a pull request.

License

SBSGenerator is released under the MIT License. See the LICENSE file for more details.

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

sbsgenerator-1.0.5.tar.gz (94.9 kB view details)

Uploaded Source

Built Distributions

sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-cp312-none-win_amd64.whl (164.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

sbsgenerator-1.0.5-cp312-none-win32.whl (159.1 kB view details)

Uploaded CPython 3.12 Windows x86

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-cp312-cp312-macosx_11_0_arm64.whl (277.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

sbsgenerator-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

sbsgenerator-1.0.5-cp311-none-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

sbsgenerator-1.0.5-cp311-none-win32.whl (161.5 kB view details)

Uploaded CPython 3.11 Windows x86

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-cp311-cp311-macosx_11_0_arm64.whl (279.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

sbsgenerator-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

sbsgenerator-1.0.5-cp310-none-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

sbsgenerator-1.0.5-cp310-none-win32.whl (161.6 kB view details)

Uploaded CPython 3.10 Windows x86

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-cp310-cp310-macosx_11_0_arm64.whl (279.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

sbsgenerator-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

sbsgenerator-1.0.5-cp39-none-win_amd64.whl (166.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

sbsgenerator-1.0.5-cp39-none-win32.whl (161.8 kB view details)

Uploaded CPython 3.9 Windows x86

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

sbsgenerator-1.0.5-cp38-none-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

sbsgenerator-1.0.5-cp38-none-win32.whl (160.5 kB view details)

Uploaded CPython 3.8 Windows x86

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

sbsgenerator-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file sbsgenerator-1.0.5.tar.gz.

File metadata

  • Download URL: sbsgenerator-1.0.5.tar.gz
  • Upload date:
  • Size: 94.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.0

File hashes

Hashes for sbsgenerator-1.0.5.tar.gz
Algorithm Hash digest
SHA256 c0a230d3abde54385a55f0665fc69a0e7b659b6fb56713ad4bb404f2bdc7329b
MD5 00949e85a1691d07289b388396486bc1
BLAKE2b-256 63b86b55c4a551de9b4179f9b2aea2838620fd806f953421a6341917a82b78a6

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4db4c3693d79dcf5ad0911dedac75e41309460cce0758673ab9e2ba663a7d99
MD5 3e3a89c80f7c4dd38e49bd4acbdfd89f
BLAKE2b-256 617112389bb87ad5bdcaa81bc9a9b0e03fa2e8f7144d4a19ba119fd90933c737

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca19a026a031a91162220fadec9d9a465de5dece0283a5accd2738b6e1c8ea3c
MD5 61df68dbf678a44acb377dc892a9feba
BLAKE2b-256 ac5b273566cef177c2cf4ddc1f10b285c7d147c0f4bde2d40dddd924a1baba1e

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0560a6a1ea25ef7d2eedd84678e2db7c852db0122c81edb1e2e26660da8f0607
MD5 d77b08232c183e6321e0075618870b73
BLAKE2b-256 43f20626c84f7a9f771c6d0b55f733fd56a9bdcb9a8596a8f903ee76b428a812

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbdb5a919b5a528c8c988ffed3968ca212e773f9b26b1a40cf48c333d26c0002
MD5 921b1f17ccc569deffe74ffbec16a237
BLAKE2b-256 8f02a7f032646b6738778a0d47060f24cf6b0c362939bf4ffa61ce45107b53fd

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01901828a8bfdb830a32e4a270d548087d1c3bd08db5e94346c5d33e01a4edf2
MD5 da13c5a96bb83ab02f02a4f2a66aebcc
BLAKE2b-256 443f09875b3f2bc31b65d7880f2554205b11897c3bef763e1187f4c5cc696963

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57b79f153ed39f38e08d49c6289f2d6d771aeef663884496398a96829b9b91b0
MD5 3e90da2eca87b3ab4b96cb94fa1c5923
BLAKE2b-256 442e8b1182da85dcfaad8f522f7ff14405c1a08ac36bc2d61ab1c5f79236d6f1

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 456f53c3e31c19d90070c6796f6a0875e00afe378725736d8231ffec51b8c9c6
MD5 05ca528483763e296304d32d0221b34a
BLAKE2b-256 3f20bc47618e75c1455b518a8c158c2a7c4f88b98ce043dae345027ef649a8ab

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9ca9ac2b0d5fd5831e1c6c825cdf2894cf1231b289d85e1f86199a3abb8b5bc
MD5 2917292f98584f77cf04127d32374209
BLAKE2b-256 43ff23ee51d067e92ed7314818fbc33e48b6beb037d036a7742459504192bd7e

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b324e21d6e77fab3f71ea8319c13c75baedd8b3f62ec3091a8fa9d5fcba35f4
MD5 5a50bcfc33c294aedede7e1481c4d58d
BLAKE2b-256 cf44c01f9a1207dc0b0091c03192554347ba7f67e135e05e470d266f4c0589b8

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ade9ffc945cab29d2f6906fffa3a81717351808abf20a23dcf78c3eaaa5e4888
MD5 c80d40660f2fde0336cd928ff15a9f2c
BLAKE2b-256 8ed401560e7a75253135ac309b422e4884a4640f864a1e6e9ebbd80b3ad640b3

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e4219e723498e638880601b87f1372e1036accd8124a82bfa6bd597dca59c5f
MD5 f6d86e35ae30befba03ce3a8551aae4c
BLAKE2b-256 b0a33182a2c0d846636c0a589ba241ae6c5585879addaaeb70e31466e0546fdd

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17c23170776e04cd80b406521dad2229f9364b36ce37426ef22804eedb04fe63
MD5 3cc362585b7594ec6cfe6d9c575651ae
BLAKE2b-256 4f4cf5dfdcba5974970b326fe37c90ba6a745d5337b60596a826ab8db9604bcd

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5990a354238637ddb7f60a2659d1a216123925eeed245f70f7d17f0d3a38f9d9
MD5 7a26b7310858ae644ee093294109792c
BLAKE2b-256 569745b5dd2e306b2578e79c6e5dd9c0cb09ad5d3374a20569fa9a93d1911774

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f123350e479f6b7599513baa4a19da8e201d8f5a1810ae7a62289eb6941873a6
MD5 9660511610abcdec1185d9d69cca9dda
BLAKE2b-256 307b981e0e1cf69627011b54a433b3e775c8648cde7a6593848a882e09e8c1bb

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c6a53e3af1f3cfa69284a10257c4af591497f7a794682845434a3da073987c3
MD5 15e760ef539872a6a642d42cf5bb6a63
BLAKE2b-256 49a0afa3f1ecc192750e4b5c451af1ed1dd4b2cbb8db1afb6e39babccf40c8dc

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc156a0f36da8574b5ee53b2be704750eb6a20be4eb96ee690889bf8df6ebc58
MD5 c448cf5ab286d95cd2a33916ffe50311
BLAKE2b-256 45f64a469ead5851356da092ba8a525891f76ce469d18d9933e4f4819c3543d9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d7270e9d1acc3ee6d9cfdbad036400c5773f1083d444b98f03e25d5e089edf1
MD5 117e1df6f867293636faa38a879ef784
BLAKE2b-256 2e290d1bfcd202eebd7fcf82d758ca2c76aca5942f429eb554220af8198da57a

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebdc4b5ff3de78baf9b89a8e9bb69225ca1b1066123338296bd354de8b4e0fbf
MD5 d3979527f359d3b852ed77ab9728b27c
BLAKE2b-256 bafb6e8c4398bbce901e32ba13ed848e8278e6f54a1a6e6eb6c8135cb67abf48

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9e17181020e82019c47209bdd23228e20d84e0cafcffb8a5a55a455f18a4ba41
MD5 ef3216a225de7894717282f115efeadb
BLAKE2b-256 470ca87c9069a2c48d225bc61904d19ab1fce5eefc8d35d80797d514e8c02a6c

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-none-win32.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 e52e437b9afec259a17268cd0aebe5320010ca17773e9b54827ddcba93ec4bf2
MD5 182a3784bcfd216a038b82a4a994aea2
BLAKE2b-256 42011c6b703f2c8b694978bdcf10dfe9a4a415bf95b53a1a94549a3be8d4e323

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3103313741303a7f6a3fb408e0bdef88b807779b7b900daee4f1620876846f62
MD5 13a9ef3cbc6e084a62c2455c9dea0a38
BLAKE2b-256 ac6fac603081b2a066073351a101256747bdf5c59440e3d21b864b02e32e35f5

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94b1df6ebf2a294a87bfc3025038350646a3ad6ff82bea862362e940888c345c
MD5 d1e2d4dfbe9bcf8a10dd1c48dbef7680
BLAKE2b-256 272726ca39cea6a8ca052abe912882eee7915f714a65c01e15b668e91fad970b

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b207a44bada3f67662179b3c9dc51deb08162014b7862288d5e192cf342cb650
MD5 4c8f703543a30621454d6639802538bb
BLAKE2b-256 dff92c2f6f7990a5a8d1e79d77c185e7249efd792372d466dfd4eef4e9d1c8fd

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f6f00ed83b92e9c2a5f196bd1b8675ea6e18be78114e5869776bc6fd75dd488
MD5 b8e4be02777de1bb57774940ac1b0b4b
BLAKE2b-256 81535a9e14a9bd4ff166a964295ed809c7c1ab267a85588fc5e6f943113a5cd7

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c856571a3beb3dee3891951b34ca93c36f619951bf4d58de266d9a4592dd5b7d
MD5 d378a15948bdd2eb1a098a29df536167
BLAKE2b-256 af587acd649615bc318937a1440cdba4545740557aa8040823d5f7e314597704

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77b6201ad256983b69273365d95c5aa0f84a104bd43cb733224abbca707f24f2
MD5 22bb825720b588daf9d37fbf31866436
BLAKE2b-256 0872c75ffaf157d6639a12672d3d388f12434238d45de13ca45d0836dbe4c192

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea2fa72312d36cc0c53f6c9637f50d221655b843923dab10df6378d1b056118d
MD5 8f06f1a328cdf6243afd06f7fe443201
BLAKE2b-256 b008e8f1bcd785225f1390b08c810ac16fa7ca669e1296fc86c720ba380f89d6

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d702736b1b7afedfe9c46c89ff92ddfe60c974bd6db2472136201c1f710f51a3
MD5 edb111eb3a07320ef24e264d07be9dab
BLAKE2b-256 95344a8f78a0eca29a84a5b98eee1319c814e9f1a82cb93be83845cad7fd2409

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 04b46b313d72c6d0a3090a677264851f35fb6c49ab9ff2942be63d3a549b59f1
MD5 2254c93a32679c92a0ccec916c2d7e50
BLAKE2b-256 7225aa32d7bcc41709c625f42206350244f92353e3c0e12a17c73177d34dc3f5

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-none-win32.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 24b30699ef916cfeaff1aa698f484cf1972cd55881c87aff39af6996b661bd5a
MD5 d7faa941c2b7eb339cc6b1166282171e
BLAKE2b-256 f648f01f2b23ee961d386c5919bde96e84a1a00fe26951ea733c633a3541bad9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e522381e7cdb21181539e8b0393168474bb32a5749d7ba17371562bd5ba7659
MD5 cc6db20f3f3a9d668f218a37d094e0ab
BLAKE2b-256 ffe2be09e07d60e4f65dc096a947cc4774714a3bc9f6793549b0f3c1dd6604c9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 467a1a9be234ac57dbddaef7de73e5ebb9a2f05ff0657c63eaac145033f38189
MD5 affead528d45a356a189c2d0ed47e921
BLAKE2b-256 05c9ad66bb56cf2244caab85292868773a346ebf80fefb13ff20c76e4fbf6d41

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 549ef0b81893f35a24f03e46ba764160296bc67a4233631817d03add88b7ba68
MD5 1728dfd79816f426fc755e2744f7f400
BLAKE2b-256 998e95cc2b4d7715076e03402995730a5decdf80ab0b16718924dbd6eddbf637

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5e95ccbb1ca73961f3f51459c36d4210852511db90e5a0592fce9f899709bfb
MD5 7bb413014ff26abfd386a651b47e7a0f
BLAKE2b-256 a020d21c5c379516fb446ffc327df6cdce8d4e448a42e2749affee7641006142

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4766926caa1c565bc6b49a7335e9c8f8201ba482d03074e20d7c93824f9e3ac
MD5 d20077833f85061d2a585eb868f79c52
BLAKE2b-256 673636530691daedddbba737a520651fbbf498b4566999d13564d6460af2c5e9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21f5426424c456f6d5088c3fbcc080c388ce7d44421e476b246d68d25607520c
MD5 932b8618afd72e9e11c6ccc101464c9e
BLAKE2b-256 e4b2f7b4f16a26f28150e17a5e96438aaf79820b9a40eec53ac09b2879762d98

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96bc53433affd6f330e9b70753fdfa55c9fff0eb4ae48a3a4d6245e361de24f6
MD5 7e8a4602cdf75ea7467341eb954c0ac9
BLAKE2b-256 4c3edce77ebd6ec4a7a2da44585520f126ac65d8af0584f51e0ee7b315d0a773

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 511236c967aacea47dd9a02b9453431d7d7f47c333f3539d16a43238a09b5d79
MD5 af8d7a75e019f49e26d3cb1d2c73f6da
BLAKE2b-256 28b16c5775de1bb1e0a77a611dc407e6af891119b5fffb7fa25a5b7f39f30509

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 580f8257d2127b390173cc4a466e7e357a2fb0b7385a086383ea3459e07c6a7e
MD5 87572467b3b2d6d44a357604f453f9fa
BLAKE2b-256 4e7c998c3cea9cd4766864a7d8dbfff26fe87cc349a5a91e271d54fc2952a897

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-none-win32.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5bb11ed59161262040bcfb602b8759b9cd7d692193131b30c7e38155f0678a92
MD5 146a6bac1c9eaa9849579143b34be0a7
BLAKE2b-256 3a5dfa24f064e9ab9d66163e046b1984eeca678a74781b8105238ee4103fa8e4

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c142fc98643f3ace5c2bd6d13907244260cb56b2ff4db70a55743b9e03dc4786
MD5 638709064c98a50875d736eea13bfdc9
BLAKE2b-256 a5c1533f4a2e4892d3188e9de2f7464fc28aa83ce82d3ef7858c39edab481ed4

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06ff4e5ef86dcb7195aeae33a7acce8018b953c7a1158928e77efb03c7b65608
MD5 449973bb2200e05b579ff452fe005c78
BLAKE2b-256 57417369f0ac577322e06d7facf8004f680f4cc7f1d15c546c0081ffd90c9dab

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0deb9f999b7f44b8844294e714818f234f83b045688e4cef9efca2c102ba6ca2
MD5 48e73fc2121c659364aff6220406ffcf
BLAKE2b-256 e96cebad575c265fe566ba6cb67df67d5101863a854cb52831bcc5acbb975292

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bf62fa80013d140fabeb134ec23754da631d1d6695b97c6a504c44490850566
MD5 e0a854a118bbac2a250e59949eb462e6
BLAKE2b-256 97eb8c1be4f51a8be20b7d2da49de2a8dddacd4022767dd98b3ac3f029b09ad4

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62d31bded30a65ffb7cd0e2f6bc7e8939e11796f0e3f5732859f53921fd708e3
MD5 d6e8ade63ce5359a41723ed49b0ec7dc
BLAKE2b-256 779e99ed54dc0fca0c4cb73c688cdccc82c6a2b0da05d3d0c108a22d5350a9d9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf9f543322b0026162e88a766736d0e6176b77f2c0bc0abfa65b830516eebfe4
MD5 b42c455687d71778967ee601d8c6bc7e
BLAKE2b-256 dcef467e9915967540f901da30ecf6aa61200fc860d654a9110ed54214612b03

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b29f0e6f0789b7e51589143d38a4b5c31b7551cee6eb0786dfcc58dbb1ee5e9c
MD5 cd588f25f817262436f98810720048e0
BLAKE2b-256 b997ac1810c420edb2e04d4bc3f3cd7e3f11611c8f2dae22d1d591266f62aa93

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 444150d482df4ae4480c911f6281eafdaea24ada0fce624597c547fb439a5c41
MD5 5e7852e0d56af16c12bd5ab84e1015ad
BLAKE2b-256 4ef6dfaaeefc98ff38879f9ea0d4c9568bc498562a3406c19ad10839343dbd72

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a055ae96dcf7a349f8caaffe90fddaa872ba62281d85ac888e6c13141249e59
MD5 a9b3a91deaedd9d0bfda1751397359eb
BLAKE2b-256 5d3326e2face49dd9590b2f54baa70e07d61d184bf1b4fc4d8bdd63d5ff8e334

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-none-win32.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4f667128b7949d8058ae5386cd4a12848ba21416fc2cd44d8ba2b1bb5eea8cee
MD5 b3b57a9f9b1bf5062ac1c4569340b80d
BLAKE2b-256 b227848578d60a596e3f1f8c5085581d23278bd8a56ddc5566d2187b9dbddffe

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2c623146bc3a5d12f56a343e8d9325807adcf57fb20666f0b72ebcdf49455f1
MD5 a609177744217c8eb0ba9461873d5479
BLAKE2b-256 84417750fce90e18994ac65506beb05165e85b997b640d0572949e82a432eda9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5e67fbb567820a6b6bde04956f6a1d1caa6658193b69662d79aff0d73be0299
MD5 03a9c43614c85dd636e7ce32326fb534
BLAKE2b-256 5030b7dec8c611b1a3ab822c1bf3a5197138f48e3d4edbb1879334974cc0407e

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e4b3bc8df2f66ecd257596331a44d0239a89d84cb4f3e3146ad1b6bf36b8245
MD5 35e22cc6d435040dfc09d07d62052316
BLAKE2b-256 3d89fa132ef4c0aa9b57bf5c6da0dd52813535f5caa2b867b645b731a6333794

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccd7d13ac53fea85eba0f10e04896cd3b62f13a7b8aaf269d1b7f4b130ddbdde
MD5 7a2d9923ec50f84949fe9661d0b26b26
BLAKE2b-256 f7569a1190d2b5b2708cdf4ce548f0d1a7a21de5c2695643fa97992dff8311f3

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06ada6ebff396aff976114f622469719ca914eaa88514a98b61927d860b5f23f
MD5 7dcc1ecc1ddf6fe6c5dd73ba1e9c8c86
BLAKE2b-256 ef6bd5bd3378db53ec155b46644b02770cae3c97b2cf6f317f813e63a39f7349

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45ad54330e97e146c3116d350cb3ca3be08672398cfdd2e12779300b3a969cba
MD5 1809d3fda5c7f7b0222db4e9b8216262
BLAKE2b-256 1d0379af150272d67df0fada4942a0a62fe04438d99ff1d56e86375861c780a7

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 97c6cd7f7b233619577383459cf0de5ca53bcced58da73f338ebaa1ea7545aac
MD5 b9204d7c39c5b6f83441a2fadcefc7c2
BLAKE2b-256 2e723721287f9dfa69d18f3b446ac44403323a76a4addfd30ea68f990ec89eb9

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-none-win32.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2f01a2e33714a53c5a8f97e25c3875ed4926c42ec599111e3e24720ad6c4e8c9
MD5 6c4a0782b2af648686c7bb84d1098a90
BLAKE2b-256 bd3c196e1961f550457836720ecf3624dea8288fd4633b2ddf190e77d59328c5

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 607f7aa6949d2738c8840f5b769a19ce0973438160b0426552342866dabdde29
MD5 a6e16b0799760d4a7941c2d25bcb4b51
BLAKE2b-256 aa0119d5b3c07eb308712bdc814a7b07d2364a98cf5d4d737cdeb7c19c229a5f

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 233b263eb185cabaf7d05e51e240d4f7ce132a11e570ec0321aa8b0a05adaa08
MD5 56f135244e7b4b4db5b66577e432a1d4
BLAKE2b-256 b9d90492583263be4e0ad5b3f2ebd9397fa3f2844c89d0a332c1fe9a1cb82dec

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fde038f17fd1fb8cc81851e24dc13db97a1b62dbee95094277a8bdf1277cb4c6
MD5 a33d0c0f5aa7180bb40d3ac21ee05bef
BLAKE2b-256 2345162c2d979331d305108fa18489acc24879b9819d4fcabe63f6c8b3dfd7cc

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cf218f03019118043fba60fb48a274cb3799f4de573f981dd2149c5d812797d
MD5 eefddeb07fd6810fa58533b0c8fb7345
BLAKE2b-256 e315c5e16fed2fc3a02c778fa5b5da364a28dcaf056e2e98095eaf3568ca7591

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c77eae3b285c5a1c632224a360c3d1abc6de0ed0f3b0576b9008e688abbf2e78
MD5 61962210b4acc7c9df8e2444f67b1ab0
BLAKE2b-256 c64a49fd2432add14f7cbf7a8afbe3e3de6b8404f2b3c946f4f47caf646df71e

See more details on using hashes here.

File details

Details for the file sbsgenerator-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sbsgenerator-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2930e0e5249b2ec7dcc0b6083ce390d9f5741cbaf783391e1ed1aed1577b71dd
MD5 5fe29e4638f15a19e2880d06ddb59ddf
BLAKE2b-256 2758a57d13efe6f24eee386f4aa4bd381c1510713bc8f46e65a66a90e5d15189

See more details on using hashes here.

Supported by

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