sbsgenerator


Namesbsgenerator JSON
Version 1.0.5 PyPI version JSON
download
home_pageNone
SummaryBlazingly fast SBS matrix generator library
upload_time2024-03-14 22:57:36
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords sbs matrix sbsgenerator single base substitution bioinformatics genomics genetics biology sequence sequence analysis
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!-- [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://osf.io/t6j7u/wiki/home/) 
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -->

<h2 align="center">SBSGenerator</h2>

<p align="center">
<a href="https://github.com/AlfonsoJan/sbsgenerator/"><img alt="Actions Status" src="https://img.shields.io/badge/docs-latest-blue.svg"></a>
<a href="https://github.com/alfonsojan/sbsgenerator/actions"><img alt="Actions Status" src="https://github.com/alfonsojan/sbsgenerator/actions/workflows/deploy.yml/badge.svg"></a>
<a href="https://pypi.org/project/sbsgenerator/"><img alt="PyPI" src="https://img.shields.io/pypi/v/sbsgenerator"></a>
<a href="https://pypi.python.org/pypi/sbsgenerator/"><img alt="PyPI" src="https://img.shields.io/pypi/pyversions/sbsgenerator.svg"></a>
<a href="https://github.com/alfonsojan/sbsgenerator/blob/main/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
</p>

_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

```bash
$ 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 |



```python
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.


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "sbsgenerator",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "sbs,matrix,sbsgenerator,Single Base Substitution,bioinformatics,genomics,genetics,biology,sequence,sequence analysis",
    "author": null,
    "author_email": "Jan Alfonso Busker <alfonsobusker@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/63/b8/6b55c4a551de9b4179f9b2aea2838620fd806f953421a6341917a82b78a6/sbsgenerator-1.0.5.tar.gz",
    "platform": null,
    "description": "<!-- [![Docs](https://img.shields.io/badge/docs-latest-blue.svg)](https://osf.io/t6j7u/wiki/home/) \n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) -->\n\n<h2 align=\"center\">SBSGenerator</h2>\n\n<p align=\"center\">\n<a href=\"https://github.com/AlfonsoJan/sbsgenerator/\"><img alt=\"Actions Status\" src=\"https://img.shields.io/badge/docs-latest-blue.svg\"></a>\n<a href=\"https://github.com/alfonsojan/sbsgenerator/actions\"><img alt=\"Actions Status\" src=\"https://github.com/alfonsojan/sbsgenerator/actions/workflows/deploy.yml/badge.svg\"></a>\n<a href=\"https://pypi.org/project/sbsgenerator/\"><img alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/sbsgenerator\"></a>\n<a href=\"https://pypi.python.org/pypi/sbsgenerator/\"><img alt=\"PyPI\" src=\"https://img.shields.io/pypi/pyversions/sbsgenerator.svg\"></a>\n<a href=\"https://github.com/alfonsojan/sbsgenerator/blob/main/LICENSE\"><img alt=\"License: MIT\" src=\"https://black.readthedocs.io/en/stable/_static/license.svg\"></a>\n</p>\n\n_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.\n\n## Installation\n\n```bash\n$ pip install sbsgenerator\n```\n\n## Usage\n\nThe `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.\n\n- 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.*\n\n- 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.\n*16 (4x4) possible starting nucleotides x 6 pyrimidine variants x 16 (4x4) possible ending nucleotides = 1536 total combinations.*\n\n- 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.\n*64 (4x4x4) nucleotides x 6 pyrimidine variants x 64 (4x4x4) possible ending dinucleotides = 24576 total combinations.*\n\n### VCF INPUT FILE FORMAT\n\nThis 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:\n\n| Name | Fullname | Datatypes |\n|:-:|:-:|:-:|\n| Type | Represents the type of mutation. | str |\n| Gene | Indicates the specific gene associated with the mutation. | str |\n| PMID | Refers to the PubMed ID of the associated research paper. | str |\n| Genome | Specifies the genome version used for mapping. | str |\n| Mutation Type | Describes the type of mutation. | str |\n| Chromosome | Represents the chromosome number where the mutation occurs. | str |\n| Start Position | Indicates the starting position of the mutation on the chromosome. | str |\n| End Position | Represents the ending position of the mutation on the chromosome. | str |\n| Reference Allele | Denotes the original allele at the mutation site. | str |\n| Mutant Allele | Represents the altered allele resulting from the mutation. | str  |\n| Method | Describes the method used for mutation detection. | str |\n\n\n\n```python\nfrom sbsgenerator import generator\n# Context number (must be larger than 3 and uneven)\ncontext_size = 7\n# List with all the vcf files\nvcf_files = [\"data/test.vcf\"]\n# Where the ref genomes will be downloaded to\nref_genome = \"temp/ref_genomes\"\nsbsgen = generator.SBSGenerator(\n    context=context_size,\n    vcf_files=vcf_files,\n    ref_genome=ref_genome\n)\nsbsgen.count_mutations()\n# The attribute count_samples holds the sbs matrix\nsbsgen.count_samples\n```\n\n## Contributing\n\nI welcome contributions to SBSGenerator! If you have suggestions for improvements or bug fixes, please open an issue or submit a pull request.\n\n## License\n\nSBSGenerator is released under the MIT License. See the LICENSE file for more details.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Blazingly fast SBS matrix generator library",
    "version": "1.0.5",
    "project_urls": {
        "Changelog": "https://github.com/AlfonsoJan/sbsgenerator/blob/main/CHANGES.md",
        "Homepage": "https://github.com/AlfonsoJan/sbsgenerator"
    },
    "split_keywords": [
        "sbs",
        "matrix",
        "sbsgenerator",
        "single base substitution",
        "bioinformatics",
        "genomics",
        "genetics",
        "biology",
        "sequence",
        "sequence analysis"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4ef6dfaaeefc98ff38879f9ea0d4c9568bc498562a3406c19ad10839343dbd72",
                "md5": "5e7852e0d56af16c12bd5ab84e1015ad",
                "sha256": "444150d482df4ae4480c911f6281eafdaea24ada0fce624597c547fb439a5c41"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5e7852e0d56af16c12bd5ab84e1015ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 285622,
            "upload_time": "2024-03-14T22:55:43",
            "upload_time_iso_8601": "2024-03-14T22:55:43.868628Z",
            "url": "https://files.pythonhosted.org/packages/4e/f6/dfaaeefc98ff38879f9ea0d4c9568bc498562a3406c19ad10839343dbd72/sbsgenerator-1.0.5-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b997ac1810c420edb2e04d4bc3f3cd7e3f11611c8f2dae22d1d591266f62aa93",
                "md5": "cd588f25f817262436f98810720048e0",
                "sha256": "b29f0e6f0789b7e51589143d38a4b5c31b7551cee6eb0786dfcc58dbb1ee5e9c"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd588f25f817262436f98810720048e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 279348,
            "upload_time": "2024-03-14T22:55:45",
            "upload_time_iso_8601": "2024-03-14T22:55:45.895318Z",
            "url": "https://files.pythonhosted.org/packages/b9/97/ac1810c420edb2e04d4bc3f3cd7e3f11611c8f2dae22d1d591266f62aa93/sbsgenerator-1.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "779e99ed54dc0fca0c4cb73c688cdccc82c6a2b0da05d3d0c108a22d5350a9d9",
                "md5": "d6e8ade63ce5359a41723ed49b0ec7dc",
                "sha256": "62d31bded30a65ffb7cd0e2f6bc7e8939e11796f0e3f5732859f53921fd708e3"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6e8ade63ce5359a41723ed49b0ec7dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1042899,
            "upload_time": "2024-03-14T22:55:48",
            "upload_time_iso_8601": "2024-03-14T22:55:48.066162Z",
            "url": "https://files.pythonhosted.org/packages/77/9e/99ed54dc0fca0c4cb73c688cdccc82c6a2b0da05d3d0c108a22d5350a9d9/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "97eb8c1be4f51a8be20b7d2da49de2a8dddacd4022767dd98b3ac3f029b09ad4",
                "md5": "e0a854a118bbac2a250e59949eb462e6",
                "sha256": "9bf62fa80013d140fabeb134ec23754da631d1d6695b97c6a504c44490850566"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e0a854a118bbac2a250e59949eb462e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1065599,
            "upload_time": "2024-03-14T22:55:50",
            "upload_time_iso_8601": "2024-03-14T22:55:50.126806Z",
            "url": "https://files.pythonhosted.org/packages/97/eb/8c1be4f51a8be20b7d2da49de2a8dddacd4022767dd98b3ac3f029b09ad4/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e96cebad575c265fe566ba6cb67df67d5101863a854cb52831bcc5acbb975292",
                "md5": "48e73fc2121c659364aff6220406ffcf",
                "sha256": "0deb9f999b7f44b8844294e714818f234f83b045688e4cef9efca2c102ba6ca2"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "48e73fc2121c659364aff6220406ffcf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1153595,
            "upload_time": "2024-03-14T22:55:52",
            "upload_time_iso_8601": "2024-03-14T22:55:52.076287Z",
            "url": "https://files.pythonhosted.org/packages/e9/6c/ebad575c265fe566ba6cb67df67d5101863a854cb52831bcc5acbb975292/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57417369f0ac577322e06d7facf8004f680f4cc7f1d15c546c0081ffd90c9dab",
                "md5": "449973bb2200e05b579ff452fe005c78",
                "sha256": "06ff4e5ef86dcb7195aeae33a7acce8018b953c7a1158928e77efb03c7b65608"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "449973bb2200e05b579ff452fe005c78",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1200203,
            "upload_time": "2024-03-14T22:55:54",
            "upload_time_iso_8601": "2024-03-14T22:55:54.113738Z",
            "url": "https://files.pythonhosted.org/packages/57/41/7369f0ac577322e06d7facf8004f680f4cc7f1d15c546c0081ffd90c9dab/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a5c1533f4a2e4892d3188e9de2f7464fc28aa83ce82d3ef7858c39edab481ed4",
                "md5": "638709064c98a50875d736eea13bfdc9",
                "sha256": "c142fc98643f3ace5c2bd6d13907244260cb56b2ff4db70a55743b9e03dc4786"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "638709064c98a50875d736eea13bfdc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1054060,
            "upload_time": "2024-03-14T22:55:56",
            "upload_time_iso_8601": "2024-03-14T22:55:56.442026Z",
            "url": "https://files.pythonhosted.org/packages/a5/c1/533f4a2e4892d3188e9de2f7464fc28aa83ce82d3ef7858c39edab481ed4/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcef467e9915967540f901da30ecf6aa61200fc860d654a9110ed54214612b03",
                "md5": "b42c455687d71778967ee601d8c6bc7e",
                "sha256": "bf9f543322b0026162e88a766736d0e6176b77f2c0bc0abfa65b830516eebfe4"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "b42c455687d71778967ee601d8c6bc7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1079713,
            "upload_time": "2024-03-14T22:55:57",
            "upload_time_iso_8601": "2024-03-14T22:55:57.920610Z",
            "url": "https://files.pythonhosted.org/packages/dc/ef/467e9915967540f901da30ecf6aa61200fc860d654a9110ed54214612b03/sbsgenerator-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a5dfa24f064e9ab9d66163e046b1984eeca678a74781b8105238ee4103fa8e4",
                "md5": "146a6bac1c9eaa9849579143b34be0a7",
                "sha256": "5bb11ed59161262040bcfb602b8759b9cd7d692193131b30c7e38155f0678a92"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "146a6bac1c9eaa9849579143b34be0a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 161573,
            "upload_time": "2024-03-14T22:55:59",
            "upload_time_iso_8601": "2024-03-14T22:55:59.859322Z",
            "url": "https://files.pythonhosted.org/packages/3a/5d/fa24f064e9ab9d66163e046b1984eeca678a74781b8105238ee4103fa8e4/sbsgenerator-1.0.5-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e7c998c3cea9cd4766864a7d8dbfff26fe87cc349a5a91e271d54fc2952a897",
                "md5": "87572467b3b2d6d44a357604f453f9fa",
                "sha256": "580f8257d2127b390173cc4a466e7e357a2fb0b7385a086383ea3459e07c6a7e"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "87572467b3b2d6d44a357604f453f9fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 165725,
            "upload_time": "2024-03-14T22:56:02",
            "upload_time_iso_8601": "2024-03-14T22:56:02.092790Z",
            "url": "https://files.pythonhosted.org/packages/4e/7c/998c3cea9cd4766864a7d8dbfff26fe87cc349a5a91e271d54fc2952a897/sbsgenerator-1.0.5-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28b16c5775de1bb1e0a77a611dc407e6af891119b5fffb7fa25a5b7f39f30509",
                "md5": "af8d7a75e019f49e26d3cb1d2c73f6da",
                "sha256": "511236c967aacea47dd9a02b9453431d7d7f47c333f3539d16a43238a09b5d79"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "af8d7a75e019f49e26d3cb1d2c73f6da",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 285815,
            "upload_time": "2024-03-14T22:56:03",
            "upload_time_iso_8601": "2024-03-14T22:56:03.953112Z",
            "url": "https://files.pythonhosted.org/packages/28/b1/6c5775de1bb1e0a77a611dc407e6af891119b5fffb7fa25a5b7f39f30509/sbsgenerator-1.0.5-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4c3edce77ebd6ec4a7a2da44585520f126ac65d8af0584f51e0ee7b315d0a773",
                "md5": "7e8a4602cdf75ea7467341eb954c0ac9",
                "sha256": "96bc53433affd6f330e9b70753fdfa55c9fff0eb4ae48a3a4d6245e361de24f6"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7e8a4602cdf75ea7467341eb954c0ac9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 279411,
            "upload_time": "2024-03-14T22:56:05",
            "upload_time_iso_8601": "2024-03-14T22:56:05.839271Z",
            "url": "https://files.pythonhosted.org/packages/4c/3e/dce77ebd6ec4a7a2da44585520f126ac65d8af0584f51e0ee7b315d0a773/sbsgenerator-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "673636530691daedddbba737a520651fbbf498b4566999d13564d6460af2c5e9",
                "md5": "d20077833f85061d2a585eb868f79c52",
                "sha256": "e4766926caa1c565bc6b49a7335e9c8f8201ba482d03074e20d7c93824f9e3ac"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d20077833f85061d2a585eb868f79c52",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1042975,
            "upload_time": "2024-03-14T22:56:07",
            "upload_time_iso_8601": "2024-03-14T22:56:07.366325Z",
            "url": "https://files.pythonhosted.org/packages/67/36/36530691daedddbba737a520651fbbf498b4566999d13564d6460af2c5e9/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a020d21c5c379516fb446ffc327df6cdce8d4e448a42e2749affee7641006142",
                "md5": "7bb413014ff26abfd386a651b47e7a0f",
                "sha256": "e5e95ccbb1ca73961f3f51459c36d4210852511db90e5a0592fce9f899709bfb"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7bb413014ff26abfd386a651b47e7a0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1065067,
            "upload_time": "2024-03-14T22:56:09",
            "upload_time_iso_8601": "2024-03-14T22:56:09.013246Z",
            "url": "https://files.pythonhosted.org/packages/a0/20/d21c5c379516fb446ffc327df6cdce8d4e448a42e2749affee7641006142/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "998e95cc2b4d7715076e03402995730a5decdf80ab0b16718924dbd6eddbf637",
                "md5": "1728dfd79816f426fc755e2744f7f400",
                "sha256": "549ef0b81893f35a24f03e46ba764160296bc67a4233631817d03add88b7ba68"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1728dfd79816f426fc755e2744f7f400",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1153690,
            "upload_time": "2024-03-14T22:56:10",
            "upload_time_iso_8601": "2024-03-14T22:56:10.510737Z",
            "url": "https://files.pythonhosted.org/packages/99/8e/95cc2b4d7715076e03402995730a5decdf80ab0b16718924dbd6eddbf637/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05c9ad66bb56cf2244caab85292868773a346ebf80fefb13ff20c76e4fbf6d41",
                "md5": "affead528d45a356a189c2d0ed47e921",
                "sha256": "467a1a9be234ac57dbddaef7de73e5ebb9a2f05ff0657c63eaac145033f38189"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "affead528d45a356a189c2d0ed47e921",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1199511,
            "upload_time": "2024-03-14T22:56:12",
            "upload_time_iso_8601": "2024-03-14T22:56:12.315126Z",
            "url": "https://files.pythonhosted.org/packages/05/c9/ad66bb56cf2244caab85292868773a346ebf80fefb13ff20c76e4fbf6d41/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffe2be09e07d60e4f65dc096a947cc4774714a3bc9f6793549b0f3c1dd6604c9",
                "md5": "cc6db20f3f3a9d668f218a37d094e0ab",
                "sha256": "6e522381e7cdb21181539e8b0393168474bb32a5749d7ba17371562bd5ba7659"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cc6db20f3f3a9d668f218a37d094e0ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1054379,
            "upload_time": "2024-03-14T22:56:14",
            "upload_time_iso_8601": "2024-03-14T22:56:14.100909Z",
            "url": "https://files.pythonhosted.org/packages/ff/e2/be09e07d60e4f65dc096a947cc4774714a3bc9f6793549b0f3c1dd6604c9/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e4b2f7b4f16a26f28150e17a5e96438aaf79820b9a40eec53ac09b2879762d98",
                "md5": "932b8618afd72e9e11c6ccc101464c9e",
                "sha256": "21f5426424c456f6d5088c3fbcc080c388ce7d44421e476b246d68d25607520c"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "932b8618afd72e9e11c6ccc101464c9e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1079528,
            "upload_time": "2024-03-14T22:56:15",
            "upload_time_iso_8601": "2024-03-14T22:56:15.742337Z",
            "url": "https://files.pythonhosted.org/packages/e4/b2/f7b4f16a26f28150e17a5e96438aaf79820b9a40eec53ac09b2879762d98/sbsgenerator-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f648f01f2b23ee961d386c5919bde96e84a1a00fe26951ea733c633a3541bad9",
                "md5": "d7faa941c2b7eb339cc6b1166282171e",
                "sha256": "24b30699ef916cfeaff1aa698f484cf1972cd55881c87aff39af6996b661bd5a"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "d7faa941c2b7eb339cc6b1166282171e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 161488,
            "upload_time": "2024-03-14T22:56:17",
            "upload_time_iso_8601": "2024-03-14T22:56:17.132547Z",
            "url": "https://files.pythonhosted.org/packages/f6/48/f01f2b23ee961d386c5919bde96e84a1a00fe26951ea733c633a3541bad9/sbsgenerator-1.0.5-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7225aa32d7bcc41709c625f42206350244f92353e3c0e12a17c73177d34dc3f5",
                "md5": "2254c93a32679c92a0ccec916c2d7e50",
                "sha256": "04b46b313d72c6d0a3090a677264851f35fb6c49ab9ff2942be63d3a549b59f1"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2254c93a32679c92a0ccec916c2d7e50",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 165740,
            "upload_time": "2024-03-14T22:56:18",
            "upload_time_iso_8601": "2024-03-14T22:56:18.914485Z",
            "url": "https://files.pythonhosted.org/packages/72/25/aa32d7bcc41709c625f42206350244f92353e3c0e12a17c73177d34dc3f5/sbsgenerator-1.0.5-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "95344a8f78a0eca29a84a5b98eee1319c814e9f1a82cb93be83845cad7fd2409",
                "md5": "edb111eb3a07320ef24e264d07be9dab",
                "sha256": "d702736b1b7afedfe9c46c89ff92ddfe60c974bd6db2472136201c1f710f51a3"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "edb111eb3a07320ef24e264d07be9dab",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 282808,
            "upload_time": "2024-03-14T22:56:20",
            "upload_time_iso_8601": "2024-03-14T22:56:20.755921Z",
            "url": "https://files.pythonhosted.org/packages/95/34/4a8f78a0eca29a84a5b98eee1319c814e9f1a82cb93be83845cad7fd2409/sbsgenerator-1.0.5-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b008e8f1bcd785225f1390b08c810ac16fa7ca669e1296fc86c720ba380f89d6",
                "md5": "8f06f1a328cdf6243afd06f7fe443201",
                "sha256": "ea2fa72312d36cc0c53f6c9637f50d221655b843923dab10df6378d1b056118d"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f06f1a328cdf6243afd06f7fe443201",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 277893,
            "upload_time": "2024-03-14T22:56:22",
            "upload_time_iso_8601": "2024-03-14T22:56:22.289901Z",
            "url": "https://files.pythonhosted.org/packages/b0/08/e8f1bcd785225f1390b08c810ac16fa7ca669e1296fc86c720ba380f89d6/sbsgenerator-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "af587acd649615bc318937a1440cdba4545740557aa8040823d5f7e314597704",
                "md5": "d378a15948bdd2eb1a098a29df536167",
                "sha256": "c856571a3beb3dee3891951b34ca93c36f619951bf4d58de266d9a4592dd5b7d"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d378a15948bdd2eb1a098a29df536167",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1041456,
            "upload_time": "2024-03-14T22:56:23",
            "upload_time_iso_8601": "2024-03-14T22:56:23.708263Z",
            "url": "https://files.pythonhosted.org/packages/af/58/7acd649615bc318937a1440cdba4545740557aa8040823d5f7e314597704/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "81535a9e14a9bd4ff166a964295ed809c7c1ab267a85588fc5e6f943113a5cd7",
                "md5": "b8e4be02777de1bb57774940ac1b0b4b",
                "sha256": "4f6f00ed83b92e9c2a5f196bd1b8675ea6e18be78114e5869776bc6fd75dd488"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b8e4be02777de1bb57774940ac1b0b4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1060982,
            "upload_time": "2024-03-14T22:56:25",
            "upload_time_iso_8601": "2024-03-14T22:56:25.422911Z",
            "url": "https://files.pythonhosted.org/packages/81/53/5a9e14a9bd4ff166a964295ed809c7c1ab267a85588fc5e6f943113a5cd7/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dff92c2f6f7990a5a8d1e79d77c185e7249efd792372d466dfd4eef4e9d1c8fd",
                "md5": "4c8f703543a30621454d6639802538bb",
                "sha256": "b207a44bada3f67662179b3c9dc51deb08162014b7862288d5e192cf342cb650"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "4c8f703543a30621454d6639802538bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1151724,
            "upload_time": "2024-03-14T22:56:27",
            "upload_time_iso_8601": "2024-03-14T22:56:27.565778Z",
            "url": "https://files.pythonhosted.org/packages/df/f9/2c2f6f7990a5a8d1e79d77c185e7249efd792372d466dfd4eef4e9d1c8fd/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "272726ca39cea6a8ca052abe912882eee7915f714a65c01e15b668e91fad970b",
                "md5": "d1e2d4dfbe9bcf8a10dd1c48dbef7680",
                "sha256": "94b1df6ebf2a294a87bfc3025038350646a3ad6ff82bea862362e940888c345c"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "d1e2d4dfbe9bcf8a10dd1c48dbef7680",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1185640,
            "upload_time": "2024-03-14T22:56:29",
            "upload_time_iso_8601": "2024-03-14T22:56:29.074303Z",
            "url": "https://files.pythonhosted.org/packages/27/27/26ca39cea6a8ca052abe912882eee7915f714a65c01e15b668e91fad970b/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac6fac603081b2a066073351a101256747bdf5c59440e3d21b864b02e32e35f5",
                "md5": "13a9ef3cbc6e084a62c2455c9dea0a38",
                "sha256": "3103313741303a7f6a3fb408e0bdef88b807779b7b900daee4f1620876846f62"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "13a9ef3cbc6e084a62c2455c9dea0a38",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1050616,
            "upload_time": "2024-03-14T22:56:30",
            "upload_time_iso_8601": "2024-03-14T22:56:30.671735Z",
            "url": "https://files.pythonhosted.org/packages/ac/6f/ac603081b2a066073351a101256747bdf5c59440e3d21b864b02e32e35f5/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0872c75ffaf157d6639a12672d3d388f12434238d45de13ca45d0836dbe4c192",
                "md5": "22bb825720b588daf9d37fbf31866436",
                "sha256": "77b6201ad256983b69273365d95c5aa0f84a104bd43cb733224abbca707f24f2"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "22bb825720b588daf9d37fbf31866436",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1078331,
            "upload_time": "2024-03-14T22:56:32",
            "upload_time_iso_8601": "2024-03-14T22:56:32.299471Z",
            "url": "https://files.pythonhosted.org/packages/08/72/c75ffaf157d6639a12672d3d388f12434238d45de13ca45d0836dbe4c192/sbsgenerator-1.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42011c6b703f2c8b694978bdcf10dfe9a4a415bf95b53a1a94549a3be8d4e323",
                "md5": "182a3784bcfd216a038b82a4a994aea2",
                "sha256": "e52e437b9afec259a17268cd0aebe5320010ca17773e9b54827ddcba93ec4bf2"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "182a3784bcfd216a038b82a4a994aea2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 159069,
            "upload_time": "2024-03-14T22:56:34",
            "upload_time_iso_8601": "2024-03-14T22:56:34.109542Z",
            "url": "https://files.pythonhosted.org/packages/42/01/1c6b703f2c8b694978bdcf10dfe9a4a415bf95b53a1a94549a3be8d4e323/sbsgenerator-1.0.5-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "470ca87c9069a2c48d225bc61904d19ab1fce5eefc8d35d80797d514e8c02a6c",
                "md5": "ef3216a225de7894717282f115efeadb",
                "sha256": "9e17181020e82019c47209bdd23228e20d84e0cafcffb8a5a55a455f18a4ba41"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ef3216a225de7894717282f115efeadb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 164101,
            "upload_time": "2024-03-14T22:56:35",
            "upload_time_iso_8601": "2024-03-14T22:56:35.402297Z",
            "url": "https://files.pythonhosted.org/packages/47/0c/a87c9069a2c48d225bc61904d19ab1fce5eefc8d35d80797d514e8c02a6c/sbsgenerator-1.0.5-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c64a49fd2432add14f7cbf7a8afbe3e3de6b8404f2b3c946f4f47caf646df71e",
                "md5": "61962210b4acc7c9df8e2444f67b1ab0",
                "sha256": "c77eae3b285c5a1c632224a360c3d1abc6de0ed0f3b0576b9008e688abbf2e78"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "61962210b4acc7c9df8e2444f67b1ab0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1043511,
            "upload_time": "2024-03-14T22:56:37",
            "upload_time_iso_8601": "2024-03-14T22:56:37.093840Z",
            "url": "https://files.pythonhosted.org/packages/c6/4a/49fd2432add14f7cbf7a8afbe3e3de6b8404f2b3c946f4f47caf646df71e/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e315c5e16fed2fc3a02c778fa5b5da364a28dcaf056e2e98095eaf3568ca7591",
                "md5": "eefddeb07fd6810fa58533b0c8fb7345",
                "sha256": "3cf218f03019118043fba60fb48a274cb3799f4de573f981dd2149c5d812797d"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eefddeb07fd6810fa58533b0c8fb7345",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1065399,
            "upload_time": "2024-03-14T22:56:39",
            "upload_time_iso_8601": "2024-03-14T22:56:39.324983Z",
            "url": "https://files.pythonhosted.org/packages/e3/15/c5e16fed2fc3a02c778fa5b5da364a28dcaf056e2e98095eaf3568ca7591/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2345162c2d979331d305108fa18489acc24879b9819d4fcabe63f6c8b3dfd7cc",
                "md5": "a33d0c0f5aa7180bb40d3ac21ee05bef",
                "sha256": "fde038f17fd1fb8cc81851e24dc13db97a1b62dbee95094277a8bdf1277cb4c6"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a33d0c0f5aa7180bb40d3ac21ee05bef",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1153412,
            "upload_time": "2024-03-14T22:56:40",
            "upload_time_iso_8601": "2024-03-14T22:56:40.912052Z",
            "url": "https://files.pythonhosted.org/packages/23/45/162c2d979331d305108fa18489acc24879b9819d4fcabe63f6c8b3dfd7cc/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9d90492583263be4e0ad5b3f2ebd9397fa3f2844c89d0a332c1fe9a1cb82dec",
                "md5": "56f135244e7b4b4db5b66577e432a1d4",
                "sha256": "233b263eb185cabaf7d05e51e240d4f7ce132a11e570ec0321aa8b0a05adaa08"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "56f135244e7b4b4db5b66577e432a1d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1198467,
            "upload_time": "2024-03-14T22:56:43",
            "upload_time_iso_8601": "2024-03-14T22:56:43.330383Z",
            "url": "https://files.pythonhosted.org/packages/b9/d9/0492583263be4e0ad5b3f2ebd9397fa3f2844c89d0a332c1fe9a1cb82dec/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa0119d5b3c07eb308712bdc814a7b07d2364a98cf5d4d737cdeb7c19c229a5f",
                "md5": "a6e16b0799760d4a7941c2d25bcb4b51",
                "sha256": "607f7aa6949d2738c8840f5b769a19ce0973438160b0426552342866dabdde29"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6e16b0799760d4a7941c2d25bcb4b51",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1053809,
            "upload_time": "2024-03-14T22:56:44",
            "upload_time_iso_8601": "2024-03-14T22:56:44.980017Z",
            "url": "https://files.pythonhosted.org/packages/aa/01/19d5b3c07eb308712bdc814a7b07d2364a98cf5d4d737cdeb7c19c229a5f/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2758a57d13efe6f24eee386f4aa4bd381c1510713bc8f46e65a66a90e5d15189",
                "md5": "5fe29e4638f15a19e2880d06ddb59ddf",
                "sha256": "2930e0e5249b2ec7dcc0b6083ce390d9f5741cbaf783391e1ed1aed1577b71dd"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "5fe29e4638f15a19e2880d06ddb59ddf",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1080427,
            "upload_time": "2024-03-14T22:56:46",
            "upload_time_iso_8601": "2024-03-14T22:56:46.819168Z",
            "url": "https://files.pythonhosted.org/packages/27/58/a57d13efe6f24eee386f4aa4bd381c1510713bc8f46e65a66a90e5d15189/sbsgenerator-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bd3c196e1961f550457836720ecf3624dea8288fd4633b2ddf190e77d59328c5",
                "md5": "6c4a0782b2af648686c7bb84d1098a90",
                "sha256": "2f01a2e33714a53c5a8f97e25c3875ed4926c42ec599111e3e24720ad6c4e8c9"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6c4a0782b2af648686c7bb84d1098a90",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 160536,
            "upload_time": "2024-03-14T22:56:48",
            "upload_time_iso_8601": "2024-03-14T22:56:48.406571Z",
            "url": "https://files.pythonhosted.org/packages/bd/3c/196e1961f550457836720ecf3624dea8288fd4633b2ddf190e77d59328c5/sbsgenerator-1.0.5-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e723721287f9dfa69d18f3b446ac44403323a76a4addfd30ea68f990ec89eb9",
                "md5": "b9204d7c39c5b6f83441a2fadcefc7c2",
                "sha256": "97c6cd7f7b233619577383459cf0de5ca53bcced58da73f338ebaa1ea7545aac"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b9204d7c39c5b6f83441a2fadcefc7c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 165720,
            "upload_time": "2024-03-14T22:56:50",
            "upload_time_iso_8601": "2024-03-14T22:56:50.368285Z",
            "url": "https://files.pythonhosted.org/packages/2e/72/3721287f9dfa69d18f3b446ac44403323a76a4addfd30ea68f990ec89eb9/sbsgenerator-1.0.5-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ef6bd5bd3378db53ec155b46644b02770cae3c97b2cf6f317f813e63a39f7349",
                "md5": "7dcc1ecc1ddf6fe6c5dd73ba1e9c8c86",
                "sha256": "06ada6ebff396aff976114f622469719ca914eaa88514a98b61927d860b5f23f"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7dcc1ecc1ddf6fe6c5dd73ba1e9c8c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1043182,
            "upload_time": "2024-03-14T22:56:52",
            "upload_time_iso_8601": "2024-03-14T22:56:52.484935Z",
            "url": "https://files.pythonhosted.org/packages/ef/6b/d5bd3378db53ec155b46644b02770cae3c97b2cf6f317f813e63a39f7349/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f7569a1190d2b5b2708cdf4ce548f0d1a7a21de5c2695643fa97992dff8311f3",
                "md5": "7a2d9923ec50f84949fe9661d0b26b26",
                "sha256": "ccd7d13ac53fea85eba0f10e04896cd3b62f13a7b8aaf269d1b7f4b130ddbdde"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7a2d9923ec50f84949fe9661d0b26b26",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1066306,
            "upload_time": "2024-03-14T22:56:54",
            "upload_time_iso_8601": "2024-03-14T22:56:54.228876Z",
            "url": "https://files.pythonhosted.org/packages/f7/56/9a1190d2b5b2708cdf4ce548f0d1a7a21de5c2695643fa97992dff8311f3/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d89fa132ef4c0aa9b57bf5c6da0dd52813535f5caa2b867b645b731a6333794",
                "md5": "35e22cc6d435040dfc09d07d62052316",
                "sha256": "8e4b3bc8df2f66ecd257596331a44d0239a89d84cb4f3e3146ad1b6bf36b8245"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "35e22cc6d435040dfc09d07d62052316",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1153014,
            "upload_time": "2024-03-14T22:56:56",
            "upload_time_iso_8601": "2024-03-14T22:56:56.445317Z",
            "url": "https://files.pythonhosted.org/packages/3d/89/fa132ef4c0aa9b57bf5c6da0dd52813535f5caa2b867b645b731a6333794/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5030b7dec8c611b1a3ab822c1bf3a5197138f48e3d4edbb1879334974cc0407e",
                "md5": "03a9c43614c85dd636e7ce32326fb534",
                "sha256": "d5e67fbb567820a6b6bde04956f6a1d1caa6658193b69662d79aff0d73be0299"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "03a9c43614c85dd636e7ce32326fb534",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1198032,
            "upload_time": "2024-03-14T22:56:57",
            "upload_time_iso_8601": "2024-03-14T22:56:57.897969Z",
            "url": "https://files.pythonhosted.org/packages/50/30/b7dec8c611b1a3ab822c1bf3a5197138f48e3d4edbb1879334974cc0407e/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84417750fce90e18994ac65506beb05165e85b997b640d0572949e82a432eda9",
                "md5": "a609177744217c8eb0ba9461873d5479",
                "sha256": "a2c623146bc3a5d12f56a343e8d9325807adcf57fb20666f0b72ebcdf49455f1"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a609177744217c8eb0ba9461873d5479",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1053953,
            "upload_time": "2024-03-14T22:57:00",
            "upload_time_iso_8601": "2024-03-14T22:57:00.235559Z",
            "url": "https://files.pythonhosted.org/packages/84/41/7750fce90e18994ac65506beb05165e85b997b640d0572949e82a432eda9/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d0379af150272d67df0fada4942a0a62fe04438d99ff1d56e86375861c780a7",
                "md5": "1809d3fda5c7f7b0222db4e9b8216262",
                "sha256": "45ad54330e97e146c3116d350cb3ca3be08672398cfdd2e12779300b3a969cba"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "1809d3fda5c7f7b0222db4e9b8216262",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1079790,
            "upload_time": "2024-03-14T22:57:01",
            "upload_time_iso_8601": "2024-03-14T22:57:01.950848Z",
            "url": "https://files.pythonhosted.org/packages/1d/03/79af150272d67df0fada4942a0a62fe04438d99ff1d56e86375861c780a7/sbsgenerator-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b227848578d60a596e3f1f8c5085581d23278bd8a56ddc5566d2187b9dbddffe",
                "md5": "b3b57a9f9b1bf5062ac1c4569340b80d",
                "sha256": "4f667128b7949d8058ae5386cd4a12848ba21416fc2cd44d8ba2b1bb5eea8cee"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b3b57a9f9b1bf5062ac1c4569340b80d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 161813,
            "upload_time": "2024-03-14T22:57:03",
            "upload_time_iso_8601": "2024-03-14T22:57:03.715467Z",
            "url": "https://files.pythonhosted.org/packages/b2/27/848578d60a596e3f1f8c5085581d23278bd8a56ddc5566d2187b9dbddffe/sbsgenerator-1.0.5-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5d3326e2face49dd9590b2f54baa70e07d61d184bf1b4fc4d8bdd63d5ff8e334",
                "md5": "a9b3a91deaedd9d0bfda1751397359eb",
                "sha256": "5a055ae96dcf7a349f8caaffe90fddaa872ba62281d85ac888e6c13141249e59"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a9b3a91deaedd9d0bfda1751397359eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 165998,
            "upload_time": "2024-03-14T22:57:05",
            "upload_time_iso_8601": "2024-03-14T22:57:05.096372Z",
            "url": "https://files.pythonhosted.org/packages/5d/33/26e2face49dd9590b2f54baa70e07d61d184bf1b4fc4d8bdd63d5ff8e334/sbsgenerator-1.0.5-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "443f09875b3f2bc31b65d7880f2554205b11897c3bef763e1187f4c5cc696963",
                "md5": "da13c5a96bb83ab02f02a4f2a66aebcc",
                "sha256": "01901828a8bfdb830a32e4a270d548087d1c3bd08db5e94346c5d33e01a4edf2"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "da13c5a96bb83ab02f02a4f2a66aebcc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1043940,
            "upload_time": "2024-03-14T22:57:06",
            "upload_time_iso_8601": "2024-03-14T22:57:06.510549Z",
            "url": "https://files.pythonhosted.org/packages/44/3f/09875b3f2bc31b65d7880f2554205b11897c3bef763e1187f4c5cc696963/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f02a7f032646b6738778a0d47060f24cf6b0c362939bf4ffa61ce45107b53fd",
                "md5": "921b1f17ccc569deffe74ffbec16a237",
                "sha256": "bbdb5a919b5a528c8c988ffed3968ca212e773f9b26b1a40cf48c333d26c0002"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "921b1f17ccc569deffe74ffbec16a237",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1064766,
            "upload_time": "2024-03-14T22:57:08",
            "upload_time_iso_8601": "2024-03-14T22:57:08.252795Z",
            "url": "https://files.pythonhosted.org/packages/8f/02/a7f032646b6738778a0d47060f24cf6b0c362939bf4ffa61ce45107b53fd/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43f20626c84f7a9f771c6d0b55f733fd56a9bdcb9a8596a8f903ee76b428a812",
                "md5": "d77b08232c183e6321e0075618870b73",
                "sha256": "0560a6a1ea25ef7d2eedd84678e2db7c852db0122c81edb1e2e26660da8f0607"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d77b08232c183e6321e0075618870b73",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1154454,
            "upload_time": "2024-03-14T22:57:09",
            "upload_time_iso_8601": "2024-03-14T22:57:09.815685Z",
            "url": "https://files.pythonhosted.org/packages/43/f2/0626c84f7a9f771c6d0b55f733fd56a9bdcb9a8596a8f903ee76b428a812/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ac5b273566cef177c2cf4ddc1f10b285c7d147c0f4bde2d40dddd924a1baba1e",
                "md5": "61df68dbf678a44acb377dc892a9feba",
                "sha256": "ca19a026a031a91162220fadec9d9a465de5dece0283a5accd2738b6e1c8ea3c"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "61df68dbf678a44acb377dc892a9feba",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1200078,
            "upload_time": "2024-03-14T22:57:11",
            "upload_time_iso_8601": "2024-03-14T22:57:11.439381Z",
            "url": "https://files.pythonhosted.org/packages/ac/5b/273566cef177c2cf4ddc1f10b285c7d147c0f4bde2d40dddd924a1baba1e/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "617112389bb87ad5bdcaa81bc9a9b0e03fa2e8f7144d4a19ba119fd90933c737",
                "md5": "3e3a89c80f7c4dd38e49bd4acbdfd89f",
                "sha256": "a4db4c3693d79dcf5ad0911dedac75e41309460cce0758673ab9e2ba663a7d99"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e3a89c80f7c4dd38e49bd4acbdfd89f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1054864,
            "upload_time": "2024-03-14T22:57:13",
            "upload_time_iso_8601": "2024-03-14T22:57:13.052644Z",
            "url": "https://files.pythonhosted.org/packages/61/71/12389bb87ad5bdcaa81bc9a9b0e03fa2e8f7144d4a19ba119fd90933c737/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "442e8b1182da85dcfaad8f522f7ff14405c1a08ac36bc2d61ab1c5f79236d6f1",
                "md5": "3e90da2eca87b3ab4b96cb94fa1c5923",
                "sha256": "57b79f153ed39f38e08d49c6289f2d6d771aeef663884496398a96829b9b91b0"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3e90da2eca87b3ab4b96cb94fa1c5923",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1079298,
            "upload_time": "2024-03-14T22:57:14",
            "upload_time_iso_8601": "2024-03-14T22:57:14.678146Z",
            "url": "https://files.pythonhosted.org/packages/44/2e/8b1182da85dcfaad8f522f7ff14405c1a08ac36bc2d61ab1c5f79236d6f1/sbsgenerator-1.0.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2e290d1bfcd202eebd7fcf82d758ca2c76aca5942f429eb554220af8198da57a",
                "md5": "117e1df6f867293636faa38a879ef784",
                "sha256": "9d7270e9d1acc3ee6d9cfdbad036400c5773f1083d444b98f03e25d5e089edf1"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "117e1df6f867293636faa38a879ef784",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1044648,
            "upload_time": "2024-03-14T22:57:16",
            "upload_time_iso_8601": "2024-03-14T22:57:16.203327Z",
            "url": "https://files.pythonhosted.org/packages/2e/29/0d1bfcd202eebd7fcf82d758ca2c76aca5942f429eb554220af8198da57a/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45f64a469ead5851356da092ba8a525891f76ce469d18d9933e4f4819c3543d9",
                "md5": "c448cf5ab286d95cd2a33916ffe50311",
                "sha256": "bc156a0f36da8574b5ee53b2be704750eb6a20be4eb96ee690889bf8df6ebc58"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c448cf5ab286d95cd2a33916ffe50311",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1064769,
            "upload_time": "2024-03-14T22:57:18",
            "upload_time_iso_8601": "2024-03-14T22:57:18.680064Z",
            "url": "https://files.pythonhosted.org/packages/45/f6/4a469ead5851356da092ba8a525891f76ce469d18d9933e4f4819c3543d9/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "49a0afa3f1ecc192750e4b5c451af1ed1dd4b2cbb8db1afb6e39babccf40c8dc",
                "md5": "15e760ef539872a6a642d42cf5bb6a63",
                "sha256": "9c6a53e3af1f3cfa69284a10257c4af591497f7a794682845434a3da073987c3"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "15e760ef539872a6a642d42cf5bb6a63",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1153892,
            "upload_time": "2024-03-14T22:57:20",
            "upload_time_iso_8601": "2024-03-14T22:57:20.288584Z",
            "url": "https://files.pythonhosted.org/packages/49/a0/afa3f1ecc192750e4b5c451af1ed1dd4b2cbb8db1afb6e39babccf40c8dc/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "307b981e0e1cf69627011b54a433b3e775c8648cde7a6593848a882e09e8c1bb",
                "md5": "9660511610abcdec1185d9d69cca9dda",
                "sha256": "f123350e479f6b7599513baa4a19da8e201d8f5a1810ae7a62289eb6941873a6"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9660511610abcdec1185d9d69cca9dda",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1197678,
            "upload_time": "2024-03-14T22:57:21",
            "upload_time_iso_8601": "2024-03-14T22:57:21.915350Z",
            "url": "https://files.pythonhosted.org/packages/30/7b/981e0e1cf69627011b54a433b3e775c8648cde7a6593848a882e09e8c1bb/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "569745b5dd2e306b2578e79c6e5dd9c0cb09ad5d3374a20569fa9a93d1911774",
                "md5": "7a26b7310858ae644ee093294109792c",
                "sha256": "5990a354238637ddb7f60a2659d1a216123925eeed245f70f7d17f0d3a38f9d9"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a26b7310858ae644ee093294109792c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1054342,
            "upload_time": "2024-03-14T22:57:23",
            "upload_time_iso_8601": "2024-03-14T22:57:23.990758Z",
            "url": "https://files.pythonhosted.org/packages/56/97/45b5dd2e306b2578e79c6e5dd9c0cb09ad5d3374a20569fa9a93d1911774/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bafb6e8c4398bbce901e32ba13ed848e8278e6f54a1a6e6eb6c8135cb67abf48",
                "md5": "d3979527f359d3b852ed77ab9728b27c",
                "sha256": "ebdc4b5ff3de78baf9b89a8e9bb69225ca1b1066123338296bd354de8b4e0fbf"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "d3979527f359d3b852ed77ab9728b27c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 1079767,
            "upload_time": "2024-03-14T22:57:25",
            "upload_time_iso_8601": "2024-03-14T22:57:25.630466Z",
            "url": "https://files.pythonhosted.org/packages/ba/fb/6e8c4398bbce901e32ba13ed848e8278e6f54a1a6e6eb6c8135cb67abf48/sbsgenerator-1.0.5-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0a33182a2c0d846636c0a589ba241ae6c5585879addaaeb70e31466e0546fdd",
                "md5": "f6d86e35ae30befba03ce3a8551aae4c",
                "sha256": "1e4219e723498e638880601b87f1372e1036accd8124a82bfa6bd597dca59c5f"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f6d86e35ae30befba03ce3a8551aae4c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1043941,
            "upload_time": "2024-03-14T22:57:27",
            "upload_time_iso_8601": "2024-03-14T22:57:27.157786Z",
            "url": "https://files.pythonhosted.org/packages/b0/a3/3182a2c0d846636c0a589ba241ae6c5585879addaaeb70e31466e0546fdd/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ed401560e7a75253135ac309b422e4884a4640f864a1e6e9ebbd80b3ad640b3",
                "md5": "c80d40660f2fde0336cd928ff15a9f2c",
                "sha256": "ade9ffc945cab29d2f6906fffa3a81717351808abf20a23dcf78c3eaaa5e4888"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c80d40660f2fde0336cd928ff15a9f2c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1064670,
            "upload_time": "2024-03-14T22:57:28",
            "upload_time_iso_8601": "2024-03-14T22:57:28.795659Z",
            "url": "https://files.pythonhosted.org/packages/8e/d4/01560e7a75253135ac309b422e4884a4640f864a1e6e9ebbd80b3ad640b3/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf44c01f9a1207dc0b0091c03192554347ba7f67e135e05e470d266f4c0589b8",
                "md5": "5a50bcfc33c294aedede7e1481c4d58d",
                "sha256": "5b324e21d6e77fab3f71ea8319c13c75baedd8b3f62ec3091a8fa9d5fcba35f4"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5a50bcfc33c294aedede7e1481c4d58d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1154131,
            "upload_time": "2024-03-14T22:57:30",
            "upload_time_iso_8601": "2024-03-14T22:57:30.364521Z",
            "url": "https://files.pythonhosted.org/packages/cf/44/c01f9a1207dc0b0091c03192554347ba7f67e135e05e470d266f4c0589b8/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "43ff23ee51d067e92ed7314818fbc33e48b6beb037d036a7742459504192bd7e",
                "md5": "2917292f98584f77cf04127d32374209",
                "sha256": "b9ca9ac2b0d5fd5831e1c6c825cdf2894cf1231b289d85e1f86199a3abb8b5bc"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2917292f98584f77cf04127d32374209",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1200090,
            "upload_time": "2024-03-14T22:57:32",
            "upload_time_iso_8601": "2024-03-14T22:57:32.166218Z",
            "url": "https://files.pythonhosted.org/packages/43/ff/23ee51d067e92ed7314818fbc33e48b6beb037d036a7742459504192bd7e/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f20bc47618e75c1455b518a8c158c2a7c4f88b98ce043dae345027ef649a8ab",
                "md5": "05ca528483763e296304d32d0221b34a",
                "sha256": "456f53c3e31c19d90070c6796f6a0875e00afe378725736d8231ffec51b8c9c6"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05ca528483763e296304d32d0221b34a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1054644,
            "upload_time": "2024-03-14T22:57:33",
            "upload_time_iso_8601": "2024-03-14T22:57:33.777090Z",
            "url": "https://files.pythonhosted.org/packages/3f/20/bc47618e75c1455b518a8c158c2a7c4f88b98ce043dae345027ef649a8ab/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f4cf5dfdcba5974970b326fe37c90ba6a745d5337b60596a826ab8db9604bcd",
                "md5": "3cc362585b7594ec6cfe6d9c575651ae",
                "sha256": "17c23170776e04cd80b406521dad2229f9364b36ce37426ef22804eedb04fe63"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "has_sig": false,
            "md5_digest": "3cc362585b7594ec6cfe6d9c575651ae",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 1079269,
            "upload_time": "2024-03-14T22:57:35",
            "upload_time_iso_8601": "2024-03-14T22:57:35.427521Z",
            "url": "https://files.pythonhosted.org/packages/4f/4c/f5dfdcba5974970b326fe37c90ba6a745d5337b60596a826ab8db9604bcd/sbsgenerator-1.0.5-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63b86b55c4a551de9b4179f9b2aea2838620fd806f953421a6341917a82b78a6",
                "md5": "00949e85a1691d07289b388396486bc1",
                "sha256": "c0a230d3abde54385a55f0665fc69a0e7b659b6fb56713ad4bb404f2bdc7329b"
            },
            "downloads": -1,
            "filename": "sbsgenerator-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "00949e85a1691d07289b388396486bc1",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 94928,
            "upload_time": "2024-03-14T22:57:36",
            "upload_time_iso_8601": "2024-03-14T22:57:36.986689Z",
            "url": "https://files.pythonhosted.org/packages/63/b8/6b55c4a551de9b4179f9b2aea2838620fd806f953421a6341917a82b78a6/sbsgenerator-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-14 22:57:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "AlfonsoJan",
    "github_project": "sbsgenerator",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sbsgenerator"
}
        
Elapsed time: 0.21766s